diff --git a/.gitignore b/.gitignore index 779858b..6ed802d 100644 --- a/.gitignore +++ b/.gitignore @@ -216,3 +216,6 @@ cython_debug/ # generated artifacts graphify-out/ .claude/ + +# ADR-011 precomputed GAUL lookup (small, must be tracked despite *.parquet rule) +!views_postprocessing/data/gaul_lookup.parquet diff --git a/docs/ADR-011_implementation_assessment.md b/docs/ADR-011_implementation_assessment.md index ddcb0ff..83e3714 100644 --- a/docs/ADR-011_implementation_assessment.md +++ b/docs/ADR-011_implementation_assessment.md @@ -1,7 +1,7 @@ # ADR-011 Implementation Assessment -**Last updated:** 2026-06-03 -**Status:** Paused — implementation deferred pending infrastructure and verification +**Last updated:** 2026-06-12 +**Status:** Data prerequisites MET — see §10. Implementation unblocked on the data side; verification infrastructure (Appwrite, pipeline-core E2E) still required before switching the pipeline. --- @@ -496,3 +496,49 @@ The alternative is **Option 4 (do nothing)** — which is also legitimate. The c 1. The column naming question is settled — keep current names 2. The architecture decision (precomputed table) is confirmed — area-majority, sequential allocation, Parquet lookup 3. What blocks progress is infrastructure: LFS for precomputation, views-pipeline-core for E2E testing, Appwrite for verification + +--- + +## 10. June 2026 Status Update — Datafactory Prerequisites MET + +**Added:** 2026-06-12. Full detail in `docs/cross_repo_integration_report.md`. + +### 10.1 What changed upstream + +The views-datafactory completed the area-majority work (issue #115 → PR #127, ADR-039 accepted, shipped v1.2.28/29): + +| Artifact | State (verified 2026-06-12) | +|---|---| +| `gaul0/1/2_code.parquet` | 259,200 rows each, int32, **area-majority** (regenerated Jun 11) | +| `gaul0/1/2_name.parquet` | 259,200 rows each, string, **area-majority** (regenerated Jun 11 — the earlier 86,091-row centroid gap is closed) | +| `iso3_code.parquet` | 259,200 rows, string, **area-majority** (Jun 11) | +| Assembled grid/zarr | gaul codes at channels 72-74, area-majority, fill = -1 (assembled Jun 8) | + +Consistency for africa_me_legacy (13,110 cells): 13,105 fully consistent (code + name + iso3); 5 pure-ocean cells unassigned (gids 62356, 94776, 99027, 107733, 107742). + +### 10.2 What this resolves + +- **The "regeneration requires LFS + 774 MB shapefiles" blocker is gone.** The lookup table no longer needs this repo's mapper or shapefiles to be built — it is a join of the 7 factory parquets plus a coordinate formula (`xcoord = -180 + ((gid-1) % 720) * 0.5 + 0.25`, `ycoord = -90 + ((gid-1) // 720) * 0.5 + 0.25`). +- **The area-majority requirement is satisfied at the source.** The factory's single L2-based join yields all three admin levels from the same winning polygon; empirically 0 cells diverge from a direct L0 computation (sequential-allocation invariant preserved). +- **D-05 (platform mapping divergence) is resolved upstream** — the datafactory now ships area-majority, the same algorithm family FAO's contract requires. + +### 10.3 Revised implementation path (supersedes §6 options) + +Build the lookup FROM the datafactory parquets (Option 1 in the integration report): + +1. Offline script joins the 7 parquets by gid, computes pg_xcoord/pg_ycoord, renames to the 9 contract columns (`gaul0_code → admin1_gaul0_code`, `iso3_code → country_iso_a3`, …). +2. Commit the resulting parquet (~1-2 MB africa_me / ~15 MB global) to this repo. +3. New enricher = merge-by-gid; replaces `mapper.enrich_dataframe_with_pg_info()` in `_append_metadata()`. +4. Serves BOTH historical and forecast paths (decisive — forecast data bypasses the factory entirely). +5. **Fail-loud preservation:** unassigned gids (factory code = -1) must surface as nulls so `_validate()` still crashes the pipeline rather than shipping wrong attributions. Do not pass -1/"" through as values. +6. **Acceptance criterion:** output schema (column names, dtypes, index) identical to current mapper output. faoapi then requires zero changes. + +### 10.4 What still blocks the switch (unchanged) + +- Verification infrastructure: Appwrite access + views-pipeline-core for an E2E run and an old-vs-new diff on real data. +- FAO communication: attribution values change for ~711 border cells (5.4%) and 149 recovered coastal cells — contractually correct (area-majority per Release Note 02) but a visible data-version change. +- Open: deployed-zarr sync status at the remote server; whether the 5 ocean cells ever appear in prediction inputs. + +### 10.5 Semantic change to flag + +`country_iso_a3` switches source from Natural Earth to GAUL. Current pipeline mixes boundary datasets (NE country + GAUL admin); the lookup makes each row internally consistent from a single GAUL polygon. This is an improvement but technically a change in what the ISO column means at disputed borders. diff --git a/docs/CICs/GaulLookupEnricher.md b/docs/CICs/GaulLookupEnricher.md new file mode 100644 index 0000000..a864612 --- /dev/null +++ b/docs/CICs/GaulLookupEnricher.md @@ -0,0 +1,145 @@ +# Class Intent Contract: GaulLookupEnricher + +**Status:** Draft +**Owner:** PRIO MD&D Team +**Last reviewed:** 2026-06-18 +**Related ADRs:** ADR-011 (replace runtime mapper with precomputed lookup) + +--- + +## 1. Purpose + +> Attach the 9 geographic metadata columns to a prediction frame by merging a +> precomputed GAUL lookup table on the PRIO-GRID cell id. + +It is the lookup-based replacement for `PriogridCountryMapper`'s runtime spatial +enrichment: the spatial computation has already happened upstream (the +views-datafactory area-majority join), so this class does only a table join. + +--- + +## 2. Non-Goals (Explicit Exclusions) + +- This class does **not** perform spatial computation — no geometry, no + shapefiles, no geopandas, no area-majority calculation. +- This class does **not** build the lookup table (that is + `scripts/build_gaul_lookup.py`, run offline). +- This class does **not** fill, impute, or invent metadata for unmatched cells. +- This class does **not** validate the result — null/coverage validation is the + manager's `_validate()` responsibility. +- This class does **not** read from the datafactory, viewser, or Appwrite. + +--- + +## 3. Responsibilities and Guarantees + +- Loads exactly one lookup Parquet at construction and verifies it carries the 9 + contract columns; missing columns raise at construction. +- Returns the input frame augmented with exactly the 9 columns of + `gaul_schema.METADATA_COLS`, with their dtypes preserved from the lookup + (codes numeric, coordinates float, names/iso categorical). +- A cell id present in the lookup is enriched with that cell's metadata. +- A cell id **absent** from the lookup yields **null** metadata for that row — + never a sentinel, never a fabricated value (fail-loud downstream). +- Row count and row order of the input are preserved (left merge). + +--- + +## 4. Inputs and Assumptions + +- A lookup Parquet exists at the configured path (default: the committed + `views_postprocessing/data/gaul_lookup.parquet`), indexed by `priogrid_gid`, + containing only fully-complete cells (no nulls, no `-1`, no empty strings). +- The input DataFrame has a column named by `pg_id_col` holding PRIO-GRID cell + ids; a missing `pg_id_col` raises `ValueError`. +- The lookup is the single source of geographic truth — the caller does not + expect this class to reconcile it against any other source. + +--- + +## 5. Outputs and Side Effects + +- Output: the input frame (or, with `only_metadata=True`, just `pg_id_col` + + `time_id_col`) left-merged with the 9 metadata columns. +- Side effects: logs the lookup size at construction (INFO); logs a WARNING with + the count and sample of unmatched cell ids when any occur; logs ignored + mapper-only kwargs at DEBUG. No file writes, no network. + +--- + +## 6. Failure Modes and Loudness + +- **Raises** at construction if the lookup file is missing or lacks a contract + column. +- **Raises** `ValueError` if `pg_id_col` is not in the input. +- **Does not raise** on unmatched cells — it surfaces them as nulls and logs a + WARNING. This is deliberate: the manager's `_validate()` null gate is the + single enforcement point, so a coverage hole fails loudly there (one place), + not in two. Passing a sentinel for unmatched cells would be a **bug** (it would + bypass that gate). Aligns with ADR-003 (fail loud on semantic ambiguity). + +--- + +## 7. Boundaries and Interactions + +- Allowed to depend on: pandas, `gaul_schema`, and a local Parquet file. +- Must **not** depend on: geopandas/shapely, the runtime mapper, the + datafactory, viewser, Appwrite, or any network resource. +- Treats the lookup table as an opaque, trusted artifact produced by the build + script; it does not re-validate the table's spatial correctness. + +--- + +## 8. Examples of Correct Usage + +```python +enricher = GaulLookupEnricher() +out = enricher.enrich_dataframe_with_pg_info( + df.reset_index(), pg_id_col="priogrid_gid", time_id_col="month_id", + only_metadata=True, +) +# out has the 9 metadata columns; unmatched cells are null. +``` + +Drop-in for the manager's existing call (same method name and key kwargs). + +--- + +## 9. Examples of Incorrect Usage + +- Filling unmatched cells with `-1`/`""`/`"unknown"` to "avoid validation + errors" — defeats the fail-loud contract and ships wrong data to FAO. +- Using it to enrich against a lookup built for a different region without + expecting nulls for out-of-region cells. +- Calling it expecting spatial recomputation when the lookup is stale — regenerate + the lookup with the build script instead. + +--- + +## 10. Test Alignment + +`tests/test_enrichment.py`: +- **Green:** the 9 columns present; values match the lookup; row count preserved; + codes numeric / coords float. +- **Beige:** lookup integrity (cell count, no nulls, no `-1`, dtypes); coordinate + formula (independent oracle). +- **Red:** unknown cell id and excluded ocean cells yield null; missing + `pg_id_col` raises. + +--- + +## 11. Evolution Notes + +- Stable: the 9-column contract and the fail-loud-on-unmatched behavior (changing + either is a coordinated change across this repo and views-faoapi). +- Expected to change: the lookup's cell-set/region and its source GAUL version, + via re-running the build script. Such regenerations must not change the schema. + +--- + +## End of Contract + +This document defines the **intended meaning** of `GaulLookupEnricher`. + +Changes to behavior that violate this intent are bugs. +Changes to intent must update this contract. diff --git a/docs/CICs/UNFAOPostProcessorManager.md b/docs/CICs/UNFAOPostProcessorManager.md index e55ed0c..a269e9c 100644 --- a/docs/CICs/UNFAOPostProcessorManager.md +++ b/docs/CICs/UNFAOPostProcessorManager.md @@ -12,7 +12,7 @@ > **What is this class for?** -`UNFAOPostProcessorManager` orchestrates the end-to-end postprocessing pipeline that reads VIEWS conflict predictions, enriches them with geographic metadata via the Spatial Mapping Engine, validates the output schema, and delivers the enriched data to the UN FAO via Appwrite cloud storage. +`UNFAOPostProcessorManager` orchestrates the end-to-end postprocessing pipeline that reads VIEWS conflict predictions, enriches them with geographic metadata via the precomputed GAUL lookup (`GaulLookupEnricher`, ADR-011), validates the output schema, and delivers the enriched data to the UN FAO via Appwrite cloud storage. It is the single entrypoint for producing and delivering UN FAO-formatted prediction data. @@ -20,7 +20,7 @@ It is the single entrypoint for producing and delivering UN FAO-formatted predic ## 2. Non-Goals (Explicit Exclusions) -- This class does **not** perform spatial mapping logic — it delegates to `PriogridCountryMapper` +- This class does **not** perform spatial mapping logic — it delegates enrichment to `GaulLookupEnricher` (a merge against the precomputed GAUL lookup) - This class does **not** train, evaluate, or modify prediction models - This class does **not** define the spatial assignment algorithm - This class does **not** manage shapefile data or geographic reference assets @@ -33,7 +33,7 @@ It is the single entrypoint for producing and delivering UN FAO-formatted predic - Guarantees a 4-stage pipeline: read → transform → validate → save - Guarantees that historical data is sourced from ViewsER via `ViewsDataLoader` - Guarantees that forecast data is sourced from the Appwrite production forecasts bucket -- Guarantees that geographic metadata is added via `PriogridCountryMapper.enrich_dataframe_with_pg_info()` +- Guarantees that geographic metadata is added via `GaulLookupEnricher.enrich_dataframe_with_pg_info()` (a cell-id merge against the precomputed lookup) - Guarantees that required metadata columns are validated before upload - Guarantees that both historical and forecast datasets are uploaded to the UN FAO Appwrite bucket with correct metadata (name, loa, type, category) - Guarantees that all structural failures are logged and raised (ADR-008) @@ -47,7 +47,7 @@ It is the single entrypoint for producing and delivering UN FAO-formatted predic - Requires environment variables for Appwrite connectivity (endpoint, project ID, API key, bucket/collection IDs) - Requires the ensemble's `.env` file to be loadable via `dotenv` - Requires the Appwrite production forecasts bucket to contain at least one file with `category="forecast"` -- Requires the `PriogridCountryMapper` to be initialized (via module-level `set_default_mapper()`) +- Requires the precomputed GAUL lookup parquet to be present so `GaulLookupEnricher` can load it at construction Assumptions that are not met **must cause failure**, not fallback behavior. @@ -88,7 +88,7 @@ The following **must never** fail silently: ## 7. Boundaries and Interactions **Allowed interactions:** -- Delegates spatial mapping to `PriogridCountryMapper` (Spatial Mapping Engine layer) +- Delegates geographic enrichment to `GaulLookupEnricher` (a merge against the precomputed GAUL lookup) - Uses `views-pipeline-core` managers for path resolution, data loading, and Appwrite integration - Reads environment variables for external service configuration - Writes to local filesystem and Appwrite cloud storage @@ -96,9 +96,9 @@ The following **must never** fail silently: **Must not depend on:** - Shapefile loading or spatial intersection logic directly - PRIO-GRID geometry details -- Cache management internals of the mapper +- The internals of how the lookup table was built -This anchors the class within ADR-002 (topology): it sits at the Pipeline Manager layer, above the Spatial Mapping Engine, consuming its outputs without knowledge of its internals. +This anchors the class within ADR-002 (topology): it sits at the Pipeline Manager layer, above the enrichment layer, consuming its outputs without knowledge of its internals. --- @@ -127,7 +127,7 @@ manager._save() - **Calling `_transform()` before `_read()`** — datasets will be None, causing AttributeError - **Calling `_save()` without `_validate()`** — may upload incomplete data to partners -- **Accessing `_mapper` directly to bypass the enrichment pipeline** — violates the orchestration boundary +- **Accessing `_enricher` directly to bypass the enrichment pipeline** — violates the orchestration boundary - **Hardcoding Appwrite configuration instead of reading from environment** — violates ADR-009 --- @@ -138,7 +138,7 @@ manager._save() - **Beige tests:** Missing ensemble name in config; None environment variables; empty forecast bucket; DataFrames with unexpected index structure - **Red tests:** Corrupted parquet downloads; network timeouts during upload; DataFrames where all cells map to None (all-ocean input) -Currently: **no tests exist** (C-03 in risk register). This contract defines what tests must verify when written. +Currently: the manager cannot be instantiated without `views-pipeline-core`, so its stage logic is covered by **replica tests** that mirror the real methods — `tests/test_validation.py` (`_validate`) and `tests/test_append_metadata.py` (`_append_metadata`). A full end-to-end test against the live manager (C-03) still requires a production-like environment. --- @@ -148,7 +148,7 @@ Currently: **no tests exist** (C-03 in risk register). This contract defines wha - Partner-specific output formats are **evolving** — the UN FAO schema may change (see C-24, D-06 for schema divergence investigation) - The source of forecast data (Appwrite bucket/collection) is **evolving** — operational configuration - Null validation is **active** (C-01 resolved 2026-06-02) -- The enrichment source is **transitioning** from runtime mapper to precomputed lookup table (ADR-011) +- The enrichment source is the **precomputed GAUL lookup table** (`GaulLookupEnricher`, ADR-011), as of the Stage 3 swap; the runtime mapper (`mapping.py`) remains in the repo but is no longer used by this manager and is slated for removal after one verified production cycle --- diff --git a/docs/cross_repo_integration_report.md b/docs/cross_repo_integration_report.md new file mode 100644 index 0000000..9db9539 --- /dev/null +++ b/docs/cross_repo_integration_report.md @@ -0,0 +1,251 @@ +# Cross-Repo Integration Report: datafactory ↔ postprocessing ↔ Appwrite ↔ faoapi + +**Date:** 2026-06-12 +**Status:** Investigation complete +**Scope:** Four systems — views-datafactory, views-postprocessing, the Appwrite prediction store, views-faoapi — plus the connective tissue in views-pipeline-core and views-models. +**Method:** Three parallel code sweeps (one per system pair) plus direct verification of data artifacts (parquet schemas, row counts, provenance digests, ledger timestamps). Every factual claim carries a `file:line` citation or a re-runnable command output. + +--- + +## 1. Executive summary + +1. **The chain today**: predictions flow through two parallel paths (historical via the datafactory zarr, forecast via the Appwrite `prod_forecasts` bucket) that converge in the postprocessor, where a 3,171-line runtime spatial mapper attaches 9 geographic metadata columns. The enriched output goes to the Appwrite `unfao_bucket`, from which views-faoapi serves it over HTTP to FAO — **without renaming a single column**. The postprocessor's column names ARE the FAO-facing schema. +2. **The datafactory's area-majority work (issue #115) removes the last data prerequisite for ADR-011.** As of June 11, all 7 GAUL parquets (3 codes + 3 names + iso3) are area-majority, 259,200 rows each, mutually consistent. A precomputed lookup table can now be built from them. +3. **views-faoapi requires ZERO changes** if the lookup table reproduces the 9 columns exactly. The schema contract is enforced at three independent points (triple-locked); reproducing it byte-for-byte makes the entire mapper replacement invisible downstream. +4. **The forecast path is the decisive architectural constraint**: forecast data never touches the datafactory, so no "request GAUL columns from the factory" design can work. Only a GID-keyed lookup table serves both paths. +5. **Open questions**: whether the deployed zarr at the remote server has been re-exported since June 8 (deployment fact, not verifiable locally); whether the 5 unassignable ocean cells ever appear in prediction inputs; when/how to notify FAO of the ~5.4% border-cell attribution changes. + +--- + +## 2. How the four systems work together NOW + +### 2.1 The full chain + +``` +PATH 1 — HISTORICAL +═══════════════════ +views-datafactory assembled grid (grid.zarr served at http://204.168.219.108/grid.zarr) + │ 75 features incl. gaul0_code/gaul1_code/gaul2_code (channels 72-74) + │ + ├─ views-models postprocessors/un_fao/configs/config_queryset.py:31-40 + │ descriptor: {source: "views-datafactory", region: "africa_me_legacy", + │ loa: "priogrid_month", features: {ged_*_best → lr_ged_*}} + │ + ├─ views-pipeline-core dataloaders.py:1117-1224 _fetch_data_from_datafactory() + │ → datafactory_query.load_dataset(region, start, end, features, "dataframe", zarr_url) + │ → rename per FEATURE_RENAME (1197-99), add row/col (1201-06), + │ fillna(0.0) (1208), ensure_float64 (1210) + │ + └─ postprocessor unfao.py:44-59 _read_historical_data() + DataFrame: MultiIndex (month_id, priogrid_gid), cols lr_ged_sb/ns/os + +PATH 2 — FORECAST +═════════════════ +views-models ensemble run (--prediction_store) + │ pipeline-core model.py:196-203 initializes DatastoreModule + │ prediction/io.py:111-144 / savers.py:120-154 upload + │ + ├─ DatastoreModule.upload_data (datastore.py:275-372) + │ metadata: {loa: "pgm", category: "forecast", targets: [...], file_hash, ...} + │ → Appwrite prod_forecasts bucket + metadata doc in file_metadata DB + │ + └─ postprocessor unfao.py:61-134 _read_forecast_data() + download_latest_file(filters={category: "forecast"}) (unfao.py:126) + "latest" = newest $createdAt (datastore.py:475-511, sort at 420-424) + ⚠ no loa / name / run-id filter — risk C-25 + +CONVERGENCE — ENRICHMENT +════════════════════════ +unfao.py:140-163 _append_metadata(dataset) + → mapper.enrich_dataframe_with_pg_info(...) (mapping.py:2489-2705) + runtime spatial join: PRIO-GRID cell → Natural Earth country (area-majority) + → GAUL L1 within country → GAUL L2 within country + loads 774 MB LFS shapefiles at import (mapping.py:3171 set_default_mapper) + → selects the 9 metadata columns (filter_cols, unfao.py:141-153) + +unfao.py:188-221 _validate() + → hard gate: all 9 columns present AND zero nulls, both dataframes, + else ValueError (pipeline crashes — fail-loud) + +unfao.py:223-273 _save() + → parquet → DatastoreModule.upload_data → Appwrite unfao_bucket + historical: category="historical" (unfao.py:258-263) + forecast: category="forecast", targets=[pred_ln_*_best, pred_ln_*_prob] (268-273) + +DELIVERY — views-faoapi +═══════════════════════ +FAOApiManager._get_latest_dataframe (api.py:422-612) + 3-tier cache (memory 4h TTL → disk pickle → remote) + → download_latest_file(filters={category}) (api.py:488) + → FAO_PGMDataset(df) (handlers.py:1143-1227) + validates EXACT 9 metadata column names (1146-1163) + validates MultiIndex (month_id, priogrid_id) (1180-1195) + detects predictions by pred_* prefix (357-366, 1173-78) + → HTTP endpoints: /data/{cat}/latest, /{pg|country|gaul0|gaul1|gaul2}/data/{cat}/subset, + /{level}/analysis/{cat}/hdi-map (api.py:637-923) + → NO column renaming anywhere; flatten single-element arrays only (api.py:120-180) + → FAO receives the postprocessor's column names verbatim +``` + +### 2.2 The schema contract (triple-locked) + +The same 9 column names are independently hard-coded at three enforcement points: + +| Enforcement point | Location | Failure mode if violated | +|---|---|---| +| Postprocessor selection | `unfao.py:141-153` (filter_cols) | KeyError at `_append_metadata` | +| Postprocessor validation | `unfao.py:189-197` (_necessary_metadata_cols) | ValueError, pipeline crash | +| faoapi dataset validation | `views-faoapi handlers.py:1146-1163` (_METADATA_COLS) | HTTP 500 on first request | + +The 9 columns: + +``` +pg_xcoord, pg_ycoord, +country_iso_a3, +admin1_gaul1_code, admin1_gaul1_name, +admin1_gaul0_code, admin1_gaul0_name, +admin2_gaul2_code, admin2_gaul2_name +``` + +Additionally locked in faoapi: + +- **Aggregation level map** (`handlers.py:1206-09`): `country→country_iso_a3`, `gaul0→admin1_gaul0_code`, `gaul1→admin1_gaul1_code`, `gaul2→admin2_gaul2_code`. Renaming any of these breaks the `/country/...`, `/gaul0/...` etc. endpoints. +- **Prediction prefix** (`handlers.py:357-366`): columns must start with `pred_` to be recognized as targets. +- **Index contract** (`handlers.py:1180-1195`): 2-level MultiIndex named `(month_id, priogrid_id)`; `priogrid_gid` is auto-renamed to `priogrid_id` (handlers.py:92-98) — the only rename in the whole chain. + +**Consequence:** any schema change (e.g., the D-06 question of adopting FAO contract names like `ADM1_CODE`/M49) requires a coordinated change in views-postprocessing AND views-faoapi, plus FAO notification. The lookup-table migration must NOT bundle renames. + +### 2.3 What the datafactory holds today (verified 2026-06-12) + +| Artifact | State | Verified | +|---|---|---| +| `data/raw/gaul_admin/gaul0_code.parquet` | 259,200 rows, int32, area-majority | regenerated Jun 11 00:20 | +| `gaul1_code.parquet`, `gaul2_code.parquet` | same | Jun 11 00:20 | +| `gaul0_name.parquet`, `gaul1_name.parquet`, `gaul2_name.parquet` | 259,200 rows, string, area-majority | Jun 11 00:20 | +| `iso3_code.parquet` | 259,200 rows, string, area-majority | Jun 11 00:20 | +| Assembled `grid.npy` / `grid.zarr` | 75 features; gaul codes at channels 72-74, area-majority (assembled Jun 8 from Jun 5 code files), fill = -1 | provenance.json, assemble_grid.py:548-583 | +| `africa_me_legacy_pgids.json` | 13,110 cells | bundled with datafactory_query (regions.py:141-152) | + +**Consistency check (africa_me_legacy, 13,110 cells):** +- 13,105 cells fully consistent: valid code + non-empty name + non-empty iso3. +- 5 cells unassigned (pure ocean): gids 62356 (-46.75, 37.75), 94776 (-24.25, 47.75), 99027 (-21.25, 13.25), 107733 (-15.25, 46.25), 107742 (-15.25, 50.75). These carry `code = -1`, `name = ""`. +- Zero cells with a code but missing name (the 598-cell gap that existed before June 11 is closed). + +**What CANNOT ride the zarr:** names and iso3_code are strings; the grid is float32. Assembly explicitly skips non-numeric admin fields (`assemble_grid.py:558`). The string parquets exist only as raw files outside the assembly pipeline. + +### 2.4 The Appwrite prediction store + +Two buckets, one shared metadata database (`file_metadata`): + +| Bucket | Writers | Readers | Categories | +|---|---|---|---| +| `prod_forecasts` | views-models ensembles (via pipeline-core `upload_data`, datastore.py:275-372) | postprocessor `_read_forecast_data` (unfao.py:126) | `forecast` | +| `unfao_bucket` | postprocessor `_save` (unfao.py:258-273) | views-faoapi (api.py:488) | `historical`, `forecast` | + +Mechanics that matter: + +- **"Latest" = newest `$createdAt`** (datastore.py:475-511). The postprocessor's only filter is `category: "forecast"` — no loa, model name, or run-id filter. If any other pgm-level product were ever uploaded with `category: "forecast"`, the postprocessor would silently consume it (registered as C-25 during this investigation). +- **No retention**: files accumulate indefinitely. Upload dedup is SHA-256 hash-based (file.py:2098-2110) but never removes old versions. +- **24 h local cache** with TTL + remote `$updatedAt` validation (file.py:2451-2569). faoapi adds its own 4 h in-memory + disk pickle cache layers (api.py:451-482); staleness there is advisory — stale data is served with a WARNING log, never blocked (api.py:458-465). + +--- + +## 3. How they COULD work together + +### Option 1 — GID-keyed lookup table built FROM the datafactory parquets (recommended) + +Build once, offline: + +1. Join the 7 area-majority parquets by `gid`. +2. Compute `pg_xcoord = -180 + ((gid-1) % 720) * 0.5 + 0.25` and `pg_ycoord = -90 + ((gid-1) // 720) * 0.5 + 0.25` (same formula pipeline-core already uses for row/col, dataloaders.py:1201-06). +3. Rename to the 9 contract columns (`gaul0_code → admin1_gaul0_code`, `iso3_code → country_iso_a3`, etc.). +4. Commit as a single parquet in views-postprocessing (~1-2 MB for africa_me_legacy; ~15 MB global). + +Runtime enrichment becomes a merge-by-gid. Properties: + +- **Serves BOTH paths.** Forecast data (from Appwrite) and historical data (from the factory) both carry `priogrid_gid`; the lookup doesn't care where the frame came from. This is the property no factory-delivery design can have. +- **Removes**: 774 MB LFS shapefiles, geopandas (~200 MB compiled deps), the import-time `set_default_mapper()` side effect (mapping.py:3171), and the entire mapper splash zone (register clusters A–D, the bulk of 22 open concerns). +- **faoapi-invisible** if the 9 columns are reproduced exactly (acceptance criterion, §4.1). +- **One semantic change to flag**: `country_iso_a3` source switches from Natural Earth to GAUL. Today the postprocessor mixes boundary datasets (NE for country, GAUL for admin1/2 — internally inconsistent at disputed borders); the lookup makes the row internally consistent and FAO-aligned. Needs a sign-off note to FAO (§4.3). + +### Option 2 — Request GAUL columns via config_queryset.py (rejected, three independent blockers) + +1. **Strings can't ride the zarr** — names and iso3 are not in the float32 grid and never can be (assemble_grid.py:558). +2. **fillna(0.0) corruption** — dataloaders.py:1208 unconditionally fills NaN with 0.0; any missing GAUL value would silently become code 0 instead of failing. +3. **Forecast path bypass** — forecast data never touches the factory; this design leaves the mapper in place for half the pipeline. + +### Option 3 — Keep the runtime mapper (status quo, rejected by ADR-011) + +Carries all open register concerns; duplicates a spatial computation the datafactory now owns (ADR-039 there); 774 MB LFS and geopandas remain hard dependencies of a repo whose actual runtime job is a merge and an upload. + +### The 5 ocean cells — design decision needed at implementation time + +Under the current mapper these cells (if ever present in input) get null country → `_validate()` crashes → fail-loud. The lookup must preserve that semantics: **unknown or unassigned gids must produce nulls, not sentinels**, so the existing validation gate still catches them. Concretely: either exclude `code = -1` rows from the lookup (merge produces NaN → validation fails loudly) or keep them with explicit nulls. Do NOT map `-1`/`""` through as values — `-1` is non-null and would sail through validation while being semantically wrong all the way to FAO. + +Whether these 5 cells ever appear in prediction inputs is unverified (requires inspecting an actual forecast parquet from Appwrite). If they never appear, the point is moot but the fail-loud design should stand anyway. + +--- + +## 4. Implications for the Appwrite store and views-faoapi + +### 4.1 faoapi: zero changes, one acceptance criterion + +The migration is downstream-invisible **iff** the postprocessor's output parquet keeps: the 9 metadata columns (exact names), `pred_*` prediction columns, and the `(month_id, priogrid_gid|priogrid_id)` MultiIndex. This should be the acceptance test for ADR-011: diff the output schema (names, dtypes, index) of the old mapper vs the new enricher on the same input — values may differ (that's the point), schema may not. + +### 4.2 Appwrite: no structural changes, two standing observations + +- The `category`-only "latest file" selection (C-25) becomes no more and no less fragile — but it is now a documented load-bearing link in the FAO chain. +- Unbounded retention means old centroid-era enriched files remain downloadable from `unfao_bucket` forever. After the migration, a stale cache or an explicit old-file download serves pre-area-majority attributions. Consider whether `unfao_bucket` needs a cleanup or versioning note. + +### 4.3 FAO-facing data changes (must be communicated) + +Switching enrichment source changes the VALUES FAO receives for border and coastal cells: + +| Change | Magnitude (africa_me_legacy) | Direction | +|---|---|---| +| Country attribution changes | ~711 cells (5.4%) | centroid → area-majority (contractually correct per FAO Release Note 02) | +| Coastal cells recovered | 149 cells (carrying ~409,743 historical fatalities) | previously lost/null, now attributed | +| Internally consistent rows | all | country + admin1 + admin2 from one GAUL polygon instead of NE+GAUL mix | + +This is the contractually *correct* behavior — FAO's own specification requires area-majority — but it is a data-version change FAO will see in the numbers. Recommend a release note accompanying the first post-migration upload. + +### 4.4 Dtype note for implementation + +The factory codes are int32. After a left-merge onto prediction frames, pandas will promote columns with any NaN to float64. The current mapper output passes faoapi's checks today, and faoapi checks only presence, not dtype (handlers.py:1160-63) — but the integration tests in this repo assert numeric dtype (test_integration.py:79-92). Match the current mapper's output dtypes in the enricher to keep both green. + +--- + +## 5. Open questions + +> **Plan of record (2026-06-12):** the delivery is now tracked as a cross-repo issue set — umbrella [views-postprocessing#20](https://github.com/views-platform/views-postprocessing/issues/20) (Plan C: baseline → lookup build → shadow diff → swap → go global), with [views-datafactory#159](https://github.com/views-platform/views-datafactory/issues/159) (`land_gaul` region, resolves the 82-cell question) and [views-models#127](https://github.com/views-platform/views-models/issues/127) (the go-global config flip). + +| # | Question | Owner / resolution path | +|---|---|---| +| Q1 | Has the deployed zarr at 204.168.219.108 been re-exported/synced since the June 8 local assembly? (Local artifacts verified; remote not verifiable from here.) | User — check server or export ledger | +| Q2 | Do the 5 ocean-cell gids ever appear in prediction inputs? | Inspect a real forecast parquet when Appwrite access is available | +| Q3 | When/how to notify FAO of the attribution changes (§4.3)? | User / VIEWS-FAO channel | +| Q4 | Should the lookup be africa_me_legacy-only (~1-2 MB) or global (~15 MB)? Global is region-future-proof and still trivially small. | Decide at ADR-011 implementation | +| Q5 | unfao_bucket retention: do old centroid-era files need cleanup or a version marker? | User / platform decision | + +--- + +## 6. Source map + +| Claim area | File | Lines | +|---|---|---| +| Postprocessor descriptor | views-models `postprocessors/un_fao/configs/config_queryset.py` | 13-40 | +| Datafactory fetch + transforms | views-pipeline-core `modules/dataloaders/dataloaders.py` | 1117-1224 | +| Zarr URL default | views-datafactory `src/datafactory_query/defaults.py` | 24-45 | +| Consumer bridge | views-datafactory `src/datafactory_query/dataset.py` | 298-444 | +| DataFrame conversion | views-datafactory `src/datafactory_adapters/grid_to_dataframe.py` | 84-130 | +| Admin channel assembly | views-datafactory `scripts/assemble_grid.py` | 548-583, 714-717 | +| Area-majority generator | views-datafactory `scripts/generate_area_majority_gaul.py` | 283-294, 297-360 | +| Ensemble upload | views-pipeline-core `managers/model/model.py` 196-203; `managers/prediction/io.py` 111-144; `managers/prediction/savers.py` 120-154 | | +| Datastore upload/download | views-pipeline-core `modules/datastore/datastore.py` | 275-372, 475-568 | +| Appwrite file module | views-pipeline-core `modules/appwrite/file.py` | 2040-2273 (upload), 2451-2569 (download/cache) | +| Postprocessor manager | views-postprocessing `views_postprocessing/unfao/managers/unfao.py` | 44-273 | +| Runtime mapper enrichment | views-postprocessing `views_postprocessing/unfao/mapping/mapping.py` | 2489-2789, 3171 | +| faoapi manager | views-faoapi `src/views_faoapi/managers/api.py` | 422-612 (download), 637-923 (endpoints) | +| faoapi dataset contract | views-faoapi `src/views_faoapi/data/handlers.py` | 1143-1227, 357-366, 1206-09 | + +Data artifacts verified by direct read (2026-06-12): all 7 GAUL parquet schemas/row counts, africa_me consistency counts, assembly provenance digests, ingestion ledger timestamps (Jun 5 codes, Jun 10/11 full regeneration). diff --git a/reports/enrichment_diff/README.md b/reports/enrichment_diff/README.md new file mode 100644 index 0000000..886131c --- /dev/null +++ b/reports/enrichment_diff/README.md @@ -0,0 +1,26 @@ +# enrichment_diff — committed evidence artifacts + +These files are **deliberately committed** generated artifacts: they are the +auditable account of exactly what changes when the enrichment engine is swapped +(ADR-011), required for the FAO accountability conversation. They are evidence, +not build output that is consumed by code. + +| File | What it is | Regenerate with | +|------|-----------|-----------------| +| `report.md` | Human-readable summary + disputed-territory analysis | (hand-written) | +| `summary.json` | Per-class difference counts | `scripts/diff_enrichment.py` | +| `diff_cells.csv` | Per-cell, per-column old-vs-new record (13,110 rows) | `scripts/diff_enrichment.py` | +| `maps/*.png` | The 5 verification maps | `scripts/plot_enrichment_diff.py` | + +To regenerate (needs the real shapefiles via `git lfs pull` and a local +views-datafactory checkout; set `$VIEWS_DATAFACTORY` if it is not the sibling +directory): + +```bash +PYTHONPATH=. python scripts/diff_enrichment.py +PYTHONPATH=. python scripts/plot_enrichment_diff.py +``` + +If these are ever regenerated for a different region or GAUL version, replace +the whole directory so the report, counts, CSV, and maps stay mutually +consistent. diff --git a/reports/enrichment_diff/diff_cells.csv b/reports/enrichment_diff/diff_cells.csv new file mode 100644 index 0000000..0d43d71 --- /dev/null +++ b/reports/enrichment_diff/diff_cells.csv @@ -0,0 +1,13111 @@ +priogrid_gid,pg_xcoord__old,pg_ycoord__old,country_iso_a3__old,admin1_gaul1_code__old,admin1_gaul1_name__old,admin1_gaul0_code__old,admin1_gaul0_name__old,admin2_gaul2_code__old,admin2_gaul2_name__old,pg_xcoord__new,pg_ycoord__new,country_iso_a3__new,admin1_gaul1_code__new,admin1_gaul1_name__new,admin1_gaul0_code__new,admin1_gaul0_name__new,admin2_gaul2_code__new,admin2_gaul2_name__new,presence,change_class +62356,37.75,-46.75,ZAF,,,,,,,,,,,,,,,,old_only,dropped_by_land_gaul +79599,19.25,-34.75,ZAF,1616.0,Western Cape,159.0,South Africa,105659.0,Overberg,19.25,-34.75,ZAF,1616.0,Western Cape,159.0,South Africa,105659.0,Overberg,both,identical +79600,19.75,-34.75,ZAF,1616.0,Western Cape,159.0,South Africa,105659.0,Overberg,19.75,-34.75,ZAF,1616.0,Western Cape,159.0,South Africa,105659.0,Overberg,both,identical +79601,20.25,-34.75,ZAF,1616.0,Western Cape,159.0,South Africa,105659.0,Overberg,20.25,-34.75,ZAF,1616.0,Western Cape,159.0,South Africa,105659.0,Overberg,both,identical +80317,18.25,-34.25,ZAF,1616.0,Western Cape,159.0,South Africa,105658.0,City Of Cape Town,18.25,-34.25,ZAF,1616.0,Western Cape,159.0,South Africa,105658.0,City Of Cape Town,both,identical +80318,18.75,-34.25,ZAF,1616.0,Western Cape,159.0,South Africa,105658.0,City Of Cape Town,18.75,-34.25,ZAF,1616.0,Western Cape,159.0,South Africa,105658.0,City Of Cape Town,both,identical +80319,19.25,-34.25,ZAF,1616.0,Western Cape,159.0,South Africa,105659.0,Overberg,19.25,-34.25,ZAF,1616.0,Western Cape,159.0,South Africa,105659.0,Overberg,both,identical +80320,19.75,-34.25,ZAF,1616.0,Western Cape,159.0,South Africa,105659.0,Overberg,19.75,-34.25,ZAF,1616.0,Western Cape,159.0,South Africa,105659.0,Overberg,both,identical +80321,20.25,-34.25,ZAF,1616.0,Western Cape,159.0,South Africa,105659.0,Overberg,20.25,-34.25,ZAF,1616.0,Western Cape,159.0,South Africa,105659.0,Overberg,both,identical +80322,20.75,-34.25,ZAF,1615.0,Wc,159.0,South Africa,105655.0,Garden Route,20.75,-34.25,ZAF,1615.0,Wc,159.0,South Africa,105655.0,Garden Route,both,identical +80323,21.25,-34.25,ZAF,1615.0,Wc,159.0,South Africa,105655.0,Garden Route,21.25,-34.25,ZAF,1615.0,Wc,159.0,South Africa,105655.0,Garden Route,both,identical +80324,21.75,-34.25,ZAF,1615.0,Wc,159.0,South Africa,105655.0,Garden Route,21.75,-34.25,ZAF,1615.0,Wc,159.0,South Africa,105655.0,Garden Route,both,identical +80325,22.25,-34.25,ZAF,1615.0,Wc,159.0,South Africa,105655.0,Garden Route,22.25,-34.25,ZAF,1615.0,Wc,159.0,South Africa,105655.0,Garden Route,both,identical +80326,22.75,-34.25,ZAF,1615.0,Wc,159.0,South Africa,105655.0,Garden Route,22.75,-34.25,ZAF,1615.0,Wc,159.0,South Africa,105655.0,Garden Route,both,identical +80327,23.25,-34.25,ZAF,1615.0,Wc,159.0,South Africa,105655.0,Garden Route,23.25,-34.25,ZAF,1615.0,Wc,159.0,South Africa,105655.0,Garden Route,both,identical +80328,23.75,-34.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105616.0,Sarah Baartman,23.75,-34.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105616.0,Sarah Baartman,both,identical +80329,24.25,-34.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105616.0,Sarah Baartman,24.25,-34.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105616.0,Sarah Baartman,both,identical +80330,24.75,-34.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105616.0,Sarah Baartman,24.75,-34.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105616.0,Sarah Baartman,both,identical +80331,25.25,-34.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105614.0,Nelson Mandela Bay,25.25,-34.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105614.0,Nelson Mandela Bay,both,identical +80332,25.75,-34.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105614.0,Nelson Mandela Bay,25.75,-34.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105614.0,Nelson Mandela Bay,both,identical +81037,18.25,-33.75,ZAF,1616.0,Western Cape,159.0,South Africa,105658.0,City Of Cape Town,18.25,-33.75,ZAF,1616.0,Western Cape,159.0,South Africa,105658.0,City Of Cape Town,both,identical +81038,18.75,-33.75,ZAF,1616.0,Western Cape,159.0,South Africa,105658.0,City Of Cape Town,18.75,-33.75,ZAF,1616.0,Western Cape,159.0,South Africa,105658.0,City Of Cape Town,both,identical +81039,19.25,-33.75,ZAF,1616.0,Western Cape,159.0,South Africa,105656.0,Cape Winelands,19.25,-33.75,ZAF,1616.0,Western Cape,159.0,South Africa,105656.0,Cape Winelands,both,identical +81040,19.75,-33.75,ZAF,1616.0,Western Cape,159.0,South Africa,105656.0,Cape Winelands,19.75,-33.75,ZAF,1616.0,Western Cape,159.0,South Africa,105656.0,Cape Winelands,both,identical +81041,20.25,-33.75,ZAF,1616.0,Western Cape,159.0,South Africa,105656.0,Cape Winelands,20.25,-33.75,ZAF,1616.0,Western Cape,159.0,South Africa,105656.0,Cape Winelands,both,identical +81042,20.75,-33.75,ZAF,1616.0,Western Cape,159.0,South Africa,105659.0,Overberg,20.75,-33.75,ZAF,1616.0,Western Cape,159.0,South Africa,105659.0,Overberg,both,identical +81043,21.25,-33.75,ZAF,1615.0,Wc,159.0,South Africa,105655.0,Garden Route,21.25,-33.75,ZAF,1615.0,Wc,159.0,South Africa,105655.0,Garden Route,both,identical +81044,21.75,-33.75,ZAF,1615.0,Wc,159.0,South Africa,105655.0,Garden Route,21.75,-33.75,ZAF,1615.0,Wc,159.0,South Africa,105655.0,Garden Route,both,identical +81045,22.25,-33.75,ZAF,1615.0,Wc,159.0,South Africa,105655.0,Garden Route,22.25,-33.75,ZAF,1615.0,Wc,159.0,South Africa,105655.0,Garden Route,both,identical +81046,22.75,-33.75,ZAF,1615.0,Wc,159.0,South Africa,105655.0,Garden Route,22.75,-33.75,ZAF,1615.0,Wc,159.0,South Africa,105655.0,Garden Route,both,identical +81047,23.25,-33.75,ZAF,1615.0,Wc,159.0,South Africa,105655.0,Garden Route,23.25,-33.75,ZAF,1615.0,Wc,159.0,South Africa,105655.0,Garden Route,both,identical +81048,23.75,-33.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105616.0,Sarah Baartman,23.75,-33.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105616.0,Sarah Baartman,both,identical +81049,24.25,-33.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105616.0,Sarah Baartman,24.25,-33.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105616.0,Sarah Baartman,both,identical +81050,24.75,-33.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105616.0,Sarah Baartman,24.75,-33.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105616.0,Sarah Baartman,both,identical +81051,25.25,-33.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105616.0,Sarah Baartman,25.25,-33.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105616.0,Sarah Baartman,both,identical +81052,25.75,-33.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105614.0,Nelson Mandela Bay,25.75,-33.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105614.0,Nelson Mandela Bay,both,identical +81053,26.25,-33.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105616.0,Sarah Baartman,26.25,-33.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105616.0,Sarah Baartman,both,identical +81054,26.75,-33.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105616.0,Sarah Baartman,26.75,-33.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105616.0,Sarah Baartman,both,identical +81055,27.25,-33.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105616.0,Sarah Baartman,27.25,-33.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105616.0,Sarah Baartman,both,identical +81756,17.75,-33.25,ZAF,1616.0,Western Cape,159.0,South Africa,105660.0,West Coast,17.75,-33.25,ZAF,1616.0,Western Cape,159.0,South Africa,105660.0,West Coast,both,identical +81757,18.25,-33.25,ZAF,1616.0,Western Cape,159.0,South Africa,105660.0,West Coast,18.25,-33.25,ZAF,1616.0,Western Cape,159.0,South Africa,105660.0,West Coast,both,identical +81758,18.75,-33.25,ZAF,1616.0,Western Cape,159.0,South Africa,105660.0,West Coast,18.75,-33.25,ZAF,1616.0,Western Cape,159.0,South Africa,105660.0,West Coast,both,identical +81759,19.25,-33.25,ZAF,1616.0,Western Cape,159.0,South Africa,105656.0,Cape Winelands,19.25,-33.25,ZAF,1616.0,Western Cape,159.0,South Africa,105656.0,Cape Winelands,both,identical +81760,19.75,-33.25,ZAF,1616.0,Western Cape,159.0,South Africa,105656.0,Cape Winelands,19.75,-33.25,ZAF,1616.0,Western Cape,159.0,South Africa,105656.0,Cape Winelands,both,identical +81761,20.25,-33.25,ZAF,1616.0,Western Cape,159.0,South Africa,105656.0,Cape Winelands,20.25,-33.25,ZAF,1616.0,Western Cape,159.0,South Africa,105656.0,Cape Winelands,both,identical +81762,20.75,-33.25,ZAF,1616.0,Western Cape,159.0,South Africa,105657.0,Central Karoo,20.75,-33.25,ZAF,1616.0,Western Cape,159.0,South Africa,105657.0,Central Karoo,both,identical +81763,21.25,-33.25,ZAF,1616.0,Western Cape,159.0,South Africa,105657.0,Central Karoo,21.25,-33.25,ZAF,1616.0,Western Cape,159.0,South Africa,105657.0,Central Karoo,both,identical +81764,21.75,-33.25,ZAF,1616.0,Western Cape,159.0,South Africa,105657.0,Central Karoo,21.75,-33.25,ZAF,1616.0,Western Cape,159.0,South Africa,105657.0,Central Karoo,both,identical +81765,22.25,-33.25,ZAF,1616.0,Western Cape,159.0,South Africa,105657.0,Central Karoo,22.25,-33.25,ZAF,1616.0,Western Cape,159.0,South Africa,105657.0,Central Karoo,both,identical +81766,22.75,-33.25,ZAF,1616.0,Western Cape,159.0,South Africa,105657.0,Central Karoo,22.75,-33.25,ZAF,1616.0,Western Cape,159.0,South Africa,105657.0,Central Karoo,both,identical +81767,23.25,-33.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105616.0,Sarah Baartman,23.25,-33.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105616.0,Sarah Baartman,both,identical +81768,23.75,-33.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105616.0,Sarah Baartman,23.75,-33.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105616.0,Sarah Baartman,both,identical +81769,24.25,-33.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105616.0,Sarah Baartman,24.25,-33.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105616.0,Sarah Baartman,both,identical +81770,24.75,-33.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105616.0,Sarah Baartman,24.75,-33.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105616.0,Sarah Baartman,both,identical +81771,25.25,-33.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105616.0,Sarah Baartman,25.25,-33.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105616.0,Sarah Baartman,both,identical +81772,25.75,-33.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105616.0,Sarah Baartman,25.75,-33.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105616.0,Sarah Baartman,both,identical +81773,26.25,-33.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105616.0,Sarah Baartman,26.25,-33.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105616.0,Sarah Baartman,both,identical +81774,26.75,-33.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105616.0,Sarah Baartman,26.75,-33.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105616.0,Sarah Baartman,both,identical +81775,27.25,-33.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105610.0,Amathole,27.25,-33.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105610.0,Amathole,both,identical +81776,27.75,-33.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105611.0,Buffalo City,27.75,-33.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105611.0,Buffalo City,both,identical +82476,17.75,-32.75,ZAF,1616.0,Western Cape,159.0,South Africa,105660.0,West Coast,17.75,-32.75,ZAF,1616.0,Western Cape,159.0,South Africa,105660.0,West Coast,both,identical +82477,18.25,-32.75,ZAF,1616.0,Western Cape,159.0,South Africa,105660.0,West Coast,18.25,-32.75,ZAF,1616.0,Western Cape,159.0,South Africa,105660.0,West Coast,both,identical +82478,18.75,-32.75,ZAF,1616.0,Western Cape,159.0,South Africa,105660.0,West Coast,18.75,-32.75,ZAF,1616.0,Western Cape,159.0,South Africa,105660.0,West Coast,both,identical +82479,19.25,-32.75,ZAF,1616.0,Western Cape,159.0,South Africa,105656.0,Cape Winelands,19.25,-32.75,ZAF,1616.0,Western Cape,159.0,South Africa,105656.0,Cape Winelands,both,identical +82480,19.75,-32.75,ZAF,1616.0,Western Cape,159.0,South Africa,105656.0,Cape Winelands,19.75,-32.75,ZAF,1616.0,Western Cape,159.0,South Africa,105656.0,Cape Winelands,both,identical +82481,20.25,-32.75,ZAF,1616.0,Western Cape,159.0,South Africa,105656.0,Cape Winelands,20.25,-32.75,ZAF,1616.0,Western Cape,159.0,South Africa,105656.0,Cape Winelands,both,identical +82482,20.75,-32.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,20.75,-32.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,both,identical +82483,21.25,-32.75,ZAF,1616.0,Western Cape,159.0,South Africa,105657.0,Central Karoo,21.25,-32.75,ZAF,1616.0,Western Cape,159.0,South Africa,105657.0,Central Karoo,both,identical +82484,21.75,-32.75,ZAF,1616.0,Western Cape,159.0,South Africa,105657.0,Central Karoo,21.75,-32.75,ZAF,1616.0,Western Cape,159.0,South Africa,105657.0,Central Karoo,both,identical +82485,22.25,-32.75,ZAF,1616.0,Western Cape,159.0,South Africa,105657.0,Central Karoo,22.25,-32.75,ZAF,1616.0,Western Cape,159.0,South Africa,105657.0,Central Karoo,both,identical +82486,22.75,-32.75,ZAF,1616.0,Western Cape,159.0,South Africa,105657.0,Central Karoo,22.75,-32.75,ZAF,1616.0,Western Cape,159.0,South Africa,105657.0,Central Karoo,both,identical +82487,23.25,-32.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105616.0,Sarah Baartman,23.25,-32.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105616.0,Sarah Baartman,both,identical +82488,23.75,-32.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105616.0,Sarah Baartman,23.75,-32.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105616.0,Sarah Baartman,both,identical +82489,24.25,-32.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105616.0,Sarah Baartman,24.25,-32.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105616.0,Sarah Baartman,both,identical +82490,24.75,-32.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105616.0,Sarah Baartman,24.75,-32.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105616.0,Sarah Baartman,both,identical +82491,25.25,-32.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105616.0,Sarah Baartman,25.25,-32.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105616.0,Sarah Baartman,both,identical +82492,25.75,-32.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105616.0,Sarah Baartman,25.75,-32.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105616.0,Sarah Baartman,both,identical +82493,26.25,-32.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105610.0,Amathole,26.25,-32.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105610.0,Amathole,both,identical +82494,26.75,-32.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105610.0,Amathole,26.75,-32.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105610.0,Amathole,both,identical +82495,27.25,-32.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105610.0,Amathole,27.25,-32.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105610.0,Amathole,both,identical +82496,27.75,-32.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105610.0,Amathole,27.75,-32.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105610.0,Amathole,both,identical +82497,28.25,-32.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105610.0,Amathole,28.25,-32.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105610.0,Amathole,both,identical +82498,28.75,-32.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105610.0,Amathole,28.75,-32.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105610.0,Amathole,both,identical +83197,18.25,-32.25,ZAF,1616.0,Western Cape,159.0,South Africa,105660.0,West Coast,18.25,-32.25,ZAF,1616.0,Western Cape,159.0,South Africa,105660.0,West Coast,both,identical +83198,18.75,-32.25,ZAF,1616.0,Western Cape,159.0,South Africa,105660.0,West Coast,18.75,-32.25,ZAF,1616.0,Western Cape,159.0,South Africa,105660.0,West Coast,both,identical +83199,19.25,-32.25,ZAF,1616.0,Western Cape,159.0,South Africa,105660.0,West Coast,19.25,-32.25,ZAF,1616.0,Western Cape,159.0,South Africa,105660.0,West Coast,both,identical +83200,19.75,-32.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,19.75,-32.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,both,identical +83201,20.25,-32.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,20.25,-32.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,both,identical +83202,20.75,-32.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,20.75,-32.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,both,identical +83203,21.25,-32.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,21.25,-32.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,both,identical +83204,21.75,-32.25,ZAF,1616.0,Western Cape,159.0,South Africa,105657.0,Central Karoo,21.75,-32.25,ZAF,1616.0,Western Cape,159.0,South Africa,105657.0,Central Karoo,both,identical +83205,22.25,-32.25,ZAF,1616.0,Western Cape,159.0,South Africa,105657.0,Central Karoo,22.25,-32.25,ZAF,1616.0,Western Cape,159.0,South Africa,105657.0,Central Karoo,both,identical +83206,22.75,-32.25,ZAF,1616.0,Western Cape,159.0,South Africa,105657.0,Central Karoo,22.75,-32.25,ZAF,1616.0,Western Cape,159.0,South Africa,105657.0,Central Karoo,both,identical +83207,23.25,-32.25,ZAF,1616.0,Western Cape,159.0,South Africa,105657.0,Central Karoo,23.25,-32.25,ZAF,1616.0,Western Cape,159.0,South Africa,105657.0,Central Karoo,both,identical +83208,23.75,-32.25,ZAF,1616.0,Western Cape,159.0,South Africa,105657.0,Central Karoo,23.75,-32.25,ZAF,1616.0,Western Cape,159.0,South Africa,105657.0,Central Karoo,both,identical +83209,24.25,-32.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105616.0,Sarah Baartman,24.25,-32.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105616.0,Sarah Baartman,both,identical +83210,24.75,-32.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105616.0,Sarah Baartman,24.75,-32.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105616.0,Sarah Baartman,both,identical +83211,25.25,-32.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105612.0,Chris Hani,25.25,-32.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105612.0,Chris Hani,both,identical +83212,25.75,-32.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105612.0,Chris Hani,25.75,-32.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105612.0,Chris Hani,both,identical +83213,26.25,-32.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105612.0,Chris Hani,26.25,-32.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105612.0,Chris Hani,both,identical +83214,26.75,-32.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105612.0,Chris Hani,26.75,-32.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105612.0,Chris Hani,both,identical +83215,27.25,-32.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105612.0,Chris Hani,27.25,-32.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105612.0,Chris Hani,both,identical +83216,27.75,-32.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105610.0,Amathole,27.75,-32.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105610.0,Amathole,both,identical +83217,28.25,-32.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105610.0,Amathole,28.25,-32.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105610.0,Amathole,both,identical +83218,28.75,-32.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105610.0,Amathole,28.75,-32.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105610.0,Amathole,both,identical +83219,29.25,-32.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105610.0,Amathole,29.25,-32.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105610.0,Amathole,both,identical +83917,18.25,-31.75,ZAF,1616.0,Western Cape,159.0,South Africa,105660.0,West Coast,18.25,-31.75,ZAF,1616.0,Western Cape,159.0,South Africa,105660.0,West Coast,both,identical +83918,18.75,-31.75,ZAF,1616.0,Western Cape,159.0,South Africa,105660.0,West Coast,18.75,-31.75,ZAF,1616.0,Western Cape,159.0,South Africa,105660.0,West Coast,both,identical +83919,19.25,-31.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,19.25,-31.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,both,identical +83920,19.75,-31.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,19.75,-31.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,both,identical +83921,20.25,-31.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,20.25,-31.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,both,identical +83922,20.75,-31.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,20.75,-31.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,both,identical +83923,21.25,-31.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,21.25,-31.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,both,identical +83924,21.75,-31.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,21.75,-31.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,both,identical +83925,22.25,-31.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105657.0,Central Karoo,22.25,-31.75,ZAF,1616.0,Western Cape,159.0,South Africa,105657.0,Central Karoo,both,admin_reallocation +83926,22.75,-31.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,22.75,-31.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,both,identical +83927,23.25,-31.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,23.25,-31.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,both,identical +83928,23.75,-31.75,ZAF,1616.0,Western Cape,159.0,South Africa,105657.0,Central Karoo,23.75,-31.75,ZAF,1616.0,Western Cape,159.0,South Africa,105657.0,Central Karoo,both,identical +83929,24.25,-31.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,24.25,-31.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,both,identical +83930,24.75,-31.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105612.0,Chris Hani,24.75,-31.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105612.0,Chris Hani,both,identical +83931,25.25,-31.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105612.0,Chris Hani,25.25,-31.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105612.0,Chris Hani,both,identical +83932,25.75,-31.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105612.0,Chris Hani,25.75,-31.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105612.0,Chris Hani,both,identical +83933,26.25,-31.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105612.0,Chris Hani,26.25,-31.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105612.0,Chris Hani,both,identical +83934,26.75,-31.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105612.0,Chris Hani,26.75,-31.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105612.0,Chris Hani,both,identical +83935,27.25,-31.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105612.0,Chris Hani,27.25,-31.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105612.0,Chris Hani,both,identical +83936,27.75,-31.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105612.0,Chris Hani,27.75,-31.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105612.0,Chris Hani,both,identical +83937,28.25,-31.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105612.0,Chris Hani,28.25,-31.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105612.0,Chris Hani,both,identical +83938,28.75,-31.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105615.0,O.R.Tambo,28.75,-31.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105615.0,O.R.Tambo,both,identical +83939,29.25,-31.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105615.0,O.R.Tambo,29.25,-31.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105615.0,O.R.Tambo,both,identical +83940,29.75,-31.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105615.0,O.R.Tambo,29.75,-31.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105615.0,O.R.Tambo,both,identical +84636,17.75,-31.25,ZAF,1616.0,Western Cape,159.0,South Africa,105660.0,West Coast,17.75,-31.25,ZAF,1616.0,Western Cape,159.0,South Africa,105660.0,West Coast,both,identical +84637,18.25,-31.25,ZAF,1616.0,Western Cape,159.0,South Africa,105660.0,West Coast,18.25,-31.25,ZAF,1616.0,Western Cape,159.0,South Africa,105660.0,West Coast,both,identical +84638,18.75,-31.25,ZAF,1616.0,Western Cape,159.0,South Africa,105660.0,West Coast,18.75,-31.25,ZAF,1616.0,Western Cape,159.0,South Africa,105660.0,West Coast,both,identical +84639,19.25,-31.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,19.25,-31.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,both,identical +84640,19.75,-31.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,19.75,-31.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,both,identical +84641,20.25,-31.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,20.25,-31.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,both,identical +84642,20.75,-31.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,20.75,-31.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,both,identical +84643,21.25,-31.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,21.25,-31.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,both,identical +84644,21.75,-31.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,21.75,-31.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,both,identical +84645,22.25,-31.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,22.25,-31.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,both,identical +84646,22.75,-31.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,22.75,-31.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,both,identical +84647,23.25,-31.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,23.25,-31.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,both,identical +84648,23.75,-31.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,23.75,-31.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,both,identical +84649,24.25,-31.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,24.25,-31.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,both,identical +84650,24.75,-31.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,24.75,-31.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,both,identical +84651,25.25,-31.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105612.0,Chris Hani,25.25,-31.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105612.0,Chris Hani,both,identical +84652,25.75,-31.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105613.0,Joe Gqabi,25.75,-31.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105613.0,Joe Gqabi,both,identical +84653,26.25,-31.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105613.0,Joe Gqabi,26.25,-31.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105613.0,Joe Gqabi,both,identical +84654,26.75,-31.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105613.0,Joe Gqabi,26.75,-31.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105613.0,Joe Gqabi,both,identical +84655,27.25,-31.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105613.0,Joe Gqabi,27.25,-31.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105613.0,Joe Gqabi,both,identical +84656,27.75,-31.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105612.0,Chris Hani,27.75,-31.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105612.0,Chris Hani,both,identical +84657,28.25,-31.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105613.0,Joe Gqabi,28.25,-31.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105613.0,Joe Gqabi,both,identical +84658,28.75,-31.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105615.0,O.R.Tambo,28.75,-31.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105615.0,O.R.Tambo,both,identical +84659,29.25,-31.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105615.0,O.R.Tambo,29.25,-31.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105615.0,O.R.Tambo,both,identical +84660,29.75,-31.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105615.0,O.R.Tambo,29.75,-31.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105615.0,O.R.Tambo,both,identical +84661,30.25,-31.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105609.0,Alfred Nzo,30.25,-31.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105609.0,Alfred Nzo,both,identical +85355,17.25,-30.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,17.25,-30.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,both,identical +85356,17.75,-30.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,17.75,-30.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,both,identical +85357,18.25,-30.75,ZAF,1616.0,Western Cape,159.0,South Africa,105660.0,West Coast,18.25,-30.75,ZAF,1616.0,Western Cape,159.0,South Africa,105660.0,West Coast,both,identical +85358,18.75,-30.75,ZAF,1616.0,Western Cape,159.0,South Africa,105660.0,West Coast,18.75,-30.75,ZAF,1616.0,Western Cape,159.0,South Africa,105660.0,West Coast,both,identical +85359,19.25,-30.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,19.25,-30.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,both,identical +85360,19.75,-30.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,19.75,-30.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,both,identical +85361,20.25,-30.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,20.25,-30.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,both,identical +85362,20.75,-30.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,20.75,-30.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,both,identical +85363,21.25,-30.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,21.25,-30.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,both,identical +85364,21.75,-30.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,21.75,-30.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,both,identical +85365,22.25,-30.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,22.25,-30.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,both,identical +85366,22.75,-30.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,22.75,-30.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,both,identical +85367,23.25,-30.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,23.25,-30.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,both,identical +85368,23.75,-30.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,23.75,-30.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,both,identical +85369,24.25,-30.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,24.25,-30.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,both,identical +85370,24.75,-30.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,24.75,-30.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,both,identical +85371,25.25,-30.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,25.25,-30.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,both,identical +85372,25.75,-30.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105613.0,Joe Gqabi,25.75,-30.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105613.0,Joe Gqabi,both,identical +85373,26.25,-30.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105613.0,Joe Gqabi,26.25,-30.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105613.0,Joe Gqabi,both,identical +85374,26.75,-30.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105613.0,Joe Gqabi,26.75,-30.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105613.0,Joe Gqabi,both,identical +85375,27.25,-30.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105613.0,Joe Gqabi,27.25,-30.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105613.0,Joe Gqabi,both,identical +85376,27.75,-30.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105613.0,Joe Gqabi,27.75,-30.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105613.0,Joe Gqabi,both,identical +85377,28.25,-30.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105613.0,Joe Gqabi,28.25,-30.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105613.0,Joe Gqabi,both,identical +85378,28.75,-30.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105609.0,Alfred Nzo,28.75,-30.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105609.0,Alfred Nzo,both,identical +85379,29.25,-30.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105609.0,Alfred Nzo,29.25,-30.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105609.0,Alfred Nzo,both,identical +85380,29.75,-30.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105609.0,Alfred Nzo,29.75,-30.75,ZAF,1607.0,Eastern Cape,159.0,South Africa,105609.0,Alfred Nzo,both,identical +85381,30.25,-30.75,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105632.0,Ugu,30.25,-30.75,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105632.0,Ugu,both,identical +85382,30.75,-30.75,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105632.0,Ugu,30.75,-30.75,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105632.0,Ugu,both,identical +86075,17.25,-30.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,17.25,-30.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,both,identical +86076,17.75,-30.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,17.75,-30.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,both,identical +86077,18.25,-30.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,18.25,-30.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,both,identical +86078,18.75,-30.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,18.75,-30.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,both,identical +86079,19.25,-30.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,19.25,-30.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,both,identical +86080,19.75,-30.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,19.75,-30.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,both,identical +86081,20.25,-30.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,20.25,-30.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,both,identical +86082,20.75,-30.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,20.75,-30.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,both,identical +86083,21.25,-30.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,21.25,-30.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,both,identical +86084,21.75,-30.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,21.75,-30.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,both,identical +86085,22.25,-30.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,22.25,-30.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,both,identical +86086,22.75,-30.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,22.75,-30.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,both,identical +86087,23.25,-30.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,23.25,-30.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,both,identical +86088,23.75,-30.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,23.75,-30.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,both,identical +86089,24.25,-30.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,24.25,-30.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,both,identical +86090,24.75,-30.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,24.75,-30.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,both,identical +86091,25.25,-30.25,ZAF,1608.0,Free State,159.0,South Africa,105621.0,Xhariep,25.25,-30.25,ZAF,1608.0,Free State,159.0,South Africa,105621.0,Xhariep,both,identical +86092,25.75,-30.25,ZAF,1608.0,Free State,159.0,South Africa,105621.0,Xhariep,25.75,-30.25,ZAF,1608.0,Free State,159.0,South Africa,105621.0,Xhariep,both,identical +86093,26.25,-30.25,ZAF,1608.0,Free State,159.0,South Africa,105621.0,Xhariep,26.25,-30.25,ZAF,1608.0,Free State,159.0,South Africa,105621.0,Xhariep,both,identical +86094,26.75,-30.25,ZAF,1608.0,Free State,159.0,South Africa,105621.0,Xhariep,26.75,-30.25,ZAF,1608.0,Free State,159.0,South Africa,105621.0,Xhariep,both,identical +86095,27.25,-30.25,ZAF,1608.0,Free State,159.0,South Africa,105621.0,Xhariep,27.25,-30.25,ZAF,1608.0,Free State,159.0,South Africa,105621.0,Xhariep,both,identical +86096,27.75,-30.25,LSO,1405.0,Mohale'S Hoek,138.0,Lesotho,103871.0,Qhoasing,27.75,-30.25,LSO,1405.0,Mohale'S Hoek,138.0,Lesotho,103871.0,Qhoasing,both,identical +86097,28.25,-30.25,LSO,1408.0,Quthing,138.0,Lesotho,103885.0,Mphaki,28.25,-30.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105609.0,Alfred Nzo,both,country_reassignment +86098,28.75,-30.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105609.0,Alfred Nzo,28.75,-30.25,ZAF,1607.0,Eastern Cape,159.0,South Africa,105609.0,Alfred Nzo,both,identical +86099,29.25,-30.25,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105629.0,Harry Gwala,29.25,-30.25,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105629.0,Harry Gwala,both,identical +86100,29.75,-30.25,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105629.0,Harry Gwala,29.75,-30.25,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105629.0,Harry Gwala,both,identical +86101,30.25,-30.25,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105629.0,Harry Gwala,30.25,-30.25,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105629.0,Harry Gwala,both,identical +86102,30.75,-30.25,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105632.0,Ugu,30.75,-30.25,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105632.0,Ugu,both,identical +86794,16.75,-29.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,16.75,-29.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,both,identical +86795,17.25,-29.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,17.25,-29.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,both,identical +86796,17.75,-29.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,17.75,-29.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,both,identical +86797,18.25,-29.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,18.25,-29.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,both,identical +86798,18.75,-29.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,18.75,-29.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,both,identical +86799,19.25,-29.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,19.25,-29.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,both,identical +86800,19.75,-29.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,19.75,-29.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,both,identical +86801,20.25,-29.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,20.25,-29.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,both,identical +86802,20.75,-29.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,20.75,-29.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,both,identical +86803,21.25,-29.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,21.25,-29.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,both,identical +86804,21.75,-29.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,21.75,-29.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,both,identical +86805,22.25,-29.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,22.25,-29.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,both,identical +86806,22.75,-29.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,22.75,-29.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,both,identical +86807,23.25,-29.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,23.25,-29.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,both,identical +86808,23.75,-29.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,23.75,-29.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,both,identical +86809,24.25,-29.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,24.25,-29.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,both,identical +86810,24.75,-29.75,ZAF,1608.0,Free State,159.0,South Africa,105621.0,Xhariep,24.75,-29.75,ZAF,1608.0,Free State,159.0,South Africa,105621.0,Xhariep,both,identical +86811,25.25,-29.75,ZAF,1608.0,Free State,159.0,South Africa,105621.0,Xhariep,25.25,-29.75,ZAF,1608.0,Free State,159.0,South Africa,105621.0,Xhariep,both,identical +86812,25.75,-29.75,ZAF,1608.0,Free State,159.0,South Africa,105621.0,Xhariep,25.75,-29.75,ZAF,1608.0,Free State,159.0,South Africa,105621.0,Xhariep,both,identical +86813,26.25,-29.75,ZAF,1608.0,Free State,159.0,South Africa,105621.0,Xhariep,26.25,-29.75,ZAF,1608.0,Free State,159.0,South Africa,105621.0,Xhariep,both,identical +86814,26.75,-29.75,ZAF,1608.0,Free State,159.0,South Africa,105619.0,Mangaung,26.75,-29.75,ZAF,1608.0,Free State,159.0,South Africa,105619.0,Mangaung,both,identical +86815,27.25,-29.75,LSO,1403.0,Mafeteng,138.0,Lesotho,103851.0,Metsi-Maholo,27.25,-29.75,ZAF,1608.0,Free State,159.0,South Africa,105619.0,Mangaung,both,country_reassignment +86816,27.75,-29.75,LSO,1404.0,Maseru,138.0,Lesotho,103855.0,Kubake,27.75,-29.75,LSO,1404.0,Maseru,138.0,Lesotho,103855.0,Kubake,both,identical +86817,28.25,-29.75,LSO,1409.0,Thaba-Tseka,138.0,Lesotho,103891.0,Khutlo-Se-Metsi,28.25,-29.75,LSO,1409.0,Thaba-Tseka,138.0,Lesotho,103891.0,Khutlo-Se-Metsi,both,identical +86818,28.75,-29.75,LSO,1409.0,Thaba-Tseka,138.0,Lesotho,103892.0,Linakeng,28.75,-29.75,LSO,1409.0,Thaba-Tseka,138.0,Lesotho,103892.0,Linakeng,both,identical +86819,29.25,-29.75,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105629.0,Harry Gwala,29.25,-29.75,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105629.0,Harry Gwala,both,identical +86820,29.75,-29.75,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105629.0,Harry Gwala,29.75,-29.75,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105629.0,Harry Gwala,both,identical +86821,30.25,-29.75,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105633.0,Umgungundlovu,30.25,-29.75,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105633.0,Umgungundlovu,both,identical +86822,30.75,-29.75,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105628.0,Ethekwini,30.75,-29.75,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105628.0,Ethekwini,both,identical +86823,31.25,-29.75,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105628.0,Ethekwini,31.25,-29.75,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105628.0,Ethekwini,both,identical +87514,16.75,-29.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,16.75,-29.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,both,identical +87515,17.25,-29.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,17.25,-29.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,both,identical +87516,17.75,-29.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,17.75,-29.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,both,identical +87517,18.25,-29.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,18.25,-29.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,both,identical +87518,18.75,-29.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,18.75,-29.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,both,identical +87519,19.25,-29.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,19.25,-29.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,both,identical +87520,19.75,-29.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,19.75,-29.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,both,identical +87521,20.25,-29.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,20.25,-29.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,both,identical +87522,20.75,-29.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,20.75,-29.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,both,identical +87523,21.25,-29.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,21.25,-29.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,both,identical +87524,21.75,-29.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,21.75,-29.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,both,identical +87525,22.25,-29.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,22.25,-29.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,both,identical +87526,22.75,-29.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,22.75,-29.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,both,identical +87527,23.25,-29.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,23.25,-29.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,both,identical +87528,23.75,-29.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,23.75,-29.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,both,identical +87529,24.25,-29.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,24.25,-29.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,both,identical +87530,24.75,-29.25,ZAF,1608.0,Free State,159.0,South Africa,105621.0,Xhariep,24.75,-29.25,ZAF,1608.0,Free State,159.0,South Africa,105621.0,Xhariep,both,identical +87531,25.25,-29.25,ZAF,1608.0,Free State,159.0,South Africa,105621.0,Xhariep,25.25,-29.25,ZAF,1608.0,Free State,159.0,South Africa,105621.0,Xhariep,both,identical +87532,25.75,-29.25,ZAF,1608.0,Free State,159.0,South Africa,105621.0,Xhariep,25.75,-29.25,ZAF,1608.0,Free State,159.0,South Africa,105621.0,Xhariep,both,identical +87533,26.25,-29.25,ZAF,1608.0,Free State,159.0,South Africa,105619.0,Mangaung,26.25,-29.25,ZAF,1608.0,Free State,159.0,South Africa,105619.0,Mangaung,both,identical +87534,26.75,-29.25,ZAF,1608.0,Free State,159.0,South Africa,105619.0,Mangaung,26.75,-29.25,ZAF,1608.0,Free State,159.0,South Africa,105619.0,Mangaung,both,identical +87535,27.25,-29.25,ZAF,1608.0,Free State,159.0,South Africa,105620.0,Thabo Mofutsanyane,27.25,-29.25,ZAF,1608.0,Free State,159.0,South Africa,105620.0,Thabo Mofutsanyane,both,identical +87536,27.75,-29.25,LSO,1400.0,Berea,138.0,Lesotho,103856.0,Likolobeng,27.75,-29.25,ZAF,1608.0,Free State,159.0,South Africa,105620.0,Thabo Mofutsanyane,both,country_reassignment +87537,28.25,-29.25,LSO,1409.0,Thaba-Tseka,138.0,Lesotho,103894.0,Tenesolo,28.25,-29.25,LSO,1409.0,Thaba-Tseka,138.0,Lesotho,103894.0,Tenesolo,both,identical +87538,28.75,-29.25,LSO,1406.0,Mokhotlong,138.0,Lesotho,103879.0,Seate,28.75,-29.25,LSO,1406.0,Mokhotlong,138.0,Lesotho,103879.0,Seate,both,identical +87539,29.25,-29.25,LSO,1406.0,Mokhotlong,138.0,Lesotho,103878.0,Sanqebethu,29.25,-29.25,LSO,1406.0,Mokhotlong,138.0,Lesotho,103878.0,Sanqebethu,both,identical +87540,29.75,-29.25,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105633.0,Umgungundlovu,29.75,-29.25,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105633.0,Umgungundlovu,both,identical +87541,30.25,-29.25,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105633.0,Umgungundlovu,30.25,-29.25,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105633.0,Umgungundlovu,both,identical +87542,30.75,-29.25,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105635.0,Umzinyathi,30.75,-29.25,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105635.0,Umzinyathi,both,identical +87543,31.25,-29.25,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105630.0,Ilembe,31.25,-29.25,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105630.0,Ilembe,both,identical +87544,31.75,-29.25,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105630.0,Ilembe,31.75,-29.25,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105630.0,Ilembe,both,identical +88233,16.25,-28.75,NAM,1497.0,Karas,149.0,Namibia,104478.0,Oranjemund,16.25,-28.75,NAM,1497.0,Karas,149.0,Namibia,104478.0,Oranjemund,both,identical +88234,16.75,-28.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,16.75,-28.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,both,identical +88235,17.25,-28.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,17.25,-28.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,both,identical +88236,17.75,-28.75,NAM,1497.0,Karas,149.0,Namibia,104474.0,Karasburg,17.75,-28.75,NAM,1497.0,Karas,149.0,Namibia,104474.0,Karasburg,both,identical +88237,18.25,-28.75,NAM,1497.0,Karas,149.0,Namibia,104474.0,Karasburg,18.25,-28.75,NAM,1497.0,Karas,149.0,Namibia,104474.0,Karasburg,both,identical +88238,18.75,-28.75,NAM,1497.0,Karas,149.0,Namibia,104474.0,Karasburg,18.75,-28.75,NAM,1497.0,Karas,149.0,Namibia,104474.0,Karasburg,both,identical +88239,19.25,-28.75,NAM,1497.0,Karas,149.0,Namibia,104474.0,Karasburg,19.25,-28.75,NAM,1497.0,Karas,149.0,Namibia,104474.0,Karasburg,both,identical +88240,19.75,-28.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,19.75,-28.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,both,identical +88241,20.25,-28.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,20.25,-28.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,both,identical +88242,20.75,-28.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,20.75,-28.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,both,identical +88243,21.25,-28.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,21.25,-28.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,both,identical +88244,21.75,-28.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,21.75,-28.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,both,identical +88245,22.25,-28.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,22.25,-28.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,both,identical +88246,22.75,-28.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,22.75,-28.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,both,identical +88247,23.25,-28.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,23.25,-28.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,both,identical +88248,23.75,-28.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,23.75,-28.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105653.0,Pixley Ka Seme,both,identical +88249,24.25,-28.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105650.0,Frances Baard,24.25,-28.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105650.0,Frances Baard,both,identical +88250,24.75,-28.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105650.0,Frances Baard,24.75,-28.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105650.0,Frances Baard,both,identical +88251,25.25,-28.75,ZAF,1608.0,Free State,159.0,South Africa,105618.0,Lejweleputswa,25.25,-28.75,ZAF,1608.0,Free State,159.0,South Africa,105618.0,Lejweleputswa,both,identical +88252,25.75,-28.75,ZAF,1608.0,Free State,159.0,South Africa,105618.0,Lejweleputswa,25.75,-28.75,ZAF,1608.0,Free State,159.0,South Africa,105618.0,Lejweleputswa,both,identical +88253,26.25,-28.75,ZAF,1608.0,Free State,159.0,South Africa,105618.0,Lejweleputswa,26.25,-28.75,ZAF,1608.0,Free State,159.0,South Africa,105618.0,Lejweleputswa,both,identical +88254,26.75,-28.75,ZAF,1608.0,Free State,159.0,South Africa,105618.0,Lejweleputswa,26.75,-28.75,ZAF,1608.0,Free State,159.0,South Africa,105618.0,Lejweleputswa,both,identical +88255,27.25,-28.75,ZAF,1608.0,Free State,159.0,South Africa,105620.0,Thabo Mofutsanyane,27.25,-28.75,ZAF,1608.0,Free State,159.0,South Africa,105620.0,Thabo Mofutsanyane,both,identical +88256,27.75,-28.75,ZAF,1608.0,Free State,159.0,South Africa,105620.0,Thabo Mofutsanyane,27.75,-28.75,ZAF,1608.0,Free State,159.0,South Africa,105620.0,Thabo Mofutsanyane,both,identical +88257,28.25,-28.75,LSO,1402.0,Leribe,138.0,Lesotho,103843.0,Menkhoaneng,28.25,-28.75,ZAF,1608.0,Free State,159.0,South Africa,105620.0,Thabo Mofutsanyane,both,country_reassignment +88258,28.75,-28.75,LSO,1401.0,Butha-Buthe,138.0,Lesotho,103831.0,Nqoe,28.75,-28.75,LSO,1401.0,Butha-Buthe,138.0,Lesotho,103831.0,Nqoe,both,identical +88259,29.25,-28.75,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105636.0,Uthukela,29.25,-28.75,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105636.0,Uthukela,both,identical +88260,29.75,-28.75,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105636.0,Uthukela,29.75,-28.75,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105636.0,Uthukela,both,identical +88261,30.25,-28.75,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105636.0,Uthukela,30.25,-28.75,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105636.0,Uthukela,both,identical +88262,30.75,-28.75,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105635.0,Umzinyathi,30.75,-28.75,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105635.0,Umzinyathi,both,identical +88263,31.25,-28.75,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105631.0,King Cetshwayo,31.25,-28.75,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105631.0,King Cetshwayo,both,identical +88264,31.75,-28.75,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105631.0,King Cetshwayo,31.75,-28.75,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105631.0,King Cetshwayo,both,identical +88265,32.25,-28.75,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105631.0,King Cetshwayo,32.25,-28.75,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105631.0,King Cetshwayo,both,identical +88952,15.75,-28.25,NAM,1497.0,Karas,149.0,Namibia,104477.0,Naminus (Luderitz),15.75,-28.25,NAM,1497.0,Karas,149.0,Namibia,104477.0,Naminus (Luderitz),both,identical +88953,16.25,-28.25,NAM,1497.0,Karas,149.0,Namibia,104477.0,Naminus (Luderitz),16.25,-28.25,NAM,1497.0,Karas,149.0,Namibia,104477.0,Naminus (Luderitz),both,identical +88954,16.75,-28.25,NAM,1497.0,Karas,149.0,Namibia,104478.0,Oranjemund,16.75,-28.25,NAM,1497.0,Karas,149.0,Namibia,104478.0,Oranjemund,both,identical +88955,17.25,-28.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,17.25,-28.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105652.0,Namakwa,both,identical +88956,17.75,-28.25,NAM,1497.0,Karas,149.0,Namibia,104474.0,Karasburg,17.75,-28.25,NAM,1497.0,Karas,149.0,Namibia,104474.0,Karasburg,both,identical +88957,18.25,-28.25,NAM,1497.0,Karas,149.0,Namibia,104474.0,Karasburg,18.25,-28.25,NAM,1497.0,Karas,149.0,Namibia,104474.0,Karasburg,both,identical +88958,18.75,-28.25,NAM,1497.0,Karas,149.0,Namibia,104474.0,Karasburg,18.75,-28.25,NAM,1497.0,Karas,149.0,Namibia,104474.0,Karasburg,both,identical +88959,19.25,-28.25,NAM,1497.0,Karas,149.0,Namibia,104474.0,Karasburg,19.25,-28.25,NAM,1497.0,Karas,149.0,Namibia,104474.0,Karasburg,both,identical +88960,19.75,-28.25,NAM,1497.0,Karas,149.0,Namibia,104474.0,Karasburg,19.75,-28.25,NAM,1497.0,Karas,149.0,Namibia,104474.0,Karasburg,both,identical +88961,20.25,-28.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,20.25,-28.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,both,identical +88962,20.75,-28.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,20.75,-28.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,both,identical +88963,21.25,-28.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,21.25,-28.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,both,identical +88964,21.75,-28.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,21.75,-28.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,both,identical +88965,22.25,-28.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,22.25,-28.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,both,identical +88966,22.75,-28.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,22.75,-28.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,both,identical +88967,23.25,-28.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,23.25,-28.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,both,identical +88968,23.75,-28.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,23.75,-28.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,both,identical +88969,24.25,-28.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105650.0,Frances Baard,24.25,-28.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105650.0,Frances Baard,both,identical +88970,24.75,-28.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105650.0,Frances Baard,24.75,-28.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105650.0,Frances Baard,both,identical +88971,25.25,-28.25,ZAF,1608.0,Free State,159.0,South Africa,105618.0,Lejweleputswa,25.25,-28.25,ZAF,1608.0,Free State,159.0,South Africa,105618.0,Lejweleputswa,both,identical +88972,25.75,-28.25,ZAF,1608.0,Free State,159.0,South Africa,105618.0,Lejweleputswa,25.75,-28.25,ZAF,1608.0,Free State,159.0,South Africa,105618.0,Lejweleputswa,both,identical +88973,26.25,-28.25,ZAF,1608.0,Free State,159.0,South Africa,105618.0,Lejweleputswa,26.25,-28.25,ZAF,1608.0,Free State,159.0,South Africa,105618.0,Lejweleputswa,both,identical +88974,26.75,-28.25,ZAF,1608.0,Free State,159.0,South Africa,105618.0,Lejweleputswa,26.75,-28.25,ZAF,1608.0,Free State,159.0,South Africa,105618.0,Lejweleputswa,both,identical +88975,27.25,-28.25,ZAF,1608.0,Free State,159.0,South Africa,105618.0,Lejweleputswa,27.25,-28.25,ZAF,1608.0,Free State,159.0,South Africa,105618.0,Lejweleputswa,both,identical +88976,27.75,-28.25,ZAF,1608.0,Free State,159.0,South Africa,105620.0,Thabo Mofutsanyane,27.75,-28.25,ZAF,1608.0,Free State,159.0,South Africa,105620.0,Thabo Mofutsanyane,both,identical +88977,28.25,-28.25,ZAF,1608.0,Free State,159.0,South Africa,105620.0,Thabo Mofutsanyane,28.25,-28.25,ZAF,1608.0,Free State,159.0,South Africa,105620.0,Thabo Mofutsanyane,both,identical +88978,28.75,-28.25,ZAF,1608.0,Free State,159.0,South Africa,105620.0,Thabo Mofutsanyane,28.75,-28.25,ZAF,1608.0,Free State,159.0,South Africa,105620.0,Thabo Mofutsanyane,both,identical +88979,29.25,-28.25,ZAF,1608.0,Free State,159.0,South Africa,105620.0,Thabo Mofutsanyane,29.25,-28.25,ZAF,1608.0,Free State,159.0,South Africa,105620.0,Thabo Mofutsanyane,both,identical +88980,29.75,-28.25,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105636.0,Uthukela,29.75,-28.25,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105636.0,Uthukela,both,identical +88981,30.25,-28.25,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105635.0,Umzinyathi,30.25,-28.25,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105635.0,Umzinyathi,both,identical +88982,30.75,-28.25,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105635.0,Umzinyathi,30.75,-28.25,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105635.0,Umzinyathi,both,identical +88983,31.25,-28.25,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105637.0,Zululand,31.25,-28.25,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105637.0,Zululand,both,identical +88984,31.75,-28.25,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105637.0,Zululand,31.75,-28.25,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105637.0,Zululand,both,identical +88985,32.25,-28.25,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105634.0,Umkhanyakude,32.25,-28.25,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105634.0,Umkhanyakude,both,identical +88986,32.75,-28.25,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105634.0,Umkhanyakude,32.75,-28.25,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105634.0,Umkhanyakude,both,identical +89671,15.25,-27.75,NAM,1497.0,Karas,149.0,Namibia,104477.0,Naminus (Luderitz),15.25,-27.75,NAM,1497.0,Karas,149.0,Namibia,104477.0,Naminus (Luderitz),both,identical +89672,15.75,-27.75,NAM,1497.0,Karas,149.0,Namibia,104477.0,Naminus (Luderitz),15.75,-27.75,NAM,1497.0,Karas,149.0,Namibia,104477.0,Naminus (Luderitz),both,identical +89673,16.25,-27.75,NAM,1497.0,Karas,149.0,Namibia,104477.0,Naminus (Luderitz),16.25,-27.75,NAM,1497.0,Karas,149.0,Namibia,104477.0,Naminus (Luderitz),both,identical +89674,16.75,-27.75,NAM,1497.0,Karas,149.0,Namibia,104477.0,Naminus (Luderitz),16.75,-27.75,NAM,1497.0,Karas,149.0,Namibia,104477.0,Naminus (Luderitz),both,identical +89675,17.25,-27.75,NAM,1497.0,Karas,149.0,Namibia,104473.0,Berseba,17.25,-27.75,NAM,1497.0,Karas,149.0,Namibia,104473.0,Berseba,both,identical +89676,17.75,-27.75,NAM,1497.0,Karas,149.0,Namibia,104474.0,Karasburg,17.75,-27.75,NAM,1497.0,Karas,149.0,Namibia,104474.0,Karasburg,both,identical +89677,18.25,-27.75,NAM,1497.0,Karas,149.0,Namibia,104474.0,Karasburg,18.25,-27.75,NAM,1497.0,Karas,149.0,Namibia,104474.0,Karasburg,both,identical +89678,18.75,-27.75,NAM,1497.0,Karas,149.0,Namibia,104474.0,Karasburg,18.75,-27.75,NAM,1497.0,Karas,149.0,Namibia,104474.0,Karasburg,both,identical +89679,19.25,-27.75,NAM,1497.0,Karas,149.0,Namibia,104474.0,Karasburg,19.25,-27.75,NAM,1497.0,Karas,149.0,Namibia,104474.0,Karasburg,both,identical +89680,19.75,-27.75,NAM,1497.0,Karas,149.0,Namibia,104474.0,Karasburg,19.75,-27.75,NAM,1497.0,Karas,149.0,Namibia,104474.0,Karasburg,both,identical +89681,20.25,-27.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,20.25,-27.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,both,identical +89682,20.75,-27.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,20.75,-27.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,both,identical +89683,21.25,-27.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,21.25,-27.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,both,identical +89684,21.75,-27.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,21.75,-27.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,both,identical +89685,22.25,-27.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,22.25,-27.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,both,identical +89686,22.75,-27.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,22.75,-27.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,both,identical +89687,23.25,-27.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105651.0,John Taolo Gaetsewe,23.25,-27.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105651.0,John Taolo Gaetsewe,both,identical +89688,23.75,-27.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105651.0,John Taolo Gaetsewe,23.75,-27.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105651.0,John Taolo Gaetsewe,both,identical +89689,24.25,-27.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105650.0,Frances Baard,24.25,-27.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105650.0,Frances Baard,both,identical +89690,24.75,-27.75,ZAF,1613.0,North West,159.0,South Africa,105648.0,Dr Ruth Segomotsi Mompati,24.75,-27.75,ZAF,1613.0,North West,159.0,South Africa,105648.0,Dr Ruth Segomotsi Mompati,both,identical +89691,25.25,-27.75,ZAF,1613.0,North West,159.0,South Africa,105648.0,Dr Ruth Segomotsi Mompati,25.25,-27.75,ZAF,1613.0,North West,159.0,South Africa,105648.0,Dr Ruth Segomotsi Mompati,both,identical +89692,25.75,-27.75,ZAF,1608.0,Free State,159.0,South Africa,105618.0,Lejweleputswa,25.75,-27.75,ZAF,1608.0,Free State,159.0,South Africa,105618.0,Lejweleputswa,both,identical +89693,26.25,-27.75,ZAF,1608.0,Free State,159.0,South Africa,105618.0,Lejweleputswa,26.25,-27.75,ZAF,1608.0,Free State,159.0,South Africa,105618.0,Lejweleputswa,both,identical +89694,26.75,-27.75,ZAF,1608.0,Free State,159.0,South Africa,105618.0,Lejweleputswa,26.75,-27.75,ZAF,1608.0,Free State,159.0,South Africa,105618.0,Lejweleputswa,both,identical +89695,27.25,-27.75,ZAF,1608.0,Free State,159.0,South Africa,105617.0,Fezile Dabi,27.25,-27.75,ZAF,1608.0,Free State,159.0,South Africa,105617.0,Fezile Dabi,both,identical +89696,27.75,-27.75,ZAF,1608.0,Free State,159.0,South Africa,105617.0,Fezile Dabi,27.75,-27.75,ZAF,1608.0,Free State,159.0,South Africa,105617.0,Fezile Dabi,both,identical +89697,28.25,-27.75,ZAF,1608.0,Free State,159.0,South Africa,105620.0,Thabo Mofutsanyane,28.25,-27.75,ZAF,1608.0,Free State,159.0,South Africa,105620.0,Thabo Mofutsanyane,both,identical +89698,28.75,-27.75,ZAF,1608.0,Free State,159.0,South Africa,105620.0,Thabo Mofutsanyane,28.75,-27.75,ZAF,1608.0,Free State,159.0,South Africa,105620.0,Thabo Mofutsanyane,both,identical +89699,29.25,-27.75,ZAF,1608.0,Free State,159.0,South Africa,105620.0,Thabo Mofutsanyane,29.25,-27.75,ZAF,1608.0,Free State,159.0,South Africa,105620.0,Thabo Mofutsanyane,both,identical +89700,29.75,-27.75,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105627.0,Amajuba,29.75,-27.75,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105627.0,Amajuba,both,identical +89701,30.25,-27.75,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105627.0,Amajuba,30.25,-27.75,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105627.0,Amajuba,both,identical +89702,30.75,-27.75,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105637.0,Zululand,30.75,-27.75,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105637.0,Zululand,both,identical +89703,31.25,-27.75,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105637.0,Zululand,31.25,-27.75,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105637.0,Zululand,both,identical +89704,31.75,-27.75,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105637.0,Zululand,31.75,-27.75,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105637.0,Zululand,both,identical +89705,32.25,-27.75,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105634.0,Umkhanyakude,32.25,-27.75,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105634.0,Umkhanyakude,both,identical +89706,32.75,-27.75,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105634.0,Umkhanyakude,32.75,-27.75,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105634.0,Umkhanyakude,both,identical +90391,15.25,-27.25,NAM,1497.0,Karas,149.0,Namibia,104477.0,Naminus (Luderitz),15.25,-27.25,NAM,1497.0,Karas,149.0,Namibia,104477.0,Naminus (Luderitz),both,identical +90392,15.75,-27.25,NAM,1497.0,Karas,149.0,Namibia,104477.0,Naminus (Luderitz),15.75,-27.25,NAM,1497.0,Karas,149.0,Namibia,104477.0,Naminus (Luderitz),both,identical +90393,16.25,-27.25,NAM,1497.0,Karas,149.0,Namibia,104477.0,Naminus (Luderitz),16.25,-27.25,NAM,1497.0,Karas,149.0,Namibia,104477.0,Naminus (Luderitz),both,identical +90394,16.75,-27.25,NAM,1497.0,Karas,149.0,Namibia,104477.0,Naminus (Luderitz),16.75,-27.25,NAM,1497.0,Karas,149.0,Namibia,104477.0,Naminus (Luderitz),both,identical +90395,17.25,-27.25,NAM,1497.0,Karas,149.0,Namibia,104473.0,Berseba,17.25,-27.25,NAM,1497.0,Karas,149.0,Namibia,104473.0,Berseba,both,identical +90396,17.75,-27.25,NAM,1497.0,Karas,149.0,Namibia,104475.0,Keetmanshoop Rural,17.75,-27.25,NAM,1497.0,Karas,149.0,Namibia,104475.0,Keetmanshoop Rural,both,identical +90397,18.25,-27.25,NAM,1497.0,Karas,149.0,Namibia,104475.0,Keetmanshoop Rural,18.25,-27.25,NAM,1497.0,Karas,149.0,Namibia,104475.0,Keetmanshoop Rural,both,identical +90398,18.75,-27.25,NAM,1497.0,Karas,149.0,Namibia,104475.0,Keetmanshoop Rural,18.75,-27.25,NAM,1497.0,Karas,149.0,Namibia,104475.0,Keetmanshoop Rural,both,identical +90399,19.25,-27.25,NAM,1497.0,Karas,149.0,Namibia,104475.0,Keetmanshoop Rural,19.25,-27.25,NAM,1497.0,Karas,149.0,Namibia,104475.0,Keetmanshoop Rural,both,identical +90400,19.75,-27.25,NAM,1497.0,Karas,149.0,Namibia,104475.0,Keetmanshoop Rural,19.75,-27.25,NAM,1497.0,Karas,149.0,Namibia,104475.0,Keetmanshoop Rural,both,identical +90401,20.25,-27.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,20.25,-27.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,both,identical +90402,20.75,-27.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,20.75,-27.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,both,identical +90403,21.25,-27.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,21.25,-27.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,both,identical +90404,21.75,-27.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,21.75,-27.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,both,identical +90405,22.25,-27.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,22.25,-27.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,both,identical +90406,22.75,-27.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105651.0,John Taolo Gaetsewe,22.75,-27.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105651.0,John Taolo Gaetsewe,both,identical +90407,23.25,-27.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105651.0,John Taolo Gaetsewe,23.25,-27.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105651.0,John Taolo Gaetsewe,both,identical +90408,23.75,-27.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105651.0,John Taolo Gaetsewe,23.75,-27.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105651.0,John Taolo Gaetsewe,both,identical +90409,24.25,-27.25,ZAF,1613.0,North West,159.0,South Africa,105648.0,Dr Ruth Segomotsi Mompati,24.25,-27.25,ZAF,1613.0,North West,159.0,South Africa,105648.0,Dr Ruth Segomotsi Mompati,both,identical +90410,24.75,-27.25,ZAF,1613.0,North West,159.0,South Africa,105648.0,Dr Ruth Segomotsi Mompati,24.75,-27.25,ZAF,1613.0,North West,159.0,South Africa,105648.0,Dr Ruth Segomotsi Mompati,both,identical +90411,25.25,-27.25,ZAF,1613.0,North West,159.0,South Africa,105648.0,Dr Ruth Segomotsi Mompati,25.25,-27.25,ZAF,1613.0,North West,159.0,South Africa,105648.0,Dr Ruth Segomotsi Mompati,both,identical +90412,25.75,-27.25,ZAF,1613.0,North West,159.0,South Africa,105647.0,Dr Kenneth Kaunda,25.75,-27.25,ZAF,1613.0,North West,159.0,South Africa,105647.0,Dr Kenneth Kaunda,both,identical +90413,26.25,-27.25,ZAF,1613.0,North West,159.0,South Africa,105647.0,Dr Kenneth Kaunda,26.25,-27.25,ZAF,1613.0,North West,159.0,South Africa,105647.0,Dr Kenneth Kaunda,both,identical +90414,26.75,-27.25,ZAF,1608.0,Free State,159.0,South Africa,105617.0,Fezile Dabi,26.75,-27.25,ZAF,1608.0,Free State,159.0,South Africa,105617.0,Fezile Dabi,both,identical +90415,27.25,-27.25,ZAF,1608.0,Free State,159.0,South Africa,105617.0,Fezile Dabi,27.25,-27.25,ZAF,1608.0,Free State,159.0,South Africa,105617.0,Fezile Dabi,both,identical +90416,27.75,-27.25,ZAF,1608.0,Free State,159.0,South Africa,105617.0,Fezile Dabi,27.75,-27.25,ZAF,1608.0,Free State,159.0,South Africa,105617.0,Fezile Dabi,both,identical +90417,28.25,-27.25,ZAF,1608.0,Free State,159.0,South Africa,105617.0,Fezile Dabi,28.25,-27.25,ZAF,1608.0,Free State,159.0,South Africa,105617.0,Fezile Dabi,both,identical +90418,28.75,-27.25,ZAF,1608.0,Free State,159.0,South Africa,105617.0,Fezile Dabi,28.75,-27.25,ZAF,1608.0,Free State,159.0,South Africa,105617.0,Fezile Dabi,both,identical +90419,29.25,-27.25,ZAF,1608.0,Free State,159.0,South Africa,105620.0,Thabo Mofutsanyane,29.25,-27.25,ZAF,1608.0,Free State,159.0,South Africa,105620.0,Thabo Mofutsanyane,both,identical +90420,29.75,-27.25,ZAF,1612.0,Mpumalanga,159.0,South Africa,105644.0,Gert Sibande,29.75,-27.25,ZAF,1612.0,Mpumalanga,159.0,South Africa,105644.0,Gert Sibande,both,identical +90421,30.25,-27.25,ZAF,1612.0,Mpumalanga,159.0,South Africa,105644.0,Gert Sibande,30.25,-27.25,ZAF,1612.0,Mpumalanga,159.0,South Africa,105644.0,Gert Sibande,both,identical +90422,30.75,-27.25,ZAF,1612.0,Mpumalanga,159.0,South Africa,105644.0,Gert Sibande,30.75,-27.25,ZAF,1612.0,Mpumalanga,159.0,South Africa,105644.0,Gert Sibande,both,identical +90423,31.25,-27.25,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105637.0,Zululand,31.25,-27.25,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105637.0,Zululand,both,identical +90424,31.75,-27.25,SWZ,1288.0,Shiselweni,123.0,Eswatini,103041.0,Somntongo,31.75,-27.25,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105637.0,Zululand,both,country_reassignment +90425,32.25,-27.25,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105634.0,Umkhanyakude,32.25,-27.25,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105634.0,Umkhanyakude,both,identical +90426,32.75,-27.25,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105634.0,Umkhanyakude,32.75,-27.25,ZAF,1610.0,Kwa-Zulu Natal,159.0,South Africa,105634.0,Umkhanyakude,both,identical +91111,15.25,-26.75,NAM,1497.0,Karas,149.0,Namibia,104477.0,Naminus (Luderitz),15.25,-26.75,NAM,1497.0,Karas,149.0,Namibia,104477.0,Naminus (Luderitz),both,identical +91112,15.75,-26.75,NAM,1497.0,Karas,149.0,Namibia,104477.0,Naminus (Luderitz),15.75,-26.75,NAM,1497.0,Karas,149.0,Namibia,104477.0,Naminus (Luderitz),both,identical +91113,16.25,-26.75,NAM,1497.0,Karas,149.0,Namibia,104477.0,Naminus (Luderitz),16.25,-26.75,NAM,1497.0,Karas,149.0,Namibia,104477.0,Naminus (Luderitz),both,identical +91114,16.75,-26.75,NAM,1497.0,Karas,149.0,Namibia,104473.0,Berseba,16.75,-26.75,NAM,1497.0,Karas,149.0,Namibia,104473.0,Berseba,both,identical +91115,17.25,-26.75,NAM,1497.0,Karas,149.0,Namibia,104473.0,Berseba,17.25,-26.75,NAM,1497.0,Karas,149.0,Namibia,104473.0,Berseba,both,identical +91116,17.75,-26.75,NAM,1497.0,Karas,149.0,Namibia,104475.0,Keetmanshoop Rural,17.75,-26.75,NAM,1497.0,Karas,149.0,Namibia,104475.0,Keetmanshoop Rural,both,identical +91117,18.25,-26.75,NAM,1497.0,Karas,149.0,Namibia,104475.0,Keetmanshoop Rural,18.25,-26.75,NAM,1497.0,Karas,149.0,Namibia,104475.0,Keetmanshoop Rural,both,identical +91118,18.75,-26.75,NAM,1497.0,Karas,149.0,Namibia,104475.0,Keetmanshoop Rural,18.75,-26.75,NAM,1497.0,Karas,149.0,Namibia,104475.0,Keetmanshoop Rural,both,identical +91119,19.25,-26.75,NAM,1497.0,Karas,149.0,Namibia,104475.0,Keetmanshoop Rural,19.25,-26.75,NAM,1497.0,Karas,149.0,Namibia,104475.0,Keetmanshoop Rural,both,identical +91120,19.75,-26.75,NAM,1497.0,Karas,149.0,Namibia,104475.0,Keetmanshoop Rural,19.75,-26.75,NAM,1497.0,Karas,149.0,Namibia,104475.0,Keetmanshoop Rural,both,identical +91121,20.25,-26.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,20.25,-26.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,both,identical +91122,20.75,-26.75,BWA,1089.0,Kgalagadi,106.0,Botswana,101803.0,Kgalagadi South,20.75,-26.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,both,country_reassignment +91123,21.25,-26.75,BWA,1089.0,Kgalagadi,106.0,Botswana,101803.0,Kgalagadi South,21.25,-26.75,BWA,1089.0,Kgalagadi,106.0,Botswana,101803.0,Kgalagadi South,both,identical +91124,21.75,-26.75,BWA,1089.0,Kgalagadi,106.0,Botswana,101803.0,Kgalagadi South,21.75,-26.75,BWA,1089.0,Kgalagadi,106.0,Botswana,101803.0,Kgalagadi South,both,identical +91125,22.25,-26.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105651.0,John Taolo Gaetsewe,22.25,-26.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105651.0,John Taolo Gaetsewe,both,identical +91126,22.75,-26.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105651.0,John Taolo Gaetsewe,22.75,-26.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105651.0,John Taolo Gaetsewe,both,identical +91127,23.25,-26.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105651.0,John Taolo Gaetsewe,23.25,-26.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105651.0,John Taolo Gaetsewe,both,identical +91128,23.75,-26.75,ZAF,1613.0,North West,159.0,South Africa,105648.0,Dr Ruth Segomotsi Mompati,23.75,-26.75,ZAF,1613.0,North West,159.0,South Africa,105648.0,Dr Ruth Segomotsi Mompati,both,identical +91129,24.25,-26.75,ZAF,1613.0,North West,159.0,South Africa,105648.0,Dr Ruth Segomotsi Mompati,24.25,-26.75,ZAF,1613.0,North West,159.0,South Africa,105648.0,Dr Ruth Segomotsi Mompati,both,identical +91130,24.75,-26.75,ZAF,1613.0,North West,159.0,South Africa,105648.0,Dr Ruth Segomotsi Mompati,24.75,-26.75,ZAF,1613.0,North West,159.0,South Africa,105648.0,Dr Ruth Segomotsi Mompati,both,identical +91131,25.25,-26.75,ZAF,1613.0,North West,159.0,South Africa,105648.0,Dr Ruth Segomotsi Mompati,25.25,-26.75,ZAF,1613.0,North West,159.0,South Africa,105648.0,Dr Ruth Segomotsi Mompati,both,identical +91132,25.75,-26.75,ZAF,1613.0,North West,159.0,South Africa,105649.0,Ngaka Modiri Molema,25.75,-26.75,ZAF,1613.0,North West,159.0,South Africa,105649.0,Ngaka Modiri Molema,both,identical +91133,26.25,-26.75,ZAF,1613.0,North West,159.0,South Africa,105647.0,Dr Kenneth Kaunda,26.25,-26.75,ZAF,1613.0,North West,159.0,South Africa,105647.0,Dr Kenneth Kaunda,both,identical +91134,26.75,-26.75,ZAF,1613.0,North West,159.0,South Africa,105647.0,Dr Kenneth Kaunda,26.75,-26.75,ZAF,1613.0,North West,159.0,South Africa,105647.0,Dr Kenneth Kaunda,both,identical +91135,27.25,-26.75,ZAF,1613.0,North West,159.0,South Africa,105647.0,Dr Kenneth Kaunda,27.25,-26.75,ZAF,1613.0,North West,159.0,South Africa,105647.0,Dr Kenneth Kaunda,both,identical +91136,27.75,-26.75,ZAF,1608.0,Free State,159.0,South Africa,105617.0,Fezile Dabi,27.75,-26.75,ZAF,1608.0,Free State,159.0,South Africa,105617.0,Fezile Dabi,both,identical +91137,28.25,-26.75,ZAF,1609.0,Gauteng,159.0,South Africa,105625.0,Sedibeng,28.25,-26.75,ZAF,1609.0,Gauteng,159.0,South Africa,105625.0,Sedibeng,both,identical +91138,28.75,-26.75,ZAF,1612.0,Mpumalanga,159.0,South Africa,105644.0,Gert Sibande,28.75,-26.75,ZAF,1612.0,Mpumalanga,159.0,South Africa,105644.0,Gert Sibande,both,identical +91139,29.25,-26.75,ZAF,1612.0,Mpumalanga,159.0,South Africa,105644.0,Gert Sibande,29.25,-26.75,ZAF,1612.0,Mpumalanga,159.0,South Africa,105644.0,Gert Sibande,both,identical +91140,29.75,-26.75,ZAF,1612.0,Mpumalanga,159.0,South Africa,105644.0,Gert Sibande,29.75,-26.75,ZAF,1612.0,Mpumalanga,159.0,South Africa,105644.0,Gert Sibande,both,identical +91141,30.25,-26.75,ZAF,1612.0,Mpumalanga,159.0,South Africa,105644.0,Gert Sibande,30.25,-26.75,ZAF,1612.0,Mpumalanga,159.0,South Africa,105644.0,Gert Sibande,both,identical +91142,30.75,-26.75,ZAF,1612.0,Mpumalanga,159.0,South Africa,105644.0,Gert Sibande,30.75,-26.75,ZAF,1612.0,Mpumalanga,159.0,South Africa,105644.0,Gert Sibande,both,identical +91143,31.25,-26.75,SWZ,1287.0,Manzini,123.0,Eswatini,103016.0,Mahlangatsha,31.25,-26.75,SWZ,1287.0,Manzini,123.0,Eswatini,103016.0,Mahlangatsha,both,identical +91144,31.75,-26.75,SWZ,1286.0,Lubombo,123.0,Eswatini,103007.0,Nkilongo,31.75,-26.75,SWZ,1286.0,Lubombo,123.0,Eswatini,103007.0,Nkilongo,both,identical +91145,32.25,-26.75,MOZ,1489.0,Maputo,148.0,Mozambique,104368.0,Matutuíne,32.25,-26.75,MOZ,1489.0,Maputo,148.0,Mozambique,104368.0,Matutuíne,both,identical +91146,32.75,-26.75,MOZ,1489.0,Maputo,148.0,Mozambique,104368.0,Matutuíne,32.75,-26.75,MOZ,1489.0,Maputo,148.0,Mozambique,104368.0,Matutuíne,both,identical +91830,14.75,-26.25,NAM,1497.0,Karas,149.0,Namibia,104477.0,Naminus (Luderitz),14.75,-26.25,NAM,1497.0,Karas,149.0,Namibia,104477.0,Naminus (Luderitz),both,identical +91831,15.25,-26.25,NAM,1497.0,Karas,149.0,Namibia,104477.0,Naminus (Luderitz),15.25,-26.25,NAM,1497.0,Karas,149.0,Namibia,104477.0,Naminus (Luderitz),both,identical +91832,15.75,-26.25,NAM,1497.0,Karas,149.0,Namibia,104477.0,Naminus (Luderitz),15.75,-26.25,NAM,1497.0,Karas,149.0,Namibia,104477.0,Naminus (Luderitz),both,identical +91833,16.25,-26.25,NAM,1497.0,Karas,149.0,Namibia,104477.0,Naminus (Luderitz),16.25,-26.25,NAM,1497.0,Karas,149.0,Namibia,104477.0,Naminus (Luderitz),both,identical +91834,16.75,-26.25,NAM,1497.0,Karas,149.0,Namibia,104473.0,Berseba,16.75,-26.25,NAM,1497.0,Karas,149.0,Namibia,104473.0,Berseba,both,identical +91835,17.25,-26.25,NAM,1497.0,Karas,149.0,Namibia,104473.0,Berseba,17.25,-26.25,NAM,1497.0,Karas,149.0,Namibia,104473.0,Berseba,both,identical +91836,17.75,-26.25,NAM,1497.0,Karas,149.0,Namibia,104473.0,Berseba,17.75,-26.25,NAM,1497.0,Karas,149.0,Namibia,104473.0,Berseba,both,identical +91837,18.25,-26.25,NAM,1497.0,Karas,149.0,Namibia,104473.0,Berseba,18.25,-26.25,NAM,1497.0,Karas,149.0,Namibia,104473.0,Berseba,both,identical +91838,18.75,-26.25,NAM,1497.0,Karas,149.0,Namibia,104475.0,Keetmanshoop Rural,18.75,-26.25,NAM,1497.0,Karas,149.0,Namibia,104475.0,Keetmanshoop Rural,both,identical +91839,19.25,-26.25,NAM,1497.0,Karas,149.0,Namibia,104475.0,Keetmanshoop Rural,19.25,-26.25,NAM,1497.0,Karas,149.0,Namibia,104475.0,Keetmanshoop Rural,both,identical +91840,19.75,-26.25,NAM,1497.0,Karas,149.0,Namibia,104475.0,Keetmanshoop Rural,19.75,-26.25,NAM,1497.0,Karas,149.0,Namibia,104475.0,Keetmanshoop Rural,both,identical +91841,20.25,-26.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,20.25,-26.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,both,identical +91842,20.75,-26.25,BWA,1089.0,Kgalagadi,106.0,Botswana,101803.0,Kgalagadi South,20.75,-26.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,both,country_reassignment +91843,21.25,-26.25,BWA,1089.0,Kgalagadi,106.0,Botswana,101803.0,Kgalagadi South,21.25,-26.25,BWA,1089.0,Kgalagadi,106.0,Botswana,101803.0,Kgalagadi South,both,identical +91844,21.75,-26.25,BWA,1089.0,Kgalagadi,106.0,Botswana,101803.0,Kgalagadi South,21.75,-26.25,BWA,1089.0,Kgalagadi,106.0,Botswana,101803.0,Kgalagadi South,both,identical +91845,22.25,-26.25,BWA,1089.0,Kgalagadi,106.0,Botswana,101803.0,Kgalagadi South,22.25,-26.25,BWA,1089.0,Kgalagadi,106.0,Botswana,101803.0,Kgalagadi South,both,identical +91846,22.75,-26.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105651.0,John Taolo Gaetsewe,22.75,-26.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105651.0,John Taolo Gaetsewe,both,identical +91847,23.25,-26.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105651.0,John Taolo Gaetsewe,23.25,-26.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105651.0,John Taolo Gaetsewe,both,identical +91848,23.75,-26.25,ZAF,1613.0,North West,159.0,South Africa,105648.0,Dr Ruth Segomotsi Mompati,23.75,-26.25,ZAF,1613.0,North West,159.0,South Africa,105648.0,Dr Ruth Segomotsi Mompati,both,identical +91849,24.25,-26.25,ZAF,1613.0,North West,159.0,South Africa,105648.0,Dr Ruth Segomotsi Mompati,24.25,-26.25,ZAF,1613.0,North West,159.0,South Africa,105648.0,Dr Ruth Segomotsi Mompati,both,identical +91850,24.75,-26.25,ZAF,1613.0,North West,159.0,South Africa,105648.0,Dr Ruth Segomotsi Mompati,24.75,-26.25,ZAF,1613.0,North West,159.0,South Africa,105648.0,Dr Ruth Segomotsi Mompati,both,identical +91851,25.25,-26.25,ZAF,1613.0,North West,159.0,South Africa,105649.0,Ngaka Modiri Molema,25.25,-26.25,ZAF,1613.0,North West,159.0,South Africa,105649.0,Ngaka Modiri Molema,both,identical +91852,25.75,-26.25,ZAF,1613.0,North West,159.0,South Africa,105649.0,Ngaka Modiri Molema,25.75,-26.25,ZAF,1613.0,North West,159.0,South Africa,105649.0,Ngaka Modiri Molema,both,identical +91853,26.25,-26.25,ZAF,1613.0,North West,159.0,South Africa,105649.0,Ngaka Modiri Molema,26.25,-26.25,ZAF,1613.0,North West,159.0,South Africa,105649.0,Ngaka Modiri Molema,both,identical +91854,26.75,-26.25,ZAF,1613.0,North West,159.0,South Africa,105647.0,Dr Kenneth Kaunda,26.75,-26.25,ZAF,1613.0,North West,159.0,South Africa,105647.0,Dr Kenneth Kaunda,both,identical +91855,27.25,-26.25,ZAF,1613.0,North West,159.0,South Africa,105647.0,Dr Kenneth Kaunda,27.25,-26.25,ZAF,1613.0,North West,159.0,South Africa,105647.0,Dr Kenneth Kaunda,both,identical +91856,27.75,-26.25,ZAF,1609.0,Gauteng,159.0,South Africa,105626.0,West Rand,27.75,-26.25,ZAF,1609.0,Gauteng,159.0,South Africa,105626.0,West Rand,both,identical +91857,28.25,-26.25,ZAF,1609.0,Gauteng,159.0,South Africa,105624.0,Ekurhuleni,28.25,-26.25,ZAF,1609.0,Gauteng,159.0,South Africa,105624.0,Ekurhuleni,both,identical +91858,28.75,-26.25,ZAF,1612.0,Mpumalanga,159.0,South Africa,105645.0,Nkangala,28.75,-26.25,ZAF,1612.0,Mpumalanga,159.0,South Africa,105645.0,Nkangala,both,identical +91859,29.25,-26.25,ZAF,1612.0,Mpumalanga,159.0,South Africa,105645.0,Nkangala,29.25,-26.25,ZAF,1612.0,Mpumalanga,159.0,South Africa,105645.0,Nkangala,both,identical +91860,29.75,-26.25,ZAF,1612.0,Mpumalanga,159.0,South Africa,105644.0,Gert Sibande,29.75,-26.25,ZAF,1612.0,Mpumalanga,159.0,South Africa,105644.0,Gert Sibande,both,identical +91861,30.25,-26.25,ZAF,1612.0,Mpumalanga,159.0,South Africa,105644.0,Gert Sibande,30.25,-26.25,ZAF,1612.0,Mpumalanga,159.0,South Africa,105644.0,Gert Sibande,both,identical +91862,30.75,-26.25,ZAF,1612.0,Mpumalanga,159.0,South Africa,105644.0,Gert Sibande,30.75,-26.25,ZAF,1612.0,Mpumalanga,159.0,South Africa,105644.0,Gert Sibande,both,identical +91863,31.25,-26.25,SWZ,1285.0,Hhohho,123.0,Eswatini,102994.0,Nkhaba,31.25,-26.25,SWZ,1285.0,Hhohho,123.0,Eswatini,102994.0,Nkhaba,both,identical +91864,31.75,-26.25,SWZ,1286.0,Lubombo,123.0,Eswatini,102999.0,Dvokodvweni,31.75,-26.25,SWZ,1286.0,Lubombo,123.0,Eswatini,102999.0,Dvokodvweni,both,identical +91865,32.25,-26.25,MOZ,1489.0,Maputo,148.0,Mozambique,104370.0,Namaacha,32.25,-26.25,MOZ,1489.0,Maputo,148.0,Mozambique,104370.0,Namaacha,both,identical +91866,32.75,-26.25,MOZ,1489.0,Maputo,148.0,Mozambique,104368.0,Matutuíne,32.75,-26.25,MOZ,1489.0,Maputo,148.0,Mozambique,104368.0,Matutuíne,both,identical +92550,14.75,-25.75,NAM,1497.0,Karas,149.0,Namibia,104477.0,Naminus (Luderitz),14.75,-25.75,NAM,1497.0,Karas,149.0,Namibia,104477.0,Naminus (Luderitz),both,identical +92551,15.25,-25.75,NAM,1497.0,Karas,149.0,Namibia,104477.0,Naminus (Luderitz),15.25,-25.75,NAM,1497.0,Karas,149.0,Namibia,104477.0,Naminus (Luderitz),both,identical +92552,15.75,-25.75,NAM,1497.0,Karas,149.0,Namibia,104477.0,Naminus (Luderitz),15.75,-25.75,NAM,1497.0,Karas,149.0,Namibia,104477.0,Naminus (Luderitz),both,identical +92553,16.25,-25.75,NAM,1497.0,Karas,149.0,Namibia,104477.0,Naminus (Luderitz),16.25,-25.75,NAM,1497.0,Karas,149.0,Namibia,104477.0,Naminus (Luderitz),both,identical +92554,16.75,-25.75,NAM,1497.0,Karas,149.0,Namibia,104473.0,Berseba,16.75,-25.75,NAM,1497.0,Karas,149.0,Namibia,104473.0,Berseba,both,identical +92555,17.25,-25.75,NAM,1497.0,Karas,149.0,Namibia,104473.0,Berseba,17.25,-25.75,NAM,1497.0,Karas,149.0,Namibia,104473.0,Berseba,both,identical +92556,17.75,-25.75,NAM,1497.0,Karas,149.0,Namibia,104473.0,Berseba,17.75,-25.75,NAM,1497.0,Karas,149.0,Namibia,104473.0,Berseba,both,identical +92557,18.25,-25.75,NAM,1497.0,Karas,149.0,Namibia,104473.0,Berseba,18.25,-25.75,NAM,1497.0,Karas,149.0,Namibia,104473.0,Berseba,both,identical +92558,18.75,-25.75,NAM,1497.0,Karas,149.0,Namibia,104475.0,Keetmanshoop Rural,18.75,-25.75,NAM,1497.0,Karas,149.0,Namibia,104475.0,Keetmanshoop Rural,both,identical +92559,19.25,-25.75,NAM,1497.0,Karas,149.0,Namibia,104475.0,Keetmanshoop Rural,19.25,-25.75,NAM,1497.0,Karas,149.0,Namibia,104475.0,Keetmanshoop Rural,both,identical +92560,19.75,-25.75,NAM,1497.0,Karas,149.0,Namibia,104475.0,Keetmanshoop Rural,19.75,-25.75,NAM,1497.0,Karas,149.0,Namibia,104475.0,Keetmanshoop Rural,both,identical +92561,20.25,-25.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,20.25,-25.75,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,both,identical +92562,20.75,-25.75,BWA,1089.0,Kgalagadi,106.0,Botswana,101803.0,Kgalagadi South,20.75,-25.75,BWA,1089.0,Kgalagadi,106.0,Botswana,101803.0,Kgalagadi South,both,identical +92563,21.25,-25.75,BWA,1089.0,Kgalagadi,106.0,Botswana,101803.0,Kgalagadi South,21.25,-25.75,BWA,1089.0,Kgalagadi,106.0,Botswana,101803.0,Kgalagadi South,both,identical +92564,21.75,-25.75,BWA,1089.0,Kgalagadi,106.0,Botswana,101803.0,Kgalagadi South,21.75,-25.75,BWA,1089.0,Kgalagadi,106.0,Botswana,101803.0,Kgalagadi South,both,identical +92565,22.25,-25.75,BWA,1089.0,Kgalagadi,106.0,Botswana,101803.0,Kgalagadi South,22.25,-25.75,BWA,1089.0,Kgalagadi,106.0,Botswana,101803.0,Kgalagadi South,both,identical +92566,22.75,-25.75,BWA,1089.0,Kgalagadi,106.0,Botswana,101803.0,Kgalagadi South,22.75,-25.75,BWA,1089.0,Kgalagadi,106.0,Botswana,101803.0,Kgalagadi South,both,identical +92567,23.25,-25.75,ZAF,1613.0,North West,159.0,South Africa,105648.0,Dr Ruth Segomotsi Mompati,23.25,-25.75,ZAF,1613.0,North West,159.0,South Africa,105648.0,Dr Ruth Segomotsi Mompati,both,identical +92568,23.75,-25.75,ZAF,1613.0,North West,159.0,South Africa,105648.0,Dr Ruth Segomotsi Mompati,23.75,-25.75,ZAF,1613.0,North West,159.0,South Africa,105648.0,Dr Ruth Segomotsi Mompati,both,identical +92569,24.25,-25.75,ZAF,1613.0,North West,159.0,South Africa,105648.0,Dr Ruth Segomotsi Mompati,24.25,-25.75,ZAF,1613.0,North West,159.0,South Africa,105648.0,Dr Ruth Segomotsi Mompati,both,identical +92570,24.75,-25.75,BWA,1098.0,Southern,106.0,Botswana,101815.0,Barolong,24.75,-25.75,BWA,1098.0,Southern,106.0,Botswana,101815.0,Barolong,both,identical +92571,25.25,-25.75,ZAF,1613.0,North West,159.0,South Africa,105649.0,Ngaka Modiri Molema,25.25,-25.75,ZAF,1613.0,North West,159.0,South Africa,105649.0,Ngaka Modiri Molema,both,identical +92572,25.75,-25.75,ZAF,1613.0,North West,159.0,South Africa,105649.0,Ngaka Modiri Molema,25.75,-25.75,ZAF,1613.0,North West,159.0,South Africa,105649.0,Ngaka Modiri Molema,both,identical +92573,26.25,-25.75,ZAF,1613.0,North West,159.0,South Africa,105649.0,Ngaka Modiri Molema,26.25,-25.75,ZAF,1613.0,North West,159.0,South Africa,105649.0,Ngaka Modiri Molema,both,identical +92574,26.75,-25.75,ZAF,1613.0,North West,159.0,South Africa,105646.0,Bojanala,26.75,-25.75,ZAF,1613.0,North West,159.0,South Africa,105646.0,Bojanala,both,identical +92575,27.25,-25.75,ZAF,1613.0,North West,159.0,South Africa,105646.0,Bojanala,27.25,-25.75,ZAF,1613.0,North West,159.0,South Africa,105646.0,Bojanala,both,identical +92576,27.75,-25.75,ZAF,1613.0,North West,159.0,South Africa,105646.0,Bojanala,27.75,-25.75,ZAF,1613.0,North West,159.0,South Africa,105646.0,Bojanala,both,identical +92577,28.25,-25.75,ZAF,1609.0,Gauteng,159.0,South Africa,105623.0,City Of Tshwane,28.25,-25.75,ZAF,1609.0,Gauteng,159.0,South Africa,105623.0,City Of Tshwane,both,identical +92578,28.75,-25.75,ZAF,1609.0,Gauteng,159.0,South Africa,105623.0,City Of Tshwane,28.75,-25.75,ZAF,1609.0,Gauteng,159.0,South Africa,105623.0,City Of Tshwane,both,identical +92579,29.25,-25.75,ZAF,1612.0,Mpumalanga,159.0,South Africa,105645.0,Nkangala,29.25,-25.75,ZAF,1612.0,Mpumalanga,159.0,South Africa,105645.0,Nkangala,both,identical +92580,29.75,-25.75,ZAF,1612.0,Mpumalanga,159.0,South Africa,105645.0,Nkangala,29.75,-25.75,ZAF,1612.0,Mpumalanga,159.0,South Africa,105645.0,Nkangala,both,identical +92581,30.25,-25.75,ZAF,1612.0,Mpumalanga,159.0,South Africa,105645.0,Nkangala,30.25,-25.75,ZAF,1612.0,Mpumalanga,159.0,South Africa,105645.0,Nkangala,both,identical +92582,30.75,-25.75,ZAF,1612.0,Mpumalanga,159.0,South Africa,105643.0,Ehlanzeni,30.75,-25.75,ZAF,1612.0,Mpumalanga,159.0,South Africa,105643.0,Ehlanzeni,both,identical +92583,31.25,-25.75,ZAF,1612.0,Mpumalanga,159.0,South Africa,105643.0,Ehlanzeni,31.25,-25.75,ZAF,1612.0,Mpumalanga,159.0,South Africa,105643.0,Ehlanzeni,both,identical +92584,31.75,-25.75,ZAF,1612.0,Mpumalanga,159.0,South Africa,105643.0,Ehlanzeni,31.75,-25.75,ZAF,1612.0,Mpumalanga,159.0,South Africa,105643.0,Ehlanzeni,both,identical +92585,32.25,-25.75,MOZ,1489.0,Maputo,148.0,Mozambique,104369.0,Moamba,32.25,-25.75,MOZ,1489.0,Maputo,148.0,Mozambique,104369.0,Moamba,both,identical +92586,32.75,-25.75,MOZ,1489.0,Maputo,148.0,Mozambique,104366.0,Marracuene,32.75,-25.75,MOZ,1489.0,Maputo,148.0,Mozambique,104366.0,Marracuene,both,identical +92611,45.25,-25.75,MDG,1433.0,Toliara,141.0,Madagascar,104073.0,Androy,45.25,-25.75,MDG,1433.0,Toliara,141.0,Madagascar,104073.0,Androy,both,identical +92612,45.75,-25.75,MDG,1433.0,Toliara,141.0,Madagascar,104073.0,Androy,45.75,-25.75,MDG,1433.0,Toliara,141.0,Madagascar,104073.0,Androy,both,identical +93270,14.75,-25.25,NAM,1497.0,Karas,149.0,Namibia,104477.0,Naminus (Luderitz),14.75,-25.25,NAM,1497.0,Karas,149.0,Namibia,104477.0,Naminus (Luderitz),both,identical +93271,15.25,-25.25,NAM,1497.0,Karas,149.0,Namibia,104477.0,Naminus (Luderitz),15.25,-25.25,NAM,1497.0,Karas,149.0,Namibia,104477.0,Naminus (Luderitz),both,identical +93272,15.75,-25.25,NAM,1497.0,Karas,149.0,Namibia,104477.0,Naminus (Luderitz),15.75,-25.25,NAM,1497.0,Karas,149.0,Namibia,104477.0,Naminus (Luderitz),both,identical +93273,16.25,-25.25,NAM,1496.0,Hardap,149.0,Namibia,104467.0,Gibeon,16.25,-25.25,NAM,1496.0,Hardap,149.0,Namibia,104467.0,Gibeon,both,identical +93274,16.75,-25.25,NAM,1496.0,Hardap,149.0,Namibia,104467.0,Gibeon,16.75,-25.25,NAM,1496.0,Hardap,149.0,Namibia,104467.0,Gibeon,both,identical +93275,17.25,-25.25,NAM,1496.0,Hardap,149.0,Namibia,104467.0,Gibeon,17.25,-25.25,NAM,1496.0,Hardap,149.0,Namibia,104467.0,Gibeon,both,identical +93276,17.75,-25.25,NAM,1496.0,Hardap,149.0,Namibia,104467.0,Gibeon,17.75,-25.25,NAM,1496.0,Hardap,149.0,Namibia,104467.0,Gibeon,both,identical +93277,18.25,-25.25,NAM,1496.0,Hardap,149.0,Namibia,104467.0,Gibeon,18.25,-25.25,NAM,1496.0,Hardap,149.0,Namibia,104467.0,Gibeon,both,identical +93278,18.75,-25.25,NAM,1496.0,Hardap,149.0,Namibia,104468.0,Mariental Rural,18.75,-25.25,NAM,1496.0,Hardap,149.0,Namibia,104468.0,Mariental Rural,both,identical +93279,19.25,-25.25,NAM,1496.0,Hardap,149.0,Namibia,104468.0,Mariental Rural,19.25,-25.25,NAM,1496.0,Hardap,149.0,Namibia,104468.0,Mariental Rural,both,identical +93280,19.75,-25.25,NAM,1496.0,Hardap,149.0,Namibia,104468.0,Mariental Rural,19.75,-25.25,NAM,1496.0,Hardap,149.0,Namibia,104468.0,Mariental Rural,both,identical +93281,20.25,-25.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,20.25,-25.25,ZAF,1614.0,Northern Cape,159.0,South Africa,105654.0,Z F Mgcawu,both,identical +93282,20.75,-25.25,BWA,1089.0,Kgalagadi,106.0,Botswana,101803.0,Kgalagadi South,20.75,-25.25,BWA,1089.0,Kgalagadi,106.0,Botswana,101803.0,Kgalagadi South,both,identical +93283,21.25,-25.25,BWA,1089.0,Kgalagadi,106.0,Botswana,101803.0,Kgalagadi South,21.25,-25.25,BWA,1089.0,Kgalagadi,106.0,Botswana,101803.0,Kgalagadi South,both,identical +93284,21.75,-25.25,BWA,1089.0,Kgalagadi,106.0,Botswana,101803.0,Kgalagadi South,21.75,-25.25,BWA,1089.0,Kgalagadi,106.0,Botswana,101803.0,Kgalagadi South,both,identical +93285,22.25,-25.25,BWA,1089.0,Kgalagadi,106.0,Botswana,101803.0,Kgalagadi South,22.25,-25.25,BWA,1089.0,Kgalagadi,106.0,Botswana,101803.0,Kgalagadi South,both,identical +93286,22.75,-25.25,BWA,1089.0,Kgalagadi,106.0,Botswana,101803.0,Kgalagadi South,22.75,-25.25,BWA,1089.0,Kgalagadi,106.0,Botswana,101803.0,Kgalagadi South,both,identical +93287,23.25,-25.25,BWA,1089.0,Kgalagadi,106.0,Botswana,101803.0,Kgalagadi South,23.25,-25.25,BWA,1089.0,Kgalagadi,106.0,Botswana,101803.0,Kgalagadi South,both,identical +93288,23.75,-25.25,BWA,1089.0,Kgalagadi,106.0,Botswana,101803.0,Kgalagadi South,23.75,-25.25,BWA,1089.0,Kgalagadi,106.0,Botswana,101803.0,Kgalagadi South,both,identical +93289,24.25,-25.25,BWA,1089.0,Kgalagadi,106.0,Botswana,101803.0,Kgalagadi South,24.25,-25.25,BWA,1089.0,Kgalagadi,106.0,Botswana,101803.0,Kgalagadi South,both,identical +93290,24.75,-25.25,BWA,1098.0,Southern,106.0,Botswana,101817.0,Southern,24.75,-25.25,BWA,1098.0,Southern,106.0,Botswana,101817.0,Southern,both,identical +93291,25.25,-25.25,BWA,1098.0,Southern,106.0,Botswana,101817.0,Southern,25.25,-25.25,BWA,1098.0,Southern,106.0,Botswana,101817.0,Southern,both,identical +93292,25.75,-25.25,ZAF,1613.0,North West,159.0,South Africa,105649.0,Ngaka Modiri Molema,25.75,-25.25,ZAF,1613.0,North West,159.0,South Africa,105649.0,Ngaka Modiri Molema,both,identical +93293,26.25,-25.25,ZAF,1613.0,North West,159.0,South Africa,105649.0,Ngaka Modiri Molema,26.25,-25.25,ZAF,1613.0,North West,159.0,South Africa,105649.0,Ngaka Modiri Molema,both,identical +93294,26.75,-25.25,ZAF,1613.0,North West,159.0,South Africa,105646.0,Bojanala,26.75,-25.25,ZAF,1613.0,North West,159.0,South Africa,105646.0,Bojanala,both,identical +93295,27.25,-25.25,ZAF,1613.0,North West,159.0,South Africa,105646.0,Bojanala,27.25,-25.25,ZAF,1613.0,North West,159.0,South Africa,105646.0,Bojanala,both,identical +93296,27.75,-25.25,ZAF,1613.0,North West,159.0,South Africa,105646.0,Bojanala,27.75,-25.25,ZAF,1613.0,North West,159.0,South Africa,105646.0,Bojanala,both,identical +93297,28.25,-25.25,ZAF,1611.0,Limpopo,159.0,South Africa,105642.0,Waterberg,28.25,-25.25,ZAF,1611.0,Limpopo,159.0,South Africa,105642.0,Waterberg,both,identical +93298,28.75,-25.25,ZAF,1612.0,Mpumalanga,159.0,South Africa,105645.0,Nkangala,28.75,-25.25,ZAF,1612.0,Mpumalanga,159.0,South Africa,105645.0,Nkangala,both,identical +93299,29.25,-25.25,ZAF,1611.0,Limpopo,159.0,South Africa,105640.0,Sekhukhune,29.25,-25.25,ZAF,1611.0,Limpopo,159.0,South Africa,105640.0,Sekhukhune,both,identical +93300,29.75,-25.25,ZAF,1611.0,Limpopo,159.0,South Africa,105640.0,Sekhukhune,29.75,-25.25,ZAF,1611.0,Limpopo,159.0,South Africa,105640.0,Sekhukhune,both,identical +93301,30.25,-25.25,ZAF,1612.0,Mpumalanga,159.0,South Africa,105643.0,Ehlanzeni,30.25,-25.25,ZAF,1612.0,Mpumalanga,159.0,South Africa,105643.0,Ehlanzeni,both,identical +93302,30.75,-25.25,ZAF,1612.0,Mpumalanga,159.0,South Africa,105643.0,Ehlanzeni,30.75,-25.25,ZAF,1612.0,Mpumalanga,159.0,South Africa,105643.0,Ehlanzeni,both,identical +93303,31.25,-25.25,ZAF,1612.0,Mpumalanga,159.0,South Africa,105643.0,Ehlanzeni,31.25,-25.25,ZAF,1612.0,Mpumalanga,159.0,South Africa,105643.0,Ehlanzeni,both,identical +93304,31.75,-25.25,ZAF,1612.0,Mpumalanga,159.0,South Africa,105643.0,Ehlanzeni,31.75,-25.25,ZAF,1612.0,Mpumalanga,159.0,South Africa,105643.0,Ehlanzeni,both,identical +93305,32.25,-25.25,MOZ,1489.0,Maputo,148.0,Mozambique,104369.0,Moamba,32.25,-25.25,MOZ,1489.0,Maputo,148.0,Mozambique,104369.0,Moamba,both,identical +93306,32.75,-25.25,MOZ,1489.0,Maputo,148.0,Mozambique,104365.0,Manhiça,32.75,-25.25,MOZ,1489.0,Maputo,148.0,Mozambique,104365.0,Manhiça,both,identical +93307,33.25,-25.25,MOZ,1486.0,Gaza,148.0,Mozambique,104323.0,Bilene,33.25,-25.25,MOZ,1486.0,Gaza,148.0,Mozambique,104323.0,Bilene,both,identical +93308,33.75,-25.25,MOZ,1486.0,Gaza,148.0,Mozambique,104330.0,Limpopo,33.75,-25.25,MOZ,1486.0,Gaza,148.0,Mozambique,104330.0,Limpopo,both,identical +93309,34.25,-25.25,MOZ,1486.0,Gaza,148.0,Mozambique,104327.0,Chonguene,34.25,-25.25,MOZ,1486.0,Gaza,148.0,Mozambique,104327.0,Chonguene,both,identical +93329,44.25,-25.25,MDG,1433.0,Toliara,141.0,Madagascar,104075.0,Atsimo Andrefana,44.25,-25.25,MDG,1433.0,Toliara,141.0,Madagascar,104075.0,Atsimo Andrefana,both,identical +93330,44.75,-25.25,MDG,1433.0,Toliara,141.0,Madagascar,104073.0,Androy,44.75,-25.25,MDG,1433.0,Toliara,141.0,Madagascar,104073.0,Androy,both,identical +93331,45.25,-25.25,MDG,1433.0,Toliara,141.0,Madagascar,104073.0,Androy,45.25,-25.25,MDG,1433.0,Toliara,141.0,Madagascar,104073.0,Androy,both,identical +93332,45.75,-25.25,MDG,1433.0,Toliara,141.0,Madagascar,104073.0,Androy,45.75,-25.25,MDG,1433.0,Toliara,141.0,Madagascar,104073.0,Androy,both,identical +93333,46.25,-25.25,MDG,1433.0,Toliara,141.0,Madagascar,104073.0,Androy,46.25,-25.25,MDG,1433.0,Toliara,141.0,Madagascar,104073.0,Androy,both,identical +93334,46.75,-25.25,MDG,1433.0,Toliara,141.0,Madagascar,104074.0,Anosy,46.75,-25.25,MDG,1433.0,Toliara,141.0,Madagascar,104074.0,Anosy,both,identical +93335,47.25,-25.25,MDG,1433.0,Toliara,141.0,Madagascar,104074.0,Anosy,47.25,-25.25,MDG,1433.0,Toliara,141.0,Madagascar,104074.0,Anosy,both,identical +93990,14.75,-24.75,NAM,1496.0,Hardap,149.0,Namibia,104467.0,Gibeon,14.75,-24.75,NAM,1496.0,Hardap,149.0,Namibia,104467.0,Gibeon,both,identical +93991,15.25,-24.75,NAM,1496.0,Hardap,149.0,Namibia,104467.0,Gibeon,15.25,-24.75,NAM,1496.0,Hardap,149.0,Namibia,104467.0,Gibeon,both,identical +93992,15.75,-24.75,NAM,1496.0,Hardap,149.0,Namibia,104467.0,Gibeon,15.75,-24.75,NAM,1496.0,Hardap,149.0,Namibia,104467.0,Gibeon,both,identical +93993,16.25,-24.75,NAM,1496.0,Hardap,149.0,Namibia,104467.0,Gibeon,16.25,-24.75,NAM,1496.0,Hardap,149.0,Namibia,104467.0,Gibeon,both,identical +93994,16.75,-24.75,NAM,1496.0,Hardap,149.0,Namibia,104467.0,Gibeon,16.75,-24.75,NAM,1496.0,Hardap,149.0,Namibia,104467.0,Gibeon,both,identical +93995,17.25,-24.75,NAM,1496.0,Hardap,149.0,Namibia,104467.0,Gibeon,17.25,-24.75,NAM,1496.0,Hardap,149.0,Namibia,104467.0,Gibeon,both,identical +93996,17.75,-24.75,NAM,1496.0,Hardap,149.0,Namibia,104469.0,Mariental Urban,17.75,-24.75,NAM,1496.0,Hardap,149.0,Namibia,104469.0,Mariental Urban,both,identical +93997,18.25,-24.75,NAM,1496.0,Hardap,149.0,Namibia,104468.0,Mariental Rural,18.25,-24.75,NAM,1496.0,Hardap,149.0,Namibia,104468.0,Mariental Rural,both,identical +93998,18.75,-24.75,NAM,1496.0,Hardap,149.0,Namibia,104468.0,Mariental Rural,18.75,-24.75,NAM,1496.0,Hardap,149.0,Namibia,104468.0,Mariental Rural,both,identical +93999,19.25,-24.75,NAM,1496.0,Hardap,149.0,Namibia,104468.0,Mariental Rural,19.25,-24.75,NAM,1496.0,Hardap,149.0,Namibia,104468.0,Mariental Rural,both,identical +94000,19.75,-24.75,NAM,1496.0,Hardap,149.0,Namibia,104468.0,Mariental Rural,19.75,-24.75,NAM,1496.0,Hardap,149.0,Namibia,104468.0,Mariental Rural,both,identical +94001,20.25,-24.75,BWA,1089.0,Kgalagadi,106.0,Botswana,101802.0,Kgalagadi North,20.25,-24.75,BWA,1089.0,Kgalagadi,106.0,Botswana,101802.0,Kgalagadi North,both,identical +94002,20.75,-24.75,BWA,1089.0,Kgalagadi,106.0,Botswana,101802.0,Kgalagadi North,20.75,-24.75,BWA,1089.0,Kgalagadi,106.0,Botswana,101802.0,Kgalagadi North,both,identical +94003,21.25,-24.75,BWA,1089.0,Kgalagadi,106.0,Botswana,101802.0,Kgalagadi North,21.25,-24.75,BWA,1089.0,Kgalagadi,106.0,Botswana,101802.0,Kgalagadi North,both,identical +94004,21.75,-24.75,BWA,1089.0,Kgalagadi,106.0,Botswana,101802.0,Kgalagadi North,21.75,-24.75,BWA,1089.0,Kgalagadi,106.0,Botswana,101802.0,Kgalagadi North,both,identical +94005,22.25,-24.75,BWA,1089.0,Kgalagadi,106.0,Botswana,101802.0,Kgalagadi North,22.25,-24.75,BWA,1089.0,Kgalagadi,106.0,Botswana,101802.0,Kgalagadi North,both,identical +94006,22.75,-24.75,BWA,1089.0,Kgalagadi,106.0,Botswana,101802.0,Kgalagadi North,22.75,-24.75,BWA,1089.0,Kgalagadi,106.0,Botswana,101802.0,Kgalagadi North,both,identical +94007,23.25,-24.75,BWA,1098.0,Southern,106.0,Botswana,101816.0,Ngwaketse West,23.25,-24.75,BWA,1098.0,Southern,106.0,Botswana,101816.0,Ngwaketse West,both,identical +94008,23.75,-24.75,BWA,1098.0,Southern,106.0,Botswana,101816.0,Ngwaketse West,23.75,-24.75,BWA,1098.0,Southern,106.0,Botswana,101816.0,Ngwaketse West,both,identical +94009,24.25,-24.75,BWA,1098.0,Southern,106.0,Botswana,101817.0,Southern,24.25,-24.75,BWA,1098.0,Southern,106.0,Botswana,101817.0,Southern,both,identical +94010,24.75,-24.75,BWA,1098.0,Southern,106.0,Botswana,101817.0,Southern,24.75,-24.75,BWA,1098.0,Southern,106.0,Botswana,101817.0,Southern,both,identical +94011,25.25,-24.75,BWA,1098.0,Southern,106.0,Botswana,101817.0,Southern,25.25,-24.75,BWA,1098.0,Southern,106.0,Botswana,101817.0,Southern,both,identical +94012,25.75,-24.75,BWA,1091.0,Kweneng,106.0,Botswana,101805.0,Kweneng East,25.75,-24.75,BWA,1091.0,Kweneng,106.0,Botswana,101805.0,Kweneng East,both,identical +94013,26.25,-24.75,ZAF,1613.0,North West,159.0,South Africa,105649.0,Ngaka Modiri Molema,26.25,-24.75,ZAF,1613.0,North West,159.0,South Africa,105649.0,Ngaka Modiri Molema,both,identical +94014,26.75,-24.75,ZAF,1611.0,Limpopo,159.0,South Africa,105642.0,Waterberg,26.75,-24.75,ZAF,1611.0,Limpopo,159.0,South Africa,105642.0,Waterberg,both,identical +94015,27.25,-24.75,ZAF,1611.0,Limpopo,159.0,South Africa,105642.0,Waterberg,27.25,-24.75,ZAF,1611.0,Limpopo,159.0,South Africa,105642.0,Waterberg,both,identical +94016,27.75,-24.75,ZAF,1611.0,Limpopo,159.0,South Africa,105642.0,Waterberg,27.75,-24.75,ZAF,1611.0,Limpopo,159.0,South Africa,105642.0,Waterberg,both,identical +94017,28.25,-24.75,ZAF,1611.0,Limpopo,159.0,South Africa,105642.0,Waterberg,28.25,-24.75,ZAF,1611.0,Limpopo,159.0,South Africa,105642.0,Waterberg,both,identical +94018,28.75,-24.75,ZAF,1611.0,Limpopo,159.0,South Africa,105642.0,Waterberg,28.75,-24.75,ZAF,1611.0,Limpopo,159.0,South Africa,105642.0,Waterberg,both,identical +94019,29.25,-24.75,ZAF,1611.0,Limpopo,159.0,South Africa,105642.0,Waterberg,29.25,-24.75,ZAF,1611.0,Limpopo,159.0,South Africa,105642.0,Waterberg,both,identical +94020,29.75,-24.75,ZAF,1611.0,Limpopo,159.0,South Africa,105640.0,Sekhukhune,29.75,-24.75,ZAF,1611.0,Limpopo,159.0,South Africa,105640.0,Sekhukhune,both,identical +94021,30.25,-24.75,ZAF,1611.0,Limpopo,159.0,South Africa,105640.0,Sekhukhune,30.25,-24.75,ZAF,1611.0,Limpopo,159.0,South Africa,105640.0,Sekhukhune,both,identical +94022,30.75,-24.75,ZAF,1612.0,Mpumalanga,159.0,South Africa,105643.0,Ehlanzeni,30.75,-24.75,ZAF,1612.0,Mpumalanga,159.0,South Africa,105643.0,Ehlanzeni,both,identical +94023,31.25,-24.75,ZAF,1612.0,Mpumalanga,159.0,South Africa,105643.0,Ehlanzeni,31.25,-24.75,ZAF,1612.0,Mpumalanga,159.0,South Africa,105643.0,Ehlanzeni,both,identical +94024,31.75,-24.75,ZAF,1612.0,Mpumalanga,159.0,South Africa,105643.0,Ehlanzeni,31.75,-24.75,ZAF,1612.0,Mpumalanga,159.0,South Africa,105643.0,Ehlanzeni,both,identical +94025,32.25,-24.75,MOZ,1489.0,Maputo,148.0,Mozambique,104364.0,Magude,32.25,-24.75,MOZ,1489.0,Maputo,148.0,Mozambique,104364.0,Magude,both,identical +94026,32.75,-24.75,MOZ,1489.0,Maputo,148.0,Mozambique,104364.0,Magude,32.75,-24.75,MOZ,1489.0,Maputo,148.0,Mozambique,104364.0,Magude,both,identical +94027,33.25,-24.75,MOZ,1486.0,Gaza,148.0,Mozambique,104328.0,Chókwè,33.25,-24.75,MOZ,1486.0,Gaza,148.0,Mozambique,104328.0,Chókwè,both,identical +94028,33.75,-24.75,MOZ,1486.0,Gaza,148.0,Mozambique,104324.0,Chibuto,33.75,-24.75,MOZ,1486.0,Gaza,148.0,Mozambique,104324.0,Chibuto,both,identical +94029,34.25,-24.75,MOZ,1486.0,Gaza,148.0,Mozambique,104332.0,Mandlakazi,34.25,-24.75,MOZ,1486.0,Gaza,148.0,Mozambique,104332.0,Mandlakazi,both,identical +94030,34.75,-24.75,MOZ,1487.0,Inhambane,148.0,Mozambique,104350.0,Zavala,34.75,-24.75,MOZ,1487.0,Inhambane,148.0,Mozambique,104350.0,Zavala,both,identical +94031,35.25,-24.75,MOZ,1487.0,Inhambane,148.0,Mozambique,104350.0,Zavala,35.25,-24.75,MOZ,1487.0,Inhambane,148.0,Mozambique,104350.0,Zavala,both,identical +94048,43.75,-24.75,MDG,1433.0,Toliara,141.0,Madagascar,104075.0,Atsimo Andrefana,43.75,-24.75,MDG,1433.0,Toliara,141.0,Madagascar,104075.0,Atsimo Andrefana,both,identical +94049,44.25,-24.75,MDG,1433.0,Toliara,141.0,Madagascar,104075.0,Atsimo Andrefana,44.25,-24.75,MDG,1433.0,Toliara,141.0,Madagascar,104075.0,Atsimo Andrefana,both,identical +94050,44.75,-24.75,MDG,1433.0,Toliara,141.0,Madagascar,104075.0,Atsimo Andrefana,44.75,-24.75,MDG,1433.0,Toliara,141.0,Madagascar,104075.0,Atsimo Andrefana,both,identical +94051,45.25,-24.75,MDG,1433.0,Toliara,141.0,Madagascar,104073.0,Androy,45.25,-24.75,MDG,1433.0,Toliara,141.0,Madagascar,104073.0,Androy,both,identical +94052,45.75,-24.75,MDG,1433.0,Toliara,141.0,Madagascar,104073.0,Androy,45.75,-24.75,MDG,1433.0,Toliara,141.0,Madagascar,104073.0,Androy,both,identical +94053,46.25,-24.75,MDG,1433.0,Toliara,141.0,Madagascar,104074.0,Anosy,46.25,-24.75,MDG,1433.0,Toliara,141.0,Madagascar,104074.0,Anosy,both,identical +94054,46.75,-24.75,MDG,1433.0,Toliara,141.0,Madagascar,104074.0,Anosy,46.75,-24.75,MDG,1433.0,Toliara,141.0,Madagascar,104074.0,Anosy,both,identical +94055,47.25,-24.75,MDG,1433.0,Toliara,141.0,Madagascar,104074.0,Anosy,47.25,-24.75,MDG,1433.0,Toliara,141.0,Madagascar,104074.0,Anosy,both,identical +94709,14.25,-24.25,NAM,1496.0,Hardap,149.0,Namibia,104467.0,Gibeon,14.25,-24.25,NAM,1496.0,Hardap,149.0,Namibia,104467.0,Gibeon,both,identical +94710,14.75,-24.25,NAM,1496.0,Hardap,149.0,Namibia,104467.0,Gibeon,14.75,-24.25,NAM,1496.0,Hardap,149.0,Namibia,104467.0,Gibeon,both,identical +94711,15.25,-24.25,NAM,1496.0,Hardap,149.0,Namibia,104467.0,Gibeon,15.25,-24.25,NAM,1496.0,Hardap,149.0,Namibia,104467.0,Gibeon,both,identical +94712,15.75,-24.25,NAM,1496.0,Hardap,149.0,Namibia,104467.0,Gibeon,15.75,-24.25,NAM,1496.0,Hardap,149.0,Namibia,104467.0,Gibeon,both,identical +94713,16.25,-24.25,NAM,1496.0,Hardap,149.0,Namibia,104467.0,Gibeon,16.25,-24.25,NAM,1496.0,Hardap,149.0,Namibia,104467.0,Gibeon,both,identical +94714,16.75,-24.25,NAM,1496.0,Hardap,149.0,Namibia,104467.0,Gibeon,16.75,-24.25,NAM,1496.0,Hardap,149.0,Namibia,104467.0,Gibeon,both,identical +94715,17.25,-24.25,NAM,1496.0,Hardap,149.0,Namibia,104469.0,Mariental Urban,17.25,-24.25,NAM,1496.0,Hardap,149.0,Namibia,104469.0,Mariental Urban,both,identical +94716,17.75,-24.25,NAM,1496.0,Hardap,149.0,Namibia,104469.0,Mariental Urban,17.75,-24.25,NAM,1496.0,Hardap,149.0,Namibia,104469.0,Mariental Urban,both,identical +94717,18.25,-24.25,NAM,1496.0,Hardap,149.0,Namibia,104468.0,Mariental Rural,18.25,-24.25,NAM,1496.0,Hardap,149.0,Namibia,104468.0,Mariental Rural,both,identical +94718,18.75,-24.25,NAM,1496.0,Hardap,149.0,Namibia,104468.0,Mariental Rural,18.75,-24.25,NAM,1496.0,Hardap,149.0,Namibia,104468.0,Mariental Rural,both,identical +94719,19.25,-24.25,NAM,1496.0,Hardap,149.0,Namibia,104468.0,Mariental Rural,19.25,-24.25,NAM,1496.0,Hardap,149.0,Namibia,104468.0,Mariental Rural,both,identical +94720,19.75,-24.25,NAM,1496.0,Hardap,149.0,Namibia,104468.0,Mariental Rural,19.75,-24.25,NAM,1496.0,Hardap,149.0,Namibia,104468.0,Mariental Rural,both,identical +94721,20.25,-24.25,BWA,1089.0,Kgalagadi,106.0,Botswana,101802.0,Kgalagadi North,20.25,-24.25,BWA,1089.0,Kgalagadi,106.0,Botswana,101802.0,Kgalagadi North,both,identical +94722,20.75,-24.25,BWA,1089.0,Kgalagadi,106.0,Botswana,101802.0,Kgalagadi North,20.75,-24.25,BWA,1089.0,Kgalagadi,106.0,Botswana,101802.0,Kgalagadi North,both,identical +94723,21.25,-24.25,BWA,1089.0,Kgalagadi,106.0,Botswana,101802.0,Kgalagadi North,21.25,-24.25,BWA,1089.0,Kgalagadi,106.0,Botswana,101802.0,Kgalagadi North,both,identical +94724,21.75,-24.25,BWA,1089.0,Kgalagadi,106.0,Botswana,101802.0,Kgalagadi North,21.75,-24.25,BWA,1089.0,Kgalagadi,106.0,Botswana,101802.0,Kgalagadi North,both,identical +94725,22.25,-24.25,BWA,1089.0,Kgalagadi,106.0,Botswana,101802.0,Kgalagadi North,22.25,-24.25,BWA,1089.0,Kgalagadi,106.0,Botswana,101802.0,Kgalagadi North,both,identical +94726,22.75,-24.25,BWA,1089.0,Kgalagadi,106.0,Botswana,101802.0,Kgalagadi North,22.75,-24.25,BWA,1089.0,Kgalagadi,106.0,Botswana,101802.0,Kgalagadi North,both,identical +94727,23.25,-24.25,BWA,1098.0,Southern,106.0,Botswana,101816.0,Ngwaketse West,23.25,-24.25,BWA,1098.0,Southern,106.0,Botswana,101816.0,Ngwaketse West,both,identical +94728,23.75,-24.25,BWA,1098.0,Southern,106.0,Botswana,101816.0,Ngwaketse West,23.75,-24.25,BWA,1098.0,Southern,106.0,Botswana,101816.0,Ngwaketse West,both,identical +94729,24.25,-24.25,BWA,1091.0,Kweneng,106.0,Botswana,101806.0,Kweneng West,24.25,-24.25,BWA,1091.0,Kweneng,106.0,Botswana,101806.0,Kweneng West,both,identical +94730,24.75,-24.25,BWA,1091.0,Kweneng,106.0,Botswana,101806.0,Kweneng West,24.75,-24.25,BWA,1091.0,Kweneng,106.0,Botswana,101806.0,Kweneng West,both,identical +94731,25.25,-24.25,BWA,1091.0,Kweneng,106.0,Botswana,101806.0,Kweneng West,25.25,-24.25,BWA,1091.0,Kweneng,106.0,Botswana,101806.0,Kweneng West,both,identical +94732,25.75,-24.25,BWA,1091.0,Kweneng,106.0,Botswana,101805.0,Kweneng East,25.75,-24.25,BWA,1091.0,Kweneng,106.0,Botswana,101805.0,Kweneng East,both,identical +94733,26.25,-24.25,BWA,1090.0,Kgatleng,106.0,Botswana,101804.0,Kgatleng,26.25,-24.25,BWA,1090.0,Kgatleng,106.0,Botswana,101804.0,Kgatleng,both,identical +94734,26.75,-24.25,BWA,1090.0,Kgatleng,106.0,Botswana,101804.0,Kgatleng,26.75,-24.25,BWA,1090.0,Kgatleng,106.0,Botswana,101804.0,Kgatleng,both,identical +94735,27.25,-24.25,ZAF,1611.0,Limpopo,159.0,South Africa,105642.0,Waterberg,27.25,-24.25,ZAF,1611.0,Limpopo,159.0,South Africa,105642.0,Waterberg,both,identical +94736,27.75,-24.25,ZAF,1611.0,Limpopo,159.0,South Africa,105642.0,Waterberg,27.75,-24.25,ZAF,1611.0,Limpopo,159.0,South Africa,105642.0,Waterberg,both,identical +94737,28.25,-24.25,ZAF,1611.0,Limpopo,159.0,South Africa,105642.0,Waterberg,28.25,-24.25,ZAF,1611.0,Limpopo,159.0,South Africa,105642.0,Waterberg,both,identical +94738,28.75,-24.25,ZAF,1611.0,Limpopo,159.0,South Africa,105642.0,Waterberg,28.75,-24.25,ZAF,1611.0,Limpopo,159.0,South Africa,105642.0,Waterberg,both,identical +94739,29.25,-24.25,ZAF,1611.0,Limpopo,159.0,South Africa,105638.0,Capricorn,29.25,-24.25,ZAF,1611.0,Limpopo,159.0,South Africa,105638.0,Capricorn,both,identical +94740,29.75,-24.25,ZAF,1611.0,Limpopo,159.0,South Africa,105638.0,Capricorn,29.75,-24.25,ZAF,1611.0,Limpopo,159.0,South Africa,105638.0,Capricorn,both,identical +94741,30.25,-24.25,ZAF,1611.0,Limpopo,159.0,South Africa,105640.0,Sekhukhune,30.25,-24.25,ZAF,1611.0,Limpopo,159.0,South Africa,105640.0,Sekhukhune,both,identical +94742,30.75,-24.25,ZAF,1611.0,Limpopo,159.0,South Africa,105639.0,Mopani,30.75,-24.25,ZAF,1611.0,Limpopo,159.0,South Africa,105639.0,Mopani,both,identical +94743,31.25,-24.25,ZAF,1612.0,Mpumalanga,159.0,South Africa,105643.0,Ehlanzeni,31.25,-24.25,ZAF,1612.0,Mpumalanga,159.0,South Africa,105643.0,Ehlanzeni,both,identical +94744,31.75,-24.25,ZAF,1612.0,Mpumalanga,159.0,South Africa,105643.0,Ehlanzeni,31.75,-24.25,ZAF,1612.0,Mpumalanga,159.0,South Africa,105643.0,Ehlanzeni,both,identical +94745,32.25,-24.25,MOZ,1489.0,Maputo,148.0,Mozambique,104364.0,Magude,32.25,-24.25,MOZ,1489.0,Maputo,148.0,Mozambique,104364.0,Magude,both,identical +94746,32.75,-24.25,MOZ,1486.0,Gaza,148.0,Mozambique,104329.0,Guijá,32.75,-24.25,MOZ,1486.0,Gaza,148.0,Mozambique,104329.0,Guijá,both,identical +94747,33.25,-24.25,MOZ,1486.0,Gaza,148.0,Mozambique,104329.0,Guijá,33.25,-24.25,MOZ,1486.0,Gaza,148.0,Mozambique,104329.0,Guijá,both,identical +94748,33.75,-24.25,MOZ,1486.0,Gaza,148.0,Mozambique,104324.0,Chibuto,33.75,-24.25,MOZ,1486.0,Gaza,148.0,Mozambique,104324.0,Chibuto,both,identical +94749,34.25,-24.25,MOZ,1487.0,Inhambane,148.0,Mozambique,104348.0,Panda,34.25,-24.25,MOZ,1487.0,Inhambane,148.0,Mozambique,104348.0,Panda,both,identical +94750,34.75,-24.25,MOZ,1487.0,Inhambane,148.0,Mozambique,104348.0,Panda,34.75,-24.25,MOZ,1487.0,Inhambane,148.0,Mozambique,104348.0,Panda,both,identical +94751,35.25,-24.25,MOZ,1487.0,Inhambane,148.0,Mozambique,104343.0,Jangamo,35.25,-24.25,MOZ,1487.0,Inhambane,148.0,Mozambique,104343.0,Jangamo,both,identical +94768,43.75,-24.25,MDG,1433.0,Toliara,141.0,Madagascar,104075.0,Atsimo Andrefana,43.75,-24.25,MDG,1433.0,Toliara,141.0,Madagascar,104075.0,Atsimo Andrefana,both,identical +94769,44.25,-24.25,MDG,1433.0,Toliara,141.0,Madagascar,104075.0,Atsimo Andrefana,44.25,-24.25,MDG,1433.0,Toliara,141.0,Madagascar,104075.0,Atsimo Andrefana,both,identical +94770,44.75,-24.25,MDG,1433.0,Toliara,141.0,Madagascar,104075.0,Atsimo Andrefana,44.75,-24.25,MDG,1433.0,Toliara,141.0,Madagascar,104075.0,Atsimo Andrefana,both,identical +94771,45.25,-24.25,MDG,1433.0,Toliara,141.0,Madagascar,104073.0,Androy,45.25,-24.25,MDG,1433.0,Toliara,141.0,Madagascar,104073.0,Androy,both,identical +94772,45.75,-24.25,MDG,1433.0,Toliara,141.0,Madagascar,104073.0,Androy,45.75,-24.25,MDG,1433.0,Toliara,141.0,Madagascar,104073.0,Androy,both,identical +94773,46.25,-24.25,MDG,1433.0,Toliara,141.0,Madagascar,104074.0,Anosy,46.25,-24.25,MDG,1433.0,Toliara,141.0,Madagascar,104074.0,Anosy,both,identical +94774,46.75,-24.25,MDG,1433.0,Toliara,141.0,Madagascar,104074.0,Anosy,46.75,-24.25,MDG,1433.0,Toliara,141.0,Madagascar,104074.0,Anosy,both,identical +94775,47.25,-24.25,MDG,1433.0,Toliara,141.0,Madagascar,104074.0,Anosy,47.25,-24.25,MDG,1433.0,Toliara,141.0,Madagascar,104074.0,Anosy,both,identical +94776,47.75,-24.25,MDG,,,,,,,,,,,,,,,,old_only,dropped_by_land_gaul +95429,14.25,-23.75,NAM,1496.0,Hardap,149.0,Namibia,104467.0,Gibeon,14.25,-23.75,NAM,1496.0,Hardap,149.0,Namibia,104467.0,Gibeon,both,identical +95430,14.75,-23.75,NAM,1496.0,Hardap,149.0,Namibia,104467.0,Gibeon,14.75,-23.75,NAM,1496.0,Hardap,149.0,Namibia,104467.0,Gibeon,both,identical +95431,15.25,-23.75,NAM,1496.0,Hardap,149.0,Namibia,104467.0,Gibeon,15.25,-23.75,NAM,1496.0,Hardap,149.0,Namibia,104467.0,Gibeon,both,identical +95432,15.75,-23.75,NAM,1500.0,Khomas,149.0,Namibia,104496.0,Windhoek Rural,15.75,-23.75,NAM,1500.0,Khomas,149.0,Namibia,104496.0,Windhoek Rural,both,identical +95433,16.25,-23.75,NAM,1500.0,Khomas,149.0,Namibia,104496.0,Windhoek Rural,16.25,-23.75,NAM,1500.0,Khomas,149.0,Namibia,104496.0,Windhoek Rural,both,identical +95434,16.75,-23.75,NAM,1496.0,Hardap,149.0,Namibia,104470.0,Rehoboth Rural,16.75,-23.75,NAM,1496.0,Hardap,149.0,Namibia,104470.0,Rehoboth Rural,both,identical +95435,17.25,-23.75,NAM,1496.0,Hardap,149.0,Namibia,104470.0,Rehoboth Rural,17.25,-23.75,NAM,1496.0,Hardap,149.0,Namibia,104470.0,Rehoboth Rural,both,identical +95436,17.75,-23.75,NAM,1496.0,Hardap,149.0,Namibia,104468.0,Mariental Rural,17.75,-23.75,NAM,1496.0,Hardap,149.0,Namibia,104468.0,Mariental Rural,both,identical +95437,18.25,-23.75,NAM,1496.0,Hardap,149.0,Namibia,104468.0,Mariental Rural,18.25,-23.75,NAM,1496.0,Hardap,149.0,Namibia,104468.0,Mariental Rural,both,identical +95438,18.75,-23.75,NAM,1496.0,Hardap,149.0,Namibia,104468.0,Mariental Rural,18.75,-23.75,NAM,1496.0,Hardap,149.0,Namibia,104468.0,Mariental Rural,both,identical +95439,19.25,-23.75,NAM,1503.0,Omaheke,149.0,Namibia,104515.0,Aminius,19.25,-23.75,NAM,1503.0,Omaheke,149.0,Namibia,104515.0,Aminius,both,identical +95440,19.75,-23.75,NAM,1503.0,Omaheke,149.0,Namibia,104515.0,Aminius,19.75,-23.75,NAM,1503.0,Omaheke,149.0,Namibia,104515.0,Aminius,both,identical +95441,20.25,-23.75,BWA,1089.0,Kgalagadi,106.0,Botswana,101802.0,Kgalagadi North,20.25,-23.75,BWA,1089.0,Kgalagadi,106.0,Botswana,101802.0,Kgalagadi North,both,identical +95442,20.75,-23.75,BWA,1089.0,Kgalagadi,106.0,Botswana,101802.0,Kgalagadi North,20.75,-23.75,BWA,1089.0,Kgalagadi,106.0,Botswana,101802.0,Kgalagadi North,both,identical +95443,21.25,-23.75,BWA,1089.0,Kgalagadi,106.0,Botswana,101802.0,Kgalagadi North,21.25,-23.75,BWA,1089.0,Kgalagadi,106.0,Botswana,101802.0,Kgalagadi North,both,identical +95444,21.75,-23.75,BWA,1089.0,Kgalagadi,106.0,Botswana,101802.0,Kgalagadi North,21.75,-23.75,BWA,1089.0,Kgalagadi,106.0,Botswana,101802.0,Kgalagadi North,both,identical +95445,22.25,-23.75,BWA,1089.0,Kgalagadi,106.0,Botswana,101802.0,Kgalagadi North,22.25,-23.75,BWA,1089.0,Kgalagadi,106.0,Botswana,101802.0,Kgalagadi North,both,identical +95446,22.75,-23.75,BWA,1089.0,Kgalagadi,106.0,Botswana,101802.0,Kgalagadi North,22.75,-23.75,BWA,1089.0,Kgalagadi,106.0,Botswana,101802.0,Kgalagadi North,both,identical +95447,23.25,-23.75,BWA,1091.0,Kweneng,106.0,Botswana,101806.0,Kweneng West,23.25,-23.75,BWA,1091.0,Kweneng,106.0,Botswana,101806.0,Kweneng West,both,identical +95448,23.75,-23.75,BWA,1091.0,Kweneng,106.0,Botswana,101806.0,Kweneng West,23.75,-23.75,BWA,1091.0,Kweneng,106.0,Botswana,101806.0,Kweneng West,both,identical +95449,24.25,-23.75,BWA,1091.0,Kweneng,106.0,Botswana,101806.0,Kweneng West,24.25,-23.75,BWA,1091.0,Kweneng,106.0,Botswana,101806.0,Kweneng West,both,identical +95450,24.75,-23.75,BWA,1091.0,Kweneng,106.0,Botswana,101806.0,Kweneng West,24.75,-23.75,BWA,1091.0,Kweneng,106.0,Botswana,101806.0,Kweneng West,both,identical +95451,25.25,-23.75,BWA,1091.0,Kweneng,106.0,Botswana,101806.0,Kweneng West,25.25,-23.75,BWA,1091.0,Kweneng,106.0,Botswana,101806.0,Kweneng West,both,identical +95452,25.75,-23.75,BWA,1091.0,Kweneng,106.0,Botswana,101805.0,Kweneng East,25.75,-23.75,BWA,1091.0,Kweneng,106.0,Botswana,101805.0,Kweneng East,both,identical +95453,26.25,-23.75,BWA,1090.0,Kgatleng,106.0,Botswana,101804.0,Kgatleng,26.25,-23.75,BWA,1090.0,Kgatleng,106.0,Botswana,101804.0,Kgatleng,both,identical +95454,26.75,-23.75,BWA,1083.0,Central,106.0,Botswana,101793.0,Mahalapye,26.75,-23.75,BWA,1083.0,Central,106.0,Botswana,101793.0,Mahalapye,both,identical +95455,27.25,-23.75,ZAF,1611.0,Limpopo,159.0,South Africa,105642.0,Waterberg,27.25,-23.75,ZAF,1611.0,Limpopo,159.0,South Africa,105642.0,Waterberg,both,identical +95456,27.75,-23.75,ZAF,1611.0,Limpopo,159.0,South Africa,105642.0,Waterberg,27.75,-23.75,ZAF,1611.0,Limpopo,159.0,South Africa,105642.0,Waterberg,both,identical +95457,28.25,-23.75,ZAF,1611.0,Limpopo,159.0,South Africa,105642.0,Waterberg,28.25,-23.75,ZAF,1611.0,Limpopo,159.0,South Africa,105642.0,Waterberg,both,identical +95458,28.75,-23.75,ZAF,1611.0,Limpopo,159.0,South Africa,105642.0,Waterberg,28.75,-23.75,ZAF,1611.0,Limpopo,159.0,South Africa,105642.0,Waterberg,both,identical +95459,29.25,-23.75,ZAF,1611.0,Limpopo,159.0,South Africa,105638.0,Capricorn,29.25,-23.75,ZAF,1611.0,Limpopo,159.0,South Africa,105638.0,Capricorn,both,identical +95460,29.75,-23.75,ZAF,1611.0,Limpopo,159.0,South Africa,105638.0,Capricorn,29.75,-23.75,ZAF,1611.0,Limpopo,159.0,South Africa,105638.0,Capricorn,both,identical +95461,30.25,-23.75,ZAF,1611.0,Limpopo,159.0,South Africa,105639.0,Mopani,30.25,-23.75,ZAF,1611.0,Limpopo,159.0,South Africa,105639.0,Mopani,both,identical +95462,30.75,-23.75,ZAF,1611.0,Limpopo,159.0,South Africa,105639.0,Mopani,30.75,-23.75,ZAF,1611.0,Limpopo,159.0,South Africa,105639.0,Mopani,both,identical +95463,31.25,-23.75,ZAF,1611.0,Limpopo,159.0,South Africa,105639.0,Mopani,31.25,-23.75,ZAF,1611.0,Limpopo,159.0,South Africa,105639.0,Mopani,both,identical +95464,31.75,-23.75,MOZ,1486.0,Gaza,148.0,Mozambique,104335.0,Massingir,31.75,-23.75,MOZ,1486.0,Gaza,148.0,Mozambique,104335.0,Massingir,both,identical +95465,32.25,-23.75,MOZ,1486.0,Gaza,148.0,Mozambique,104335.0,Massingir,32.25,-23.75,MOZ,1486.0,Gaza,148.0,Mozambique,104335.0,Massingir,both,identical +95466,32.75,-23.75,MOZ,1486.0,Gaza,148.0,Mozambique,104331.0,Mabalane,32.75,-23.75,MOZ,1486.0,Gaza,148.0,Mozambique,104331.0,Mabalane,both,identical +95467,33.25,-23.75,MOZ,1486.0,Gaza,148.0,Mozambique,104326.0,Chigubo,33.25,-23.75,MOZ,1486.0,Gaza,148.0,Mozambique,104326.0,Chigubo,both,identical +95468,33.75,-23.75,MOZ,1486.0,Gaza,148.0,Mozambique,104326.0,Chigubo,33.75,-23.75,MOZ,1486.0,Gaza,148.0,Mozambique,104326.0,Chigubo,both,identical +95469,34.25,-23.75,MOZ,1487.0,Inhambane,148.0,Mozambique,104348.0,Panda,34.25,-23.75,MOZ,1487.0,Inhambane,148.0,Mozambique,104348.0,Panda,both,identical +95470,34.75,-23.75,MOZ,1487.0,Inhambane,148.0,Mozambique,104348.0,Panda,34.75,-23.75,MOZ,1487.0,Inhambane,148.0,Mozambique,104348.0,Panda,both,identical +95471,35.25,-23.75,MOZ,1487.0,Inhambane,148.0,Mozambique,104347.0,Morrumbene,35.25,-23.75,MOZ,1487.0,Inhambane,148.0,Mozambique,104347.0,Morrumbene,both,identical +95472,35.75,-23.75,MOZ,1487.0,Inhambane,148.0,Mozambique,104340.0,Inhambane,35.75,-23.75,MOZ,1487.0,Inhambane,148.0,Mozambique,104340.0,Inhambane,both,identical +95488,43.75,-23.75,MDG,1433.0,Toliara,141.0,Madagascar,104075.0,Atsimo Andrefana,43.75,-23.75,MDG,1433.0,Toliara,141.0,Madagascar,104075.0,Atsimo Andrefana,both,identical +95489,44.25,-23.75,MDG,1433.0,Toliara,141.0,Madagascar,104075.0,Atsimo Andrefana,44.25,-23.75,MDG,1433.0,Toliara,141.0,Madagascar,104075.0,Atsimo Andrefana,both,identical +95490,44.75,-23.75,MDG,1433.0,Toliara,141.0,Madagascar,104075.0,Atsimo Andrefana,44.75,-23.75,MDG,1433.0,Toliara,141.0,Madagascar,104075.0,Atsimo Andrefana,both,identical +95491,45.25,-23.75,MDG,1433.0,Toliara,141.0,Madagascar,104075.0,Atsimo Andrefana,45.25,-23.75,MDG,1433.0,Toliara,141.0,Madagascar,104075.0,Atsimo Andrefana,both,identical +95492,45.75,-23.75,MDG,1433.0,Toliara,141.0,Madagascar,104074.0,Anosy,45.75,-23.75,MDG,1433.0,Toliara,141.0,Madagascar,104074.0,Anosy,both,identical +95493,46.25,-23.75,MDG,1433.0,Toliara,141.0,Madagascar,104074.0,Anosy,46.25,-23.75,MDG,1433.0,Toliara,141.0,Madagascar,104074.0,Anosy,both,identical +95494,46.75,-23.75,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104061.0,Atsimo Atsinanana,46.75,-23.75,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104061.0,Atsimo Atsinanana,both,identical +95495,47.25,-23.75,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104061.0,Atsimo Atsinanana,47.25,-23.75,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104061.0,Atsimo Atsinanana,both,identical +95496,47.75,-23.75,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104061.0,Atsimo Atsinanana,47.75,-23.75,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104061.0,Atsimo Atsinanana,both,identical +96149,14.25,-23.25,NAM,1495.0,Erongo,149.0,Namibia,104465.0,Walvis Bay Rural,14.25,-23.25,NAM,1495.0,Erongo,149.0,Namibia,104465.0,Walvis Bay Rural,both,identical +96150,14.75,-23.25,NAM,1495.0,Erongo,149.0,Namibia,104465.0,Walvis Bay Rural,14.75,-23.25,NAM,1495.0,Erongo,149.0,Namibia,104465.0,Walvis Bay Rural,both,identical +96151,15.25,-23.25,NAM,1495.0,Erongo,149.0,Namibia,104465.0,Walvis Bay Rural,15.25,-23.25,NAM,1495.0,Erongo,149.0,Namibia,104465.0,Walvis Bay Rural,both,identical +96152,15.75,-23.25,NAM,1495.0,Erongo,149.0,Namibia,104496.0,Windhoek Rural,15.75,-23.25,NAM,1500.0,Khomas,149.0,Namibia,104496.0,Windhoek Rural,both,admin_reallocation +96153,16.25,-23.25,NAM,1500.0,Khomas,149.0,Namibia,104496.0,Windhoek Rural,16.25,-23.25,NAM,1500.0,Khomas,149.0,Namibia,104496.0,Windhoek Rural,both,identical +96154,16.75,-23.25,NAM,1500.0,Khomas,149.0,Namibia,104496.0,Windhoek Rural,16.75,-23.25,NAM,1500.0,Khomas,149.0,Namibia,104496.0,Windhoek Rural,both,identical +96155,17.25,-23.25,NAM,1500.0,Khomas,149.0,Namibia,104496.0,Windhoek Rural,17.25,-23.25,NAM,1500.0,Khomas,149.0,Namibia,104496.0,Windhoek Rural,both,identical +96156,17.75,-23.25,NAM,1500.0,Khomas,149.0,Namibia,104496.0,Windhoek Rural,17.75,-23.25,NAM,1500.0,Khomas,149.0,Namibia,104496.0,Windhoek Rural,both,identical +96157,18.25,-23.25,NAM,1500.0,Khomas,149.0,Namibia,104496.0,Windhoek Rural,18.25,-23.25,NAM,1500.0,Khomas,149.0,Namibia,104496.0,Windhoek Rural,both,identical +96158,18.75,-23.25,NAM,1503.0,Omaheke,149.0,Namibia,104515.0,Aminius,18.75,-23.25,NAM,1503.0,Omaheke,149.0,Namibia,104515.0,Aminius,both,identical +96159,19.25,-23.25,NAM,1503.0,Omaheke,149.0,Namibia,104515.0,Aminius,19.25,-23.25,NAM,1503.0,Omaheke,149.0,Namibia,104515.0,Aminius,both,identical +96160,19.75,-23.25,NAM,1503.0,Omaheke,149.0,Namibia,104515.0,Aminius,19.75,-23.25,NAM,1503.0,Omaheke,149.0,Namibia,104515.0,Aminius,both,identical +96161,20.25,-23.25,BWA,1087.0,Ghanzi,106.0,Botswana,101800.0,Ghanzi,20.25,-23.25,BWA,1087.0,Ghanzi,106.0,Botswana,101800.0,Ghanzi,both,identical +96162,20.75,-23.25,BWA,1087.0,Ghanzi,106.0,Botswana,101800.0,Ghanzi,20.75,-23.25,BWA,1087.0,Ghanzi,106.0,Botswana,101800.0,Ghanzi,both,identical +96163,21.25,-23.25,BWA,1087.0,Ghanzi,106.0,Botswana,101800.0,Ghanzi,21.25,-23.25,BWA,1087.0,Ghanzi,106.0,Botswana,101800.0,Ghanzi,both,identical +96164,21.75,-23.25,BWA,1087.0,Ghanzi,106.0,Botswana,101800.0,Ghanzi,21.75,-23.25,BWA,1087.0,Ghanzi,106.0,Botswana,101800.0,Ghanzi,both,identical +96165,22.25,-23.25,BWA,1087.0,Ghanzi,106.0,Botswana,101800.0,Ghanzi,22.25,-23.25,BWA,1087.0,Ghanzi,106.0,Botswana,101800.0,Ghanzi,both,identical +96166,22.75,-23.25,BWA,1087.0,Ghanzi,106.0,Botswana,101800.0,Ghanzi,22.75,-23.25,BWA,1087.0,Ghanzi,106.0,Botswana,101800.0,Ghanzi,both,identical +96167,23.25,-23.25,BWA,1087.0,Ghanzi,106.0,Botswana,101799.0,Central Kgalagadi Game Reserve,23.25,-23.25,BWA,1087.0,Ghanzi,106.0,Botswana,101799.0,Central Kgalagadi Game Reserve,both,identical +96168,23.75,-23.25,BWA,1087.0,Ghanzi,106.0,Botswana,101799.0,Central Kgalagadi Game Reserve,23.75,-23.25,BWA,1087.0,Ghanzi,106.0,Botswana,101799.0,Central Kgalagadi Game Reserve,both,identical +96169,24.25,-23.25,BWA,1087.0,Ghanzi,106.0,Botswana,101799.0,Central Kgalagadi Game Reserve,24.25,-23.25,BWA,1087.0,Ghanzi,106.0,Botswana,101799.0,Central Kgalagadi Game Reserve,both,identical +96170,24.75,-23.25,BWA,1087.0,Ghanzi,106.0,Botswana,101799.0,Central Kgalagadi Game Reserve,24.75,-23.25,BWA,1087.0,Ghanzi,106.0,Botswana,101799.0,Central Kgalagadi Game Reserve,both,identical +96171,25.25,-23.25,BWA,1091.0,Kweneng,106.0,Botswana,101806.0,Kweneng West,25.25,-23.25,BWA,1091.0,Kweneng,106.0,Botswana,101806.0,Kweneng West,both,identical +96172,25.75,-23.25,BWA,1083.0,Central,106.0,Botswana,101793.0,Mahalapye,25.75,-23.25,BWA,1083.0,Central,106.0,Botswana,101793.0,Mahalapye,both,identical +96173,26.25,-23.25,BWA,1083.0,Central,106.0,Botswana,101793.0,Mahalapye,26.25,-23.25,BWA,1083.0,Central,106.0,Botswana,101793.0,Mahalapye,both,identical +96174,26.75,-23.25,BWA,1083.0,Central,106.0,Botswana,101793.0,Mahalapye,26.75,-23.25,BWA,1083.0,Central,106.0,Botswana,101793.0,Mahalapye,both,identical +96175,27.25,-23.25,BWA,1083.0,Central,106.0,Botswana,101793.0,Mahalapye,27.25,-23.25,BWA,1083.0,Central,106.0,Botswana,101793.0,Mahalapye,both,identical +96176,27.75,-23.25,ZAF,1611.0,Limpopo,159.0,South Africa,105642.0,Waterberg,27.75,-23.25,ZAF,1611.0,Limpopo,159.0,South Africa,105642.0,Waterberg,both,identical +96177,28.25,-23.25,ZAF,1611.0,Limpopo,159.0,South Africa,105642.0,Waterberg,28.25,-23.25,ZAF,1611.0,Limpopo,159.0,South Africa,105642.0,Waterberg,both,identical +96178,28.75,-23.25,ZAF,1611.0,Limpopo,159.0,South Africa,105638.0,Capricorn,28.75,-23.25,ZAF,1611.0,Limpopo,159.0,South Africa,105638.0,Capricorn,both,identical +96179,29.25,-23.25,ZAF,1611.0,Limpopo,159.0,South Africa,105638.0,Capricorn,29.25,-23.25,ZAF,1611.0,Limpopo,159.0,South Africa,105638.0,Capricorn,both,identical +96180,29.75,-23.25,ZAF,1611.0,Limpopo,159.0,South Africa,105641.0,Vhembe,29.75,-23.25,ZAF,1611.0,Limpopo,159.0,South Africa,105641.0,Vhembe,both,identical +96181,30.25,-23.25,ZAF,1611.0,Limpopo,159.0,South Africa,105641.0,Vhembe,30.25,-23.25,ZAF,1611.0,Limpopo,159.0,South Africa,105641.0,Vhembe,both,identical +96182,30.75,-23.25,ZAF,1611.0,Limpopo,159.0,South Africa,105639.0,Mopani,30.75,-23.25,ZAF,1611.0,Limpopo,159.0,South Africa,105639.0,Mopani,both,identical +96183,31.25,-23.25,ZAF,1611.0,Limpopo,159.0,South Africa,105639.0,Mopani,31.25,-23.25,ZAF,1611.0,Limpopo,159.0,South Africa,105639.0,Mopani,both,identical +96184,31.75,-23.25,MOZ,1486.0,Gaza,148.0,Mozambique,104325.0,Chicualacuala,31.75,-23.25,MOZ,1486.0,Gaza,148.0,Mozambique,104325.0,Chicualacuala,both,identical +96185,32.25,-23.25,MOZ,1486.0,Gaza,148.0,Mozambique,104325.0,Chicualacuala,32.25,-23.25,MOZ,1486.0,Gaza,148.0,Mozambique,104325.0,Chicualacuala,both,identical +96186,32.75,-23.25,MOZ,1486.0,Gaza,148.0,Mozambique,104331.0,Mabalane,32.75,-23.25,MOZ,1486.0,Gaza,148.0,Mozambique,104331.0,Mabalane,both,identical +96187,33.25,-23.25,MOZ,1486.0,Gaza,148.0,Mozambique,104326.0,Chigubo,33.25,-23.25,MOZ,1486.0,Gaza,148.0,Mozambique,104326.0,Chigubo,both,identical +96188,33.75,-23.25,MOZ,1486.0,Gaza,148.0,Mozambique,104326.0,Chigubo,33.75,-23.25,MOZ,1486.0,Gaza,148.0,Mozambique,104326.0,Chigubo,both,identical +96189,34.25,-23.25,MOZ,1487.0,Inhambane,148.0,Mozambique,104337.0,Funhalouro,34.25,-23.25,MOZ,1487.0,Inhambane,148.0,Mozambique,104337.0,Funhalouro,both,identical +96190,34.75,-23.25,MOZ,1487.0,Inhambane,148.0,Mozambique,104337.0,Funhalouro,34.75,-23.25,MOZ,1487.0,Inhambane,148.0,Mozambique,104337.0,Funhalouro,both,identical +96191,35.25,-23.25,MOZ,1487.0,Inhambane,148.0,Mozambique,104345.0,Massinga,35.25,-23.25,MOZ,1487.0,Inhambane,148.0,Mozambique,104345.0,Massinga,both,identical +96192,35.75,-23.25,MOZ,1487.0,Inhambane,148.0,Mozambique,104345.0,Massinga,35.75,-23.25,MOZ,1487.0,Inhambane,148.0,Mozambique,104345.0,Massinga,both,identical +96207,43.25,-23.25,MDG,1433.0,Toliara,141.0,Madagascar,104075.0,Atsimo Andrefana,43.25,-23.25,MDG,1433.0,Toliara,141.0,Madagascar,104075.0,Atsimo Andrefana,both,identical +96208,43.75,-23.25,MDG,1433.0,Toliara,141.0,Madagascar,104075.0,Atsimo Andrefana,43.75,-23.25,MDG,1433.0,Toliara,141.0,Madagascar,104075.0,Atsimo Andrefana,both,identical +96209,44.25,-23.25,MDG,1433.0,Toliara,141.0,Madagascar,104075.0,Atsimo Andrefana,44.25,-23.25,MDG,1433.0,Toliara,141.0,Madagascar,104075.0,Atsimo Andrefana,both,identical +96210,44.75,-23.25,MDG,1433.0,Toliara,141.0,Madagascar,104075.0,Atsimo Andrefana,44.75,-23.25,MDG,1433.0,Toliara,141.0,Madagascar,104075.0,Atsimo Andrefana,both,identical +96211,45.25,-23.25,MDG,1433.0,Toliara,141.0,Madagascar,104075.0,Atsimo Andrefana,45.25,-23.25,MDG,1433.0,Toliara,141.0,Madagascar,104075.0,Atsimo Andrefana,both,identical +96212,45.75,-23.25,MDG,1433.0,Toliara,141.0,Madagascar,104074.0,Anosy,45.75,-23.25,MDG,1433.0,Toliara,141.0,Madagascar,104074.0,Anosy,both,identical +96213,46.25,-23.25,MDG,1433.0,Toliara,141.0,Madagascar,104074.0,Anosy,46.25,-23.25,MDG,1433.0,Toliara,141.0,Madagascar,104074.0,Anosy,both,identical +96214,46.75,-23.25,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104064.0,Ihorombe,46.75,-23.25,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104064.0,Ihorombe,both,identical +96215,47.25,-23.25,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104061.0,Atsimo Atsinanana,47.25,-23.25,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104061.0,Atsimo Atsinanana,both,identical +96216,47.75,-23.25,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104061.0,Atsimo Atsinanana,47.75,-23.25,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104061.0,Atsimo Atsinanana,both,identical +96869,14.25,-22.75,NAM,1495.0,Erongo,149.0,Namibia,104465.0,Walvis Bay Rural,14.25,-22.75,NAM,1495.0,Erongo,149.0,Namibia,104465.0,Walvis Bay Rural,both,identical +96870,14.75,-22.75,NAM,1495.0,Erongo,149.0,Namibia,104465.0,Walvis Bay Rural,14.75,-22.75,NAM,1495.0,Erongo,149.0,Namibia,104465.0,Walvis Bay Rural,both,identical +96871,15.25,-22.75,NAM,1495.0,Erongo,149.0,Namibia,104460.0,Arandis,15.25,-22.75,NAM,1495.0,Erongo,149.0,Namibia,104460.0,Arandis,both,identical +96872,15.75,-22.75,NAM,1495.0,Erongo,149.0,Namibia,104462.0,Karibib,15.75,-22.75,NAM,1495.0,Erongo,149.0,Namibia,104462.0,Karibib,both,identical +96873,16.25,-22.75,NAM,1500.0,Khomas,149.0,Namibia,104496.0,Windhoek Rural,16.25,-22.75,NAM,1500.0,Khomas,149.0,Namibia,104496.0,Windhoek Rural,both,identical +96874,16.75,-22.75,NAM,1500.0,Khomas,149.0,Namibia,104496.0,Windhoek Rural,16.75,-22.75,NAM,1500.0,Khomas,149.0,Namibia,104496.0,Windhoek Rural,both,identical +96875,17.25,-22.75,NAM,1500.0,Khomas,149.0,Namibia,104496.0,Windhoek Rural,17.25,-22.75,NAM,1500.0,Khomas,149.0,Namibia,104496.0,Windhoek Rural,both,identical +96876,17.75,-22.75,NAM,1500.0,Khomas,149.0,Namibia,104496.0,Windhoek Rural,17.75,-22.75,NAM,1500.0,Khomas,149.0,Namibia,104496.0,Windhoek Rural,both,identical +96877,18.25,-22.75,NAM,1500.0,Khomas,149.0,Namibia,104496.0,Windhoek Rural,18.25,-22.75,NAM,1500.0,Khomas,149.0,Namibia,104496.0,Windhoek Rural,both,identical +96878,18.75,-22.75,NAM,1503.0,Omaheke,149.0,Namibia,104517.0,Gobabis,18.75,-22.75,NAM,1503.0,Omaheke,149.0,Namibia,104517.0,Gobabis,both,identical +96879,19.25,-22.75,NAM,1503.0,Omaheke,149.0,Namibia,104518.0,Kalahari,19.25,-22.75,NAM,1503.0,Omaheke,149.0,Namibia,104518.0,Kalahari,both,identical +96880,19.75,-22.75,NAM,1503.0,Omaheke,149.0,Namibia,104518.0,Kalahari,19.75,-22.75,NAM,1503.0,Omaheke,149.0,Namibia,104518.0,Kalahari,both,identical +96881,20.25,-22.75,BWA,1087.0,Ghanzi,106.0,Botswana,101800.0,Ghanzi,20.25,-22.75,BWA,1087.0,Ghanzi,106.0,Botswana,101800.0,Ghanzi,both,identical +96882,20.75,-22.75,BWA,1087.0,Ghanzi,106.0,Botswana,101800.0,Ghanzi,20.75,-22.75,BWA,1087.0,Ghanzi,106.0,Botswana,101800.0,Ghanzi,both,identical +96883,21.25,-22.75,BWA,1087.0,Ghanzi,106.0,Botswana,101800.0,Ghanzi,21.25,-22.75,BWA,1087.0,Ghanzi,106.0,Botswana,101800.0,Ghanzi,both,identical +96884,21.75,-22.75,BWA,1087.0,Ghanzi,106.0,Botswana,101800.0,Ghanzi,21.75,-22.75,BWA,1087.0,Ghanzi,106.0,Botswana,101800.0,Ghanzi,both,identical +96885,22.25,-22.75,BWA,1087.0,Ghanzi,106.0,Botswana,101800.0,Ghanzi,22.25,-22.75,BWA,1087.0,Ghanzi,106.0,Botswana,101800.0,Ghanzi,both,identical +96886,22.75,-22.75,BWA,1087.0,Ghanzi,106.0,Botswana,101800.0,Ghanzi,22.75,-22.75,BWA,1087.0,Ghanzi,106.0,Botswana,101800.0,Ghanzi,both,identical +96887,23.25,-22.75,BWA,1087.0,Ghanzi,106.0,Botswana,101799.0,Central Kgalagadi Game Reserve,23.25,-22.75,BWA,1087.0,Ghanzi,106.0,Botswana,101799.0,Central Kgalagadi Game Reserve,both,identical +96888,23.75,-22.75,BWA,1087.0,Ghanzi,106.0,Botswana,101799.0,Central Kgalagadi Game Reserve,23.75,-22.75,BWA,1087.0,Ghanzi,106.0,Botswana,101799.0,Central Kgalagadi Game Reserve,both,identical +96889,24.25,-22.75,BWA,1087.0,Ghanzi,106.0,Botswana,101799.0,Central Kgalagadi Game Reserve,24.25,-22.75,BWA,1087.0,Ghanzi,106.0,Botswana,101799.0,Central Kgalagadi Game Reserve,both,identical +96890,24.75,-22.75,BWA,1087.0,Ghanzi,106.0,Botswana,101799.0,Central Kgalagadi Game Reserve,24.75,-22.75,BWA,1087.0,Ghanzi,106.0,Botswana,101799.0,Central Kgalagadi Game Reserve,both,identical +96891,25.25,-22.75,BWA,1087.0,Ghanzi,106.0,Botswana,101799.0,Central Kgalagadi Game Reserve,25.25,-22.75,BWA,1087.0,Ghanzi,106.0,Botswana,101799.0,Central Kgalagadi Game Reserve,both,identical +96892,25.75,-22.75,BWA,1083.0,Central,106.0,Botswana,101794.0,Serowe Palapye,25.75,-22.75,BWA,1083.0,Central,106.0,Botswana,101794.0,Serowe Palapye,both,identical +96893,26.25,-22.75,BWA,1083.0,Central,106.0,Botswana,101794.0,Serowe Palapye,26.25,-22.75,BWA,1083.0,Central,106.0,Botswana,101794.0,Serowe Palapye,both,identical +96894,26.75,-22.75,BWA,1083.0,Central,106.0,Botswana,101794.0,Serowe Palapye,26.75,-22.75,BWA,1083.0,Central,106.0,Botswana,101794.0,Serowe Palapye,both,identical +96895,27.25,-22.75,BWA,1083.0,Central,106.0,Botswana,101793.0,Mahalapye,27.25,-22.75,BWA,1083.0,Central,106.0,Botswana,101793.0,Mahalapye,both,identical +96896,27.75,-22.75,BWA,1083.0,Central,106.0,Botswana,101794.0,Serowe Palapye,27.75,-22.75,BWA,1083.0,Central,106.0,Botswana,101794.0,Serowe Palapye,both,identical +96897,28.25,-22.75,ZAF,1611.0,Limpopo,159.0,South Africa,105638.0,Capricorn,28.25,-22.75,ZAF,1611.0,Limpopo,159.0,South Africa,105638.0,Capricorn,both,identical +96898,28.75,-22.75,ZAF,1611.0,Limpopo,159.0,South Africa,105638.0,Capricorn,28.75,-22.75,ZAF,1611.0,Limpopo,159.0,South Africa,105638.0,Capricorn,both,identical +96899,29.25,-22.75,ZAF,1611.0,Limpopo,159.0,South Africa,105641.0,Vhembe,29.25,-22.75,ZAF,1611.0,Limpopo,159.0,South Africa,105641.0,Vhembe,both,identical +96900,29.75,-22.75,ZAF,1611.0,Limpopo,159.0,South Africa,105641.0,Vhembe,29.75,-22.75,ZAF,1611.0,Limpopo,159.0,South Africa,105641.0,Vhembe,both,identical +96901,30.25,-22.75,ZAF,1611.0,Limpopo,159.0,South Africa,105641.0,Vhembe,30.25,-22.75,ZAF,1611.0,Limpopo,159.0,South Africa,105641.0,Vhembe,both,identical +96902,30.75,-22.75,ZAF,1611.0,Limpopo,159.0,South Africa,105641.0,Vhembe,30.75,-22.75,ZAF,1611.0,Limpopo,159.0,South Africa,105641.0,Vhembe,both,identical +96903,31.25,-22.75,ZAF,1611.0,Limpopo,159.0,South Africa,105641.0,Vhembe,31.25,-22.75,ZAF,1611.0,Limpopo,159.0,South Africa,105641.0,Vhembe,both,identical +96904,31.75,-22.75,MOZ,1486.0,Gaza,148.0,Mozambique,104325.0,Chicualacuala,31.75,-22.75,MOZ,1486.0,Gaza,148.0,Mozambique,104325.0,Chicualacuala,both,identical +96905,32.25,-22.75,MOZ,1486.0,Gaza,148.0,Mozambique,104333.0,Mapai,32.25,-22.75,MOZ,1486.0,Gaza,148.0,Mozambique,104333.0,Mapai,both,identical +96906,32.75,-22.75,MOZ,1486.0,Gaza,148.0,Mozambique,104333.0,Mapai,32.75,-22.75,MOZ,1486.0,Gaza,148.0,Mozambique,104333.0,Mapai,both,identical +96907,33.25,-22.75,MOZ,1486.0,Gaza,148.0,Mozambique,104326.0,Chigubo,33.25,-22.75,MOZ,1486.0,Gaza,148.0,Mozambique,104326.0,Chigubo,both,identical +96908,33.75,-22.75,MOZ,1487.0,Inhambane,148.0,Mozambique,104344.0,Mabote,33.75,-22.75,MOZ,1487.0,Inhambane,148.0,Mozambique,104344.0,Mabote,both,identical +96909,34.25,-22.75,MOZ,1487.0,Inhambane,148.0,Mozambique,104337.0,Funhalouro,34.25,-22.75,MOZ,1487.0,Inhambane,148.0,Mozambique,104337.0,Funhalouro,both,identical +96910,34.75,-22.75,MOZ,1487.0,Inhambane,148.0,Mozambique,104345.0,Massinga,34.75,-22.75,MOZ,1487.0,Inhambane,148.0,Mozambique,104345.0,Massinga,both,identical +96911,35.25,-22.75,MOZ,1487.0,Inhambane,148.0,Mozambique,104345.0,Massinga,35.25,-22.75,MOZ,1487.0,Inhambane,148.0,Mozambique,104345.0,Massinga,both,identical +96912,35.75,-22.75,MOZ,1487.0,Inhambane,148.0,Mozambique,104345.0,Massinga,35.75,-22.75,MOZ,1487.0,Inhambane,148.0,Mozambique,104345.0,Massinga,both,identical +96927,43.25,-22.75,MDG,1433.0,Toliara,141.0,Madagascar,104075.0,Atsimo Andrefana,43.25,-22.75,MDG,1433.0,Toliara,141.0,Madagascar,104075.0,Atsimo Andrefana,both,identical +96928,43.75,-22.75,MDG,1433.0,Toliara,141.0,Madagascar,104075.0,Atsimo Andrefana,43.75,-22.75,MDG,1433.0,Toliara,141.0,Madagascar,104075.0,Atsimo Andrefana,both,identical +96929,44.25,-22.75,MDG,1433.0,Toliara,141.0,Madagascar,104075.0,Atsimo Andrefana,44.25,-22.75,MDG,1433.0,Toliara,141.0,Madagascar,104075.0,Atsimo Andrefana,both,identical +96930,44.75,-22.75,MDG,1433.0,Toliara,141.0,Madagascar,104075.0,Atsimo Andrefana,44.75,-22.75,MDG,1433.0,Toliara,141.0,Madagascar,104075.0,Atsimo Andrefana,both,identical +96931,45.25,-22.75,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104064.0,Ihorombe,45.25,-22.75,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104064.0,Ihorombe,both,identical +96932,45.75,-22.75,MDG,1433.0,Toliara,141.0,Madagascar,104074.0,Anosy,45.75,-22.75,MDG,1433.0,Toliara,141.0,Madagascar,104074.0,Anosy,both,identical +96933,46.25,-22.75,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104064.0,Ihorombe,46.25,-22.75,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104064.0,Ihorombe,both,identical +96934,46.75,-22.75,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104064.0,Ihorombe,46.75,-22.75,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104064.0,Ihorombe,both,identical +96935,47.25,-22.75,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104061.0,Atsimo Atsinanana,47.25,-22.75,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104061.0,Atsimo Atsinanana,both,identical +96936,47.75,-22.75,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104061.0,Atsimo Atsinanana,47.75,-22.75,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104061.0,Atsimo Atsinanana,both,identical +97589,14.25,-22.25,NAM,1495.0,Erongo,149.0,Namibia,104460.0,Arandis,14.25,-22.25,NAM,1495.0,Erongo,149.0,Namibia,104460.0,Arandis,both,identical +97590,14.75,-22.25,NAM,1495.0,Erongo,149.0,Namibia,104460.0,Arandis,14.75,-22.25,NAM,1495.0,Erongo,149.0,Namibia,104460.0,Arandis,both,identical +97591,15.25,-22.25,NAM,1495.0,Erongo,149.0,Namibia,104462.0,Karibib,15.25,-22.25,NAM,1495.0,Erongo,149.0,Namibia,104462.0,Karibib,both,identical +97592,15.75,-22.25,NAM,1495.0,Erongo,149.0,Namibia,104462.0,Karibib,15.75,-22.25,NAM,1495.0,Erongo,149.0,Namibia,104462.0,Karibib,both,identical +97593,16.25,-22.25,NAM,1495.0,Erongo,149.0,Namibia,104462.0,Karibib,16.25,-22.25,NAM,1495.0,Erongo,149.0,Namibia,104462.0,Karibib,both,identical +97594,16.75,-22.25,NAM,1507.0,Otjozondjupa,149.0,Namibia,104555.0,Okahandja,16.75,-22.25,NAM,1507.0,Otjozondjupa,149.0,Namibia,104555.0,Okahandja,both,identical +97595,17.25,-22.25,NAM,1500.0,Khomas,149.0,Namibia,104496.0,Windhoek Rural,17.25,-22.25,NAM,1500.0,Khomas,149.0,Namibia,104496.0,Windhoek Rural,both,identical +97596,17.75,-22.25,NAM,1500.0,Khomas,149.0,Namibia,104496.0,Windhoek Rural,17.75,-22.25,NAM,1500.0,Khomas,149.0,Namibia,104496.0,Windhoek Rural,both,identical +97597,18.25,-22.25,NAM,1503.0,Omaheke,149.0,Namibia,104519.0,Okarukambe (Steinhausen),18.25,-22.25,NAM,1503.0,Omaheke,149.0,Namibia,104519.0,Okarukambe (Steinhausen),both,identical +97598,18.75,-22.25,NAM,1503.0,Omaheke,149.0,Namibia,104519.0,Okarukambe (Steinhausen),18.75,-22.25,NAM,1503.0,Omaheke,149.0,Namibia,104519.0,Okarukambe (Steinhausen),both,identical +97599,19.25,-22.25,NAM,1503.0,Omaheke,149.0,Namibia,104518.0,Kalahari,19.25,-22.25,NAM,1503.0,Omaheke,149.0,Namibia,104518.0,Kalahari,both,identical +97600,19.75,-22.25,NAM,1503.0,Omaheke,149.0,Namibia,104518.0,Kalahari,19.75,-22.25,NAM,1503.0,Omaheke,149.0,Namibia,104518.0,Kalahari,both,identical +97601,20.25,-22.25,BWA,1087.0,Ghanzi,106.0,Botswana,101800.0,Ghanzi,20.25,-22.25,BWA,1087.0,Ghanzi,106.0,Botswana,101800.0,Ghanzi,both,identical +97602,20.75,-22.25,BWA,1087.0,Ghanzi,106.0,Botswana,101800.0,Ghanzi,20.75,-22.25,BWA,1087.0,Ghanzi,106.0,Botswana,101800.0,Ghanzi,both,identical +97603,21.25,-22.25,BWA,1087.0,Ghanzi,106.0,Botswana,101800.0,Ghanzi,21.25,-22.25,BWA,1087.0,Ghanzi,106.0,Botswana,101800.0,Ghanzi,both,identical +97604,21.75,-22.25,BWA,1087.0,Ghanzi,106.0,Botswana,101800.0,Ghanzi,21.75,-22.25,BWA,1087.0,Ghanzi,106.0,Botswana,101800.0,Ghanzi,both,identical +97605,22.25,-22.25,BWA,1087.0,Ghanzi,106.0,Botswana,101800.0,Ghanzi,22.25,-22.25,BWA,1087.0,Ghanzi,106.0,Botswana,101800.0,Ghanzi,both,identical +97606,22.75,-22.25,BWA,1087.0,Ghanzi,106.0,Botswana,101800.0,Ghanzi,22.75,-22.25,BWA,1087.0,Ghanzi,106.0,Botswana,101800.0,Ghanzi,both,identical +97607,23.25,-22.25,BWA,1087.0,Ghanzi,106.0,Botswana,101799.0,Central Kgalagadi Game Reserve,23.25,-22.25,BWA,1087.0,Ghanzi,106.0,Botswana,101799.0,Central Kgalagadi Game Reserve,both,identical +97608,23.75,-22.25,BWA,1087.0,Ghanzi,106.0,Botswana,101799.0,Central Kgalagadi Game Reserve,23.75,-22.25,BWA,1087.0,Ghanzi,106.0,Botswana,101799.0,Central Kgalagadi Game Reserve,both,identical +97609,24.25,-22.25,BWA,1087.0,Ghanzi,106.0,Botswana,101799.0,Central Kgalagadi Game Reserve,24.25,-22.25,BWA,1087.0,Ghanzi,106.0,Botswana,101799.0,Central Kgalagadi Game Reserve,both,identical +97610,24.75,-22.25,BWA,1087.0,Ghanzi,106.0,Botswana,101799.0,Central Kgalagadi Game Reserve,24.75,-22.25,BWA,1087.0,Ghanzi,106.0,Botswana,101799.0,Central Kgalagadi Game Reserve,both,identical +97611,25.25,-22.25,BWA,1083.0,Central,106.0,Botswana,101794.0,Serowe Palapye,25.25,-22.25,BWA,1083.0,Central,106.0,Botswana,101794.0,Serowe Palapye,both,identical +97612,25.75,-22.25,BWA,1083.0,Central,106.0,Botswana,101794.0,Serowe Palapye,25.75,-22.25,BWA,1083.0,Central,106.0,Botswana,101794.0,Serowe Palapye,both,identical +97613,26.25,-22.25,BWA,1083.0,Central,106.0,Botswana,101794.0,Serowe Palapye,26.25,-22.25,BWA,1083.0,Central,106.0,Botswana,101794.0,Serowe Palapye,both,identical +97614,26.75,-22.25,BWA,1083.0,Central,106.0,Botswana,101794.0,Serowe Palapye,26.75,-22.25,BWA,1083.0,Central,106.0,Botswana,101794.0,Serowe Palapye,both,identical +97615,27.25,-22.25,BWA,1083.0,Central,106.0,Botswana,101794.0,Serowe Palapye,27.25,-22.25,BWA,1083.0,Central,106.0,Botswana,101794.0,Serowe Palapye,both,identical +97616,27.75,-22.25,BWA,1083.0,Central,106.0,Botswana,101791.0,Bobonong,27.75,-22.25,BWA,1083.0,Central,106.0,Botswana,101791.0,Bobonong,both,identical +97617,28.25,-22.25,BWA,1083.0,Central,106.0,Botswana,101791.0,Bobonong,28.25,-22.25,BWA,1083.0,Central,106.0,Botswana,101791.0,Bobonong,both,identical +97618,28.75,-22.25,BWA,1083.0,Central,106.0,Botswana,101791.0,Bobonong,28.75,-22.25,BWA,1083.0,Central,106.0,Botswana,101791.0,Bobonong,both,identical +97619,29.25,-22.25,ZAF,1611.0,Limpopo,159.0,South Africa,105641.0,Vhembe,29.25,-22.25,ZAF,1611.0,Limpopo,159.0,South Africa,105641.0,Vhembe,both,identical +97620,29.75,-22.25,ZAF,1611.0,Limpopo,159.0,South Africa,105641.0,Vhembe,29.75,-22.25,ZAF,1611.0,Limpopo,159.0,South Africa,105641.0,Vhembe,both,identical +97621,30.25,-22.25,ZWE,1729.0,Matebeleland South,169.0,Zimbabwe,106694.0,Beitbridge,30.25,-22.25,ZWE,1729.0,Matebeleland South,169.0,Zimbabwe,106694.0,Beitbridge,both,identical +97622,30.75,-22.25,ZWE,1729.0,Matebeleland South,169.0,Zimbabwe,106694.0,Beitbridge,30.75,-22.25,ZWE,1729.0,Matebeleland South,169.0,Zimbabwe,106694.0,Beitbridge,both,identical +97623,31.25,-22.25,ZWE,1727.0,Masvingo,169.0,Zimbabwe,106681.0,Chiredzi,31.25,-22.25,ZWE,1727.0,Masvingo,169.0,Zimbabwe,106681.0,Chiredzi,both,identical +97624,31.75,-22.25,MOZ,1486.0,Gaza,148.0,Mozambique,104325.0,Chicualacuala,31.75,-22.25,MOZ,1486.0,Gaza,148.0,Mozambique,104325.0,Chicualacuala,both,identical +97625,32.25,-22.25,MOZ,1486.0,Gaza,148.0,Mozambique,104325.0,Chicualacuala,32.25,-22.25,MOZ,1486.0,Gaza,148.0,Mozambique,104325.0,Chicualacuala,both,identical +97626,32.75,-22.25,MOZ,1486.0,Gaza,148.0,Mozambique,104333.0,Mapai,32.75,-22.25,MOZ,1486.0,Gaza,148.0,Mozambique,104333.0,Mapai,both,identical +97627,33.25,-22.25,MOZ,1486.0,Gaza,148.0,Mozambique,104326.0,Chigubo,33.25,-22.25,MOZ,1486.0,Gaza,148.0,Mozambique,104326.0,Chigubo,both,identical +97628,33.75,-22.25,MOZ,1487.0,Inhambane,148.0,Mozambique,104344.0,Mabote,33.75,-22.25,MOZ,1487.0,Inhambane,148.0,Mozambique,104344.0,Mabote,both,identical +97629,34.25,-22.25,MOZ,1487.0,Inhambane,148.0,Mozambique,104337.0,Funhalouro,34.25,-22.25,MOZ,1487.0,Inhambane,148.0,Mozambique,104337.0,Funhalouro,both,identical +97630,34.75,-22.25,MOZ,1487.0,Inhambane,148.0,Mozambique,104349.0,Vilankulo,34.75,-22.25,MOZ,1487.0,Inhambane,148.0,Mozambique,104349.0,Vilankulo,both,identical +97631,35.25,-22.25,MOZ,1487.0,Inhambane,148.0,Mozambique,104349.0,Vilankulo,35.25,-22.25,MOZ,1487.0,Inhambane,148.0,Mozambique,104349.0,Vilankulo,both,identical +97632,35.75,-22.25,MOZ,1487.0,Inhambane,148.0,Mozambique,104349.0,Vilankulo,35.75,-22.25,MOZ,1487.0,Inhambane,148.0,Mozambique,104349.0,Vilankulo,both,identical +97647,43.25,-22.25,MDG,1433.0,Toliara,141.0,Madagascar,104075.0,Atsimo Andrefana,43.25,-22.25,MDG,1433.0,Toliara,141.0,Madagascar,104075.0,Atsimo Andrefana,both,identical +97648,43.75,-22.25,MDG,1433.0,Toliara,141.0,Madagascar,104075.0,Atsimo Andrefana,43.75,-22.25,MDG,1433.0,Toliara,141.0,Madagascar,104075.0,Atsimo Andrefana,both,identical +97649,44.25,-22.25,MDG,1433.0,Toliara,141.0,Madagascar,104075.0,Atsimo Andrefana,44.25,-22.25,MDG,1433.0,Toliara,141.0,Madagascar,104075.0,Atsimo Andrefana,both,identical +97650,44.75,-22.25,MDG,1433.0,Toliara,141.0,Madagascar,104075.0,Atsimo Andrefana,44.75,-22.25,MDG,1433.0,Toliara,141.0,Madagascar,104075.0,Atsimo Andrefana,both,identical +97651,45.25,-22.25,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104064.0,Ihorombe,45.25,-22.25,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104064.0,Ihorombe,both,identical +97652,45.75,-22.25,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104064.0,Ihorombe,45.75,-22.25,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104064.0,Ihorombe,both,identical +97653,46.25,-22.25,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104064.0,Ihorombe,46.25,-22.25,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104064.0,Ihorombe,both,identical +97654,46.75,-22.25,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104064.0,Ihorombe,46.75,-22.25,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104064.0,Ihorombe,both,identical +97655,47.25,-22.25,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104062.0,Fitovinany,47.25,-22.25,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104062.0,Fitovinany,both,identical +97656,47.75,-22.25,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104062.0,Fitovinany,47.75,-22.25,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104062.0,Fitovinany,both,identical +97657,48.25,-22.25,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104062.0,Fitovinany,48.25,-22.25,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104062.0,Fitovinany,both,identical +98308,13.75,-21.75,NAM,1495.0,Erongo,149.0,Namibia,104460.0,Arandis,13.75,-21.75,NAM,1495.0,Erongo,149.0,Namibia,104460.0,Arandis,both,identical +98309,14.25,-21.75,NAM,1495.0,Erongo,149.0,Namibia,104460.0,Arandis,14.25,-21.75,NAM,1495.0,Erongo,149.0,Namibia,104460.0,Arandis,both,identical +98310,14.75,-21.75,NAM,1495.0,Erongo,149.0,Namibia,104461.0,Daures,14.75,-21.75,NAM,1495.0,Erongo,149.0,Namibia,104461.0,Daures,both,identical +98311,15.25,-21.75,NAM,1495.0,Erongo,149.0,Namibia,104461.0,Daures,15.25,-21.75,NAM,1495.0,Erongo,149.0,Namibia,104461.0,Daures,both,identical +98312,15.75,-21.75,NAM,1495.0,Erongo,149.0,Namibia,104462.0,Karibib,15.75,-21.75,NAM,1495.0,Erongo,149.0,Namibia,104462.0,Karibib,both,identical +98313,16.25,-21.75,NAM,1495.0,Erongo,149.0,Namibia,104462.0,Karibib,16.25,-21.75,NAM,1495.0,Erongo,149.0,Namibia,104462.0,Karibib,both,identical +98314,16.75,-21.75,NAM,1507.0,Otjozondjupa,149.0,Namibia,104555.0,Okahandja,16.75,-21.75,NAM,1507.0,Otjozondjupa,149.0,Namibia,104555.0,Okahandja,both,identical +98315,17.25,-21.75,NAM,1507.0,Otjozondjupa,149.0,Namibia,104557.0,Omatako,17.25,-21.75,NAM,1507.0,Otjozondjupa,149.0,Namibia,104557.0,Omatako,both,identical +98316,17.75,-21.75,NAM,1507.0,Otjozondjupa,149.0,Namibia,104557.0,Omatako,17.75,-21.75,NAM,1507.0,Otjozondjupa,149.0,Namibia,104557.0,Omatako,both,identical +98317,18.25,-21.75,NAM,1503.0,Omaheke,149.0,Namibia,104519.0,Okarukambe (Steinhausen),18.25,-21.75,NAM,1503.0,Omaheke,149.0,Namibia,104519.0,Okarukambe (Steinhausen),both,identical +98318,18.75,-21.75,NAM,1503.0,Omaheke,149.0,Namibia,104519.0,Okarukambe (Steinhausen),18.75,-21.75,NAM,1503.0,Omaheke,149.0,Namibia,104519.0,Okarukambe (Steinhausen),both,identical +98319,19.25,-21.75,NAM,1503.0,Omaheke,149.0,Namibia,104519.0,Okarukambe (Steinhausen),19.25,-21.75,NAM,1503.0,Omaheke,149.0,Namibia,104519.0,Okarukambe (Steinhausen),both,identical +98320,19.75,-21.75,NAM,1503.0,Omaheke,149.0,Namibia,104519.0,Okarukambe (Steinhausen),19.75,-21.75,NAM,1503.0,Omaheke,149.0,Namibia,104519.0,Okarukambe (Steinhausen),both,identical +98321,20.25,-21.75,NAM,1503.0,Omaheke,149.0,Namibia,104521.0,Otjombinde,20.25,-21.75,NAM,1503.0,Omaheke,149.0,Namibia,104521.0,Otjombinde,both,identical +98322,20.75,-21.75,NAM,1503.0,Omaheke,149.0,Namibia,104521.0,Otjombinde,20.75,-21.75,NAM,1503.0,Omaheke,149.0,Namibia,104521.0,Otjombinde,both,identical +98323,21.25,-21.75,BWA,1087.0,Ghanzi,106.0,Botswana,101800.0,Ghanzi,21.25,-21.75,BWA,1087.0,Ghanzi,106.0,Botswana,101800.0,Ghanzi,both,identical +98324,21.75,-21.75,BWA,1087.0,Ghanzi,106.0,Botswana,101800.0,Ghanzi,21.75,-21.75,BWA,1087.0,Ghanzi,106.0,Botswana,101800.0,Ghanzi,both,identical +98325,22.25,-21.75,BWA,1087.0,Ghanzi,106.0,Botswana,101800.0,Ghanzi,22.25,-21.75,BWA,1087.0,Ghanzi,106.0,Botswana,101800.0,Ghanzi,both,identical +98326,22.75,-21.75,BWA,1087.0,Ghanzi,106.0,Botswana,101800.0,Ghanzi,22.75,-21.75,BWA,1087.0,Ghanzi,106.0,Botswana,101800.0,Ghanzi,both,identical +98327,23.25,-21.75,BWA,1087.0,Ghanzi,106.0,Botswana,101799.0,Central Kgalagadi Game Reserve,23.25,-21.75,BWA,1087.0,Ghanzi,106.0,Botswana,101799.0,Central Kgalagadi Game Reserve,both,identical +98328,23.75,-21.75,BWA,1087.0,Ghanzi,106.0,Botswana,101799.0,Central Kgalagadi Game Reserve,23.75,-21.75,BWA,1087.0,Ghanzi,106.0,Botswana,101799.0,Central Kgalagadi Game Reserve,both,identical +98329,24.25,-21.75,BWA,1087.0,Ghanzi,106.0,Botswana,101799.0,Central Kgalagadi Game Reserve,24.25,-21.75,BWA,1087.0,Ghanzi,106.0,Botswana,101799.0,Central Kgalagadi Game Reserve,both,identical +98330,24.75,-21.75,BWA,1083.0,Central,106.0,Botswana,101792.0,Boteti,24.75,-21.75,BWA,1083.0,Central,106.0,Botswana,101792.0,Boteti,both,identical +98331,25.25,-21.75,BWA,1083.0,Central,106.0,Botswana,101792.0,Boteti,25.25,-21.75,BWA,1083.0,Central,106.0,Botswana,101792.0,Boteti,both,identical +98332,25.75,-21.75,BWA,1083.0,Central,106.0,Botswana,101792.0,Boteti,25.75,-21.75,BWA,1083.0,Central,106.0,Botswana,101792.0,Boteti,both,identical +98333,26.25,-21.75,BWA,1083.0,Central,106.0,Botswana,101794.0,Serowe Palapye,26.25,-21.75,BWA,1083.0,Central,106.0,Botswana,101794.0,Serowe Palapye,both,identical +98334,26.75,-21.75,BWA,1083.0,Central,106.0,Botswana,101794.0,Serowe Palapye,26.75,-21.75,BWA,1083.0,Central,106.0,Botswana,101794.0,Serowe Palapye,both,identical +98335,27.25,-21.75,BWA,1083.0,Central,106.0,Botswana,101794.0,Serowe Palapye,27.25,-21.75,BWA,1083.0,Central,106.0,Botswana,101794.0,Serowe Palapye,both,identical +98336,27.75,-21.75,BWA,1083.0,Central,106.0,Botswana,101791.0,Bobonong,27.75,-21.75,BWA,1083.0,Central,106.0,Botswana,101791.0,Bobonong,both,identical +98337,28.25,-21.75,BWA,1083.0,Central,106.0,Botswana,101791.0,Bobonong,28.25,-21.75,BWA,1083.0,Central,106.0,Botswana,101791.0,Bobonong,both,identical +98338,28.75,-21.75,BWA,1083.0,Central,106.0,Botswana,101791.0,Bobonong,28.75,-21.75,BWA,1083.0,Central,106.0,Botswana,101791.0,Bobonong,both,identical +98339,29.25,-21.75,ZWE,1729.0,Matebeleland South,169.0,Zimbabwe,106696.0,Gwanda,29.25,-21.75,ZWE,1729.0,Matebeleland South,169.0,Zimbabwe,106696.0,Gwanda,both,identical +98340,29.75,-21.75,ZWE,1729.0,Matebeleland South,169.0,Zimbabwe,106694.0,Beitbridge,29.75,-21.75,ZWE,1729.0,Matebeleland South,169.0,Zimbabwe,106694.0,Beitbridge,both,identical +98341,30.25,-21.75,ZWE,1729.0,Matebeleland South,169.0,Zimbabwe,106694.0,Beitbridge,30.25,-21.75,ZWE,1729.0,Matebeleland South,169.0,Zimbabwe,106694.0,Beitbridge,both,identical +98342,30.75,-21.75,ZWE,1727.0,Masvingo,169.0,Zimbabwe,106685.0,Mwenezi,30.75,-21.75,ZWE,1727.0,Masvingo,169.0,Zimbabwe,106685.0,Mwenezi,both,identical +98343,31.25,-21.75,ZWE,1727.0,Masvingo,169.0,Zimbabwe,106681.0,Chiredzi,31.25,-21.75,ZWE,1727.0,Masvingo,169.0,Zimbabwe,106681.0,Chiredzi,both,identical +98344,31.75,-21.75,ZWE,1727.0,Masvingo,169.0,Zimbabwe,106681.0,Chiredzi,31.75,-21.75,ZWE,1727.0,Masvingo,169.0,Zimbabwe,106681.0,Chiredzi,both,identical +98345,32.25,-21.75,MOZ,1486.0,Gaza,148.0,Mozambique,104334.0,Massangena,32.25,-21.75,MOZ,1486.0,Gaza,148.0,Mozambique,104334.0,Massangena,both,identical +98346,32.75,-21.75,MOZ,1486.0,Gaza,148.0,Mozambique,104334.0,Massangena,32.75,-21.75,MOZ,1486.0,Gaza,148.0,Mozambique,104334.0,Massangena,both,identical +98347,33.25,-21.75,MOZ,1487.0,Inhambane,148.0,Mozambique,104344.0,Mabote,33.25,-21.75,MOZ,1487.0,Inhambane,148.0,Mozambique,104344.0,Mabote,both,identical +98348,33.75,-21.75,MOZ,1487.0,Inhambane,148.0,Mozambique,104344.0,Mabote,33.75,-21.75,MOZ,1487.0,Inhambane,148.0,Mozambique,104344.0,Mabote,both,identical +98349,34.25,-21.75,MOZ,1487.0,Inhambane,148.0,Mozambique,104344.0,Mabote,34.25,-21.75,MOZ,1487.0,Inhambane,148.0,Mozambique,104344.0,Mabote,both,identical +98350,34.75,-21.75,MOZ,1487.0,Inhambane,148.0,Mozambique,104342.0,Inhassoro,34.75,-21.75,MOZ,1487.0,Inhambane,148.0,Mozambique,104342.0,Inhassoro,both,identical +98351,35.25,-21.75,MOZ,1487.0,Inhambane,148.0,Mozambique,104342.0,Inhassoro,35.25,-21.75,MOZ,1487.0,Inhambane,148.0,Mozambique,104342.0,Inhassoro,both,identical +98367,43.25,-21.75,MDG,1433.0,Toliara,141.0,Madagascar,104075.0,Atsimo Andrefana,43.25,-21.75,MDG,1433.0,Toliara,141.0,Madagascar,104075.0,Atsimo Andrefana,both,identical +98368,43.75,-21.75,MDG,1433.0,Toliara,141.0,Madagascar,104075.0,Atsimo Andrefana,43.75,-21.75,MDG,1433.0,Toliara,141.0,Madagascar,104075.0,Atsimo Andrefana,both,identical +98369,44.25,-21.75,MDG,1433.0,Toliara,141.0,Madagascar,104076.0,Menabe,44.25,-21.75,MDG,1433.0,Toliara,141.0,Madagascar,104076.0,Menabe,both,identical +98370,44.75,-21.75,MDG,1433.0,Toliara,141.0,Madagascar,104075.0,Atsimo Andrefana,44.75,-21.75,MDG,1433.0,Toliara,141.0,Madagascar,104075.0,Atsimo Andrefana,both,identical +98371,45.25,-21.75,MDG,1433.0,Toliara,141.0,Madagascar,104075.0,Atsimo Andrefana,45.25,-21.75,MDG,1433.0,Toliara,141.0,Madagascar,104075.0,Atsimo Andrefana,both,identical +98372,45.75,-21.75,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104064.0,Ihorombe,45.75,-21.75,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104064.0,Ihorombe,both,identical +98373,46.25,-21.75,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104063.0,Haute Matsiatra,46.25,-21.75,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104063.0,Haute Matsiatra,both,identical +98374,46.75,-21.75,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104063.0,Haute Matsiatra,46.75,-21.75,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104063.0,Haute Matsiatra,both,identical +98375,47.25,-21.75,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104063.0,Haute Matsiatra,47.25,-21.75,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104063.0,Haute Matsiatra,both,identical +98376,47.75,-21.75,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104062.0,Fitovinany,47.75,-21.75,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104062.0,Fitovinany,both,identical +98377,48.25,-21.75,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104062.0,Fitovinany,48.25,-21.75,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104062.0,Fitovinany,both,identical +99027,13.25,-21.25,,,,,,,,,,,,,,,,,neither,both_unmapped +99028,13.75,-21.25,NAM,1495.0,Erongo,149.0,Namibia,104460.0,Arandis,13.75,-21.25,NAM,1495.0,Erongo,149.0,Namibia,104460.0,Arandis,both,identical +99029,14.25,-21.25,NAM,1495.0,Erongo,149.0,Namibia,104461.0,Daures,14.25,-21.25,NAM,1495.0,Erongo,149.0,Namibia,104461.0,Daures,both,identical +99030,14.75,-21.25,NAM,1495.0,Erongo,149.0,Namibia,104461.0,Daures,14.75,-21.25,NAM,1495.0,Erongo,149.0,Namibia,104461.0,Daures,both,identical +99031,15.25,-21.25,NAM,1495.0,Erongo,149.0,Namibia,104461.0,Daures,15.25,-21.25,NAM,1495.0,Erongo,149.0,Namibia,104461.0,Daures,both,identical +99032,15.75,-21.25,NAM,1495.0,Erongo,149.0,Namibia,104463.0,Omaruru,15.75,-21.25,NAM,1495.0,Erongo,149.0,Namibia,104463.0,Omaruru,both,identical +99033,16.25,-21.25,NAM,1495.0,Erongo,149.0,Namibia,104463.0,Omaruru,16.25,-21.25,NAM,1495.0,Erongo,149.0,Namibia,104463.0,Omaruru,both,identical +99034,16.75,-21.25,NAM,1507.0,Otjozondjupa,149.0,Namibia,104557.0,Omatako,16.75,-21.25,NAM,1507.0,Otjozondjupa,149.0,Namibia,104557.0,Omatako,both,identical +99035,17.25,-21.25,NAM,1507.0,Otjozondjupa,149.0,Namibia,104557.0,Omatako,17.25,-21.25,NAM,1507.0,Otjozondjupa,149.0,Namibia,104557.0,Omatako,both,identical +99036,17.75,-21.25,NAM,1507.0,Otjozondjupa,149.0,Namibia,104557.0,Omatako,17.75,-21.25,NAM,1507.0,Otjozondjupa,149.0,Namibia,104557.0,Omatako,both,identical +99037,18.25,-21.25,NAM,1507.0,Otjozondjupa,149.0,Namibia,104557.0,Omatako,18.25,-21.25,NAM,1507.0,Otjozondjupa,149.0,Namibia,104557.0,Omatako,both,identical +99038,18.75,-21.25,NAM,1503.0,Omaheke,149.0,Namibia,104519.0,Okarukambe (Steinhausen),18.75,-21.25,NAM,1503.0,Omaheke,149.0,Namibia,104519.0,Okarukambe (Steinhausen),both,identical +99039,19.25,-21.25,NAM,1503.0,Omaheke,149.0,Namibia,104520.0,Otjinene,19.25,-21.25,NAM,1503.0,Omaheke,149.0,Namibia,104520.0,Otjinene,both,identical +99040,19.75,-21.25,NAM,1503.0,Omaheke,149.0,Namibia,104516.0,Epukiro,19.75,-21.25,NAM,1503.0,Omaheke,149.0,Namibia,104516.0,Epukiro,both,identical +99041,20.25,-21.25,NAM,1503.0,Omaheke,149.0,Namibia,104521.0,Otjombinde,20.25,-21.25,NAM,1503.0,Omaheke,149.0,Namibia,104521.0,Otjombinde,both,identical +99042,20.75,-21.25,NAM,1503.0,Omaheke,149.0,Namibia,104521.0,Otjombinde,20.75,-21.25,NAM,1503.0,Omaheke,149.0,Namibia,104521.0,Otjombinde,both,identical +99043,21.25,-21.25,BWA,1087.0,Ghanzi,106.0,Botswana,101800.0,Ghanzi,21.25,-21.25,BWA,1087.0,Ghanzi,106.0,Botswana,101800.0,Ghanzi,both,identical +99044,21.75,-21.25,BWA,1087.0,Ghanzi,106.0,Botswana,101800.0,Ghanzi,21.75,-21.25,BWA,1087.0,Ghanzi,106.0,Botswana,101800.0,Ghanzi,both,identical +99045,22.25,-21.25,BWA,1087.0,Ghanzi,106.0,Botswana,101800.0,Ghanzi,22.25,-21.25,BWA,1087.0,Ghanzi,106.0,Botswana,101800.0,Ghanzi,both,identical +99046,22.75,-21.25,BWA,1087.0,Ghanzi,106.0,Botswana,101800.0,Ghanzi,22.75,-21.25,BWA,1087.0,Ghanzi,106.0,Botswana,101800.0,Ghanzi,both,identical +99047,23.25,-21.25,BWA,1087.0,Ghanzi,106.0,Botswana,101799.0,Central Kgalagadi Game Reserve,23.25,-21.25,BWA,1087.0,Ghanzi,106.0,Botswana,101799.0,Central Kgalagadi Game Reserve,both,identical +99048,23.75,-21.25,BWA,1087.0,Ghanzi,106.0,Botswana,101799.0,Central Kgalagadi Game Reserve,23.75,-21.25,BWA,1087.0,Ghanzi,106.0,Botswana,101799.0,Central Kgalagadi Game Reserve,both,identical +99049,24.25,-21.25,BWA,1083.0,Central,106.0,Botswana,101792.0,Boteti,24.25,-21.25,BWA,1083.0,Central,106.0,Botswana,101792.0,Boteti,both,identical +99050,24.75,-21.25,BWA,1083.0,Central,106.0,Botswana,101792.0,Boteti,24.75,-21.25,BWA,1083.0,Central,106.0,Botswana,101792.0,Boteti,both,identical +99051,25.25,-21.25,BWA,1083.0,Central,106.0,Botswana,101792.0,Boteti,25.25,-21.25,BWA,1083.0,Central,106.0,Botswana,101792.0,Boteti,both,identical +99052,25.75,-21.25,BWA,1083.0,Central,106.0,Botswana,101792.0,Boteti,25.75,-21.25,BWA,1083.0,Central,106.0,Botswana,101792.0,Boteti,both,identical +99053,26.25,-21.25,BWA,1083.0,Central,106.0,Botswana,101792.0,Boteti,26.25,-21.25,BWA,1083.0,Central,106.0,Botswana,101792.0,Boteti,both,identical +99054,26.75,-21.25,BWA,1083.0,Central,106.0,Botswana,101795.0,Tutume,26.75,-21.25,BWA,1083.0,Central,106.0,Botswana,101795.0,Tutume,both,identical +99055,27.25,-21.25,BWA,1083.0,Central,106.0,Botswana,101795.0,Tutume,27.25,-21.25,BWA,1083.0,Central,106.0,Botswana,101795.0,Tutume,both,identical +99056,27.75,-21.25,BWA,1093.0,North East,106.0,Botswana,101808.0,North East,27.75,-21.25,BWA,1093.0,North East,106.0,Botswana,101808.0,North East,both,identical +99057,28.25,-21.25,ZWE,1729.0,Matebeleland South,169.0,Zimbabwe,106699.0,Matobo,28.25,-21.25,ZWE,1729.0,Matebeleland South,169.0,Zimbabwe,106699.0,Matobo,both,identical +99058,28.75,-21.25,ZWE,1729.0,Matebeleland South,169.0,Zimbabwe,106696.0,Gwanda,28.75,-21.25,ZWE,1729.0,Matebeleland South,169.0,Zimbabwe,106696.0,Gwanda,both,identical +99059,29.25,-21.25,ZWE,1729.0,Matebeleland South,169.0,Zimbabwe,106696.0,Gwanda,29.25,-21.25,ZWE,1729.0,Matebeleland South,169.0,Zimbabwe,106696.0,Gwanda,both,identical +99060,29.75,-21.25,ZWE,1729.0,Matebeleland South,169.0,Zimbabwe,106696.0,Gwanda,29.75,-21.25,ZWE,1729.0,Matebeleland South,169.0,Zimbabwe,106696.0,Gwanda,both,identical +99061,30.25,-21.25,ZWE,1727.0,Masvingo,169.0,Zimbabwe,106685.0,Mwenezi,30.25,-21.25,ZWE,1727.0,Masvingo,169.0,Zimbabwe,106685.0,Mwenezi,both,identical +99062,30.75,-21.25,ZWE,1727.0,Masvingo,169.0,Zimbabwe,106685.0,Mwenezi,30.75,-21.25,ZWE,1727.0,Masvingo,169.0,Zimbabwe,106685.0,Mwenezi,both,identical +99063,31.25,-21.25,ZWE,1727.0,Masvingo,169.0,Zimbabwe,106685.0,Mwenezi,31.25,-21.25,ZWE,1727.0,Masvingo,169.0,Zimbabwe,106685.0,Mwenezi,both,identical +99064,31.75,-21.25,ZWE,1727.0,Masvingo,169.0,Zimbabwe,106681.0,Chiredzi,31.75,-21.25,ZWE,1727.0,Masvingo,169.0,Zimbabwe,106681.0,Chiredzi,both,identical +99065,32.25,-21.25,ZWE,1727.0,Masvingo,169.0,Zimbabwe,106681.0,Chiredzi,32.25,-21.25,ZWE,1727.0,Masvingo,169.0,Zimbabwe,106681.0,Chiredzi,both,identical +99066,32.75,-21.25,MOZ,1488.0,Manica,148.0,Mozambique,104356.0,Machaze,32.75,-21.25,MOZ,1488.0,Manica,148.0,Mozambique,104356.0,Machaze,both,identical +99067,33.25,-21.25,MOZ,1488.0,Manica,148.0,Mozambique,104356.0,Machaze,33.25,-21.25,MOZ,1488.0,Manica,148.0,Mozambique,104356.0,Machaze,both,identical +99068,33.75,-21.25,MOZ,1488.0,Manica,148.0,Mozambique,104356.0,Machaze,33.75,-21.25,MOZ,1488.0,Manica,148.0,Mozambique,104356.0,Machaze,both,identical +99069,34.25,-21.25,MOZ,1492.0,Sofala,148.0,Mozambique,104418.0,Machanga,34.25,-21.25,MOZ,1492.0,Sofala,148.0,Mozambique,104418.0,Machanga,both,identical +99070,34.75,-21.25,MOZ,1487.0,Inhambane,148.0,Mozambique,104338.0,Govuro,34.75,-21.25,MOZ,1487.0,Inhambane,148.0,Mozambique,104338.0,Govuro,both,identical +99071,35.25,-21.25,MOZ,1487.0,Inhambane,148.0,Mozambique,104338.0,Govuro,35.25,-21.25,MOZ,1487.0,Inhambane,148.0,Mozambique,104338.0,Govuro,both,identical +99087,43.25,-21.25,MDG,1433.0,Toliara,141.0,Madagascar,104075.0,Atsimo Andrefana,43.25,-21.25,MDG,1433.0,Toliara,141.0,Madagascar,104075.0,Atsimo Andrefana,both,identical +99088,43.75,-21.25,MDG,1433.0,Toliara,141.0,Madagascar,104076.0,Menabe,43.75,-21.25,MDG,1433.0,Toliara,141.0,Madagascar,104076.0,Menabe,both,identical +99089,44.25,-21.25,MDG,1433.0,Toliara,141.0,Madagascar,104076.0,Menabe,44.25,-21.25,MDG,1433.0,Toliara,141.0,Madagascar,104076.0,Menabe,both,identical +99090,44.75,-21.25,MDG,1433.0,Toliara,141.0,Madagascar,104076.0,Menabe,44.75,-21.25,MDG,1433.0,Toliara,141.0,Madagascar,104076.0,Menabe,both,identical +99091,45.25,-21.25,MDG,1433.0,Toliara,141.0,Madagascar,104075.0,Atsimo Andrefana,45.25,-21.25,MDG,1433.0,Toliara,141.0,Madagascar,104075.0,Atsimo Andrefana,both,identical +99092,45.75,-21.25,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104063.0,Haute Matsiatra,45.75,-21.25,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104063.0,Haute Matsiatra,both,identical +99093,46.25,-21.25,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104063.0,Haute Matsiatra,46.25,-21.25,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104063.0,Haute Matsiatra,both,identical +99094,46.75,-21.25,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104063.0,Haute Matsiatra,46.75,-21.25,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104063.0,Haute Matsiatra,both,identical +99095,47.25,-21.25,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104063.0,Haute Matsiatra,47.25,-21.25,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104063.0,Haute Matsiatra,both,identical +99096,47.75,-21.25,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104065.0,Vatovavy,47.75,-21.25,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104065.0,Vatovavy,both,identical +99097,48.25,-21.25,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104065.0,Vatovavy,48.25,-21.25,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104065.0,Vatovavy,both,identical +99747,13.25,-20.75,NAM,1501.0,Kunene,149.0,Namibia,104500.0,Khorixas,13.25,-20.75,NAM,1501.0,Kunene,149.0,Namibia,104500.0,Khorixas,both,identical +99748,13.75,-20.75,NAM,1501.0,Kunene,149.0,Namibia,104500.0,Khorixas,13.75,-20.75,NAM,1501.0,Kunene,149.0,Namibia,104500.0,Khorixas,both,identical +99749,14.25,-20.75,NAM,1501.0,Kunene,149.0,Namibia,104500.0,Khorixas,14.25,-20.75,NAM,1501.0,Kunene,149.0,Namibia,104500.0,Khorixas,both,identical +99750,14.75,-20.75,NAM,1501.0,Kunene,149.0,Namibia,104500.0,Khorixas,14.75,-20.75,NAM,1501.0,Kunene,149.0,Namibia,104500.0,Khorixas,both,identical +99751,15.25,-20.75,NAM,1495.0,Erongo,149.0,Namibia,104461.0,Daures,15.25,-20.75,NAM,1495.0,Erongo,149.0,Namibia,104461.0,Daures,both,identical +99752,15.75,-20.75,NAM,1507.0,Otjozondjupa,149.0,Namibia,104559.0,Otjiwarongo,15.75,-20.75,NAM,1507.0,Otjozondjupa,149.0,Namibia,104559.0,Otjiwarongo,both,identical +99753,16.25,-20.75,NAM,1507.0,Otjozondjupa,149.0,Namibia,104559.0,Otjiwarongo,16.25,-20.75,NAM,1507.0,Otjozondjupa,149.0,Namibia,104559.0,Otjiwarongo,both,identical +99754,16.75,-20.75,NAM,1507.0,Otjozondjupa,149.0,Namibia,104557.0,Omatako,16.75,-20.75,NAM,1507.0,Otjozondjupa,149.0,Namibia,104557.0,Omatako,both,identical +99755,17.25,-20.75,NAM,1507.0,Otjozondjupa,149.0,Namibia,104557.0,Omatako,17.25,-20.75,NAM,1507.0,Otjozondjupa,149.0,Namibia,104557.0,Omatako,both,identical +99756,17.75,-20.75,NAM,1507.0,Otjozondjupa,149.0,Namibia,104556.0,Okakarara,17.75,-20.75,NAM,1507.0,Otjozondjupa,149.0,Namibia,104556.0,Okakarara,both,identical +99757,18.25,-20.75,NAM,1507.0,Otjozondjupa,149.0,Namibia,104556.0,Okakarara,18.25,-20.75,NAM,1507.0,Otjozondjupa,149.0,Namibia,104556.0,Okakarara,both,identical +99758,18.75,-20.75,NAM,1503.0,Omaheke,149.0,Namibia,104520.0,Otjinene,18.75,-20.75,NAM,1503.0,Omaheke,149.0,Namibia,104520.0,Otjinene,both,identical +99759,19.25,-20.75,NAM,1503.0,Omaheke,149.0,Namibia,104520.0,Otjinene,19.25,-20.75,NAM,1503.0,Omaheke,149.0,Namibia,104520.0,Otjinene,both,identical +99760,19.75,-20.75,NAM,1503.0,Omaheke,149.0,Namibia,104516.0,Epukiro,19.75,-20.75,NAM,1503.0,Omaheke,149.0,Namibia,104516.0,Epukiro,both,identical +99761,20.25,-20.75,NAM,1503.0,Omaheke,149.0,Namibia,104521.0,Otjombinde,20.25,-20.75,NAM,1503.0,Omaheke,149.0,Namibia,104521.0,Otjombinde,both,identical +99762,20.75,-20.75,NAM,1503.0,Omaheke,149.0,Namibia,104521.0,Otjombinde,20.75,-20.75,NAM,1503.0,Omaheke,149.0,Namibia,104521.0,Otjombinde,both,identical +99763,21.25,-20.75,BWA,1094.0,North West,106.0,Botswana,101811.0,Ngamiland West,21.25,-20.75,BWA,1094.0,North West,106.0,Botswana,101811.0,Ngamiland West,both,identical +99764,21.75,-20.75,BWA,1094.0,North West,106.0,Botswana,101811.0,Ngamiland West,21.75,-20.75,BWA,1094.0,North West,106.0,Botswana,101811.0,Ngamiland West,both,identical +99765,22.25,-20.75,BWA,1094.0,North West,106.0,Botswana,101810.0,Ngamiland East,22.25,-20.75,BWA,1094.0,North West,106.0,Botswana,101810.0,Ngamiland East,both,identical +99766,22.75,-20.75,BWA,1094.0,North West,106.0,Botswana,101810.0,Ngamiland East,22.75,-20.75,BWA,1094.0,North West,106.0,Botswana,101810.0,Ngamiland East,both,identical +99767,23.25,-20.75,BWA,1094.0,North West,106.0,Botswana,101810.0,Ngamiland East,23.25,-20.75,BWA,1094.0,North West,106.0,Botswana,101810.0,Ngamiland East,both,identical +99768,23.75,-20.75,BWA,1094.0,North West,106.0,Botswana,101810.0,Ngamiland East,23.75,-20.75,BWA,1094.0,North West,106.0,Botswana,101810.0,Ngamiland East,both,identical +99769,24.25,-20.75,BWA,1083.0,Central,106.0,Botswana,101792.0,Boteti,24.25,-20.75,BWA,1083.0,Central,106.0,Botswana,101792.0,Boteti,both,identical +99770,24.75,-20.75,BWA,1083.0,Central,106.0,Botswana,101792.0,Boteti,24.75,-20.75,BWA,1083.0,Central,106.0,Botswana,101792.0,Boteti,both,identical +99771,25.25,-20.75,BWA,1083.0,Central,106.0,Botswana,101792.0,Boteti,25.25,-20.75,BWA,1083.0,Central,106.0,Botswana,101792.0,Boteti,both,identical +99772,25.75,-20.75,BWA,1083.0,Central,106.0,Botswana,101795.0,Tutume,25.75,-20.75,BWA,1083.0,Central,106.0,Botswana,101795.0,Tutume,both,identical +99773,26.25,-20.75,BWA,1083.0,Central,106.0,Botswana,101795.0,Tutume,26.25,-20.75,BWA,1083.0,Central,106.0,Botswana,101795.0,Tutume,both,identical +99774,26.75,-20.75,BWA,1083.0,Central,106.0,Botswana,101795.0,Tutume,26.75,-20.75,BWA,1083.0,Central,106.0,Botswana,101795.0,Tutume,both,identical +99775,27.25,-20.75,BWA,1083.0,Central,106.0,Botswana,101795.0,Tutume,27.25,-20.75,BWA,1083.0,Central,106.0,Botswana,101795.0,Tutume,both,identical +99776,27.75,-20.75,ZWE,1729.0,Matebeleland South,169.0,Zimbabwe,106698.0,Mangwe,27.75,-20.75,ZWE,1729.0,Matebeleland South,169.0,Zimbabwe,106698.0,Mangwe,both,identical +99777,28.25,-20.75,ZWE,1729.0,Matebeleland South,169.0,Zimbabwe,106699.0,Matobo,28.25,-20.75,ZWE,1729.0,Matebeleland South,169.0,Zimbabwe,106699.0,Matobo,both,identical +99778,28.75,-20.75,ZWE,1729.0,Matebeleland South,169.0,Zimbabwe,106696.0,Gwanda,28.75,-20.75,ZWE,1729.0,Matebeleland South,169.0,Zimbabwe,106696.0,Gwanda,both,identical +99779,29.25,-20.75,ZWE,1729.0,Matebeleland South,169.0,Zimbabwe,106697.0,Insiza,29.25,-20.75,ZWE,1729.0,Matebeleland South,169.0,Zimbabwe,106697.0,Insiza,both,identical +99780,29.75,-20.75,ZWE,1730.0,Midlands,169.0,Zimbabwe,106706.0,Mberengwa,29.75,-20.75,ZWE,1730.0,Midlands,169.0,Zimbabwe,106706.0,Mberengwa,both,identical +99781,30.25,-20.75,ZWE,1730.0,Midlands,169.0,Zimbabwe,106706.0,Mberengwa,30.25,-20.75,ZWE,1730.0,Midlands,169.0,Zimbabwe,106706.0,Mberengwa,both,identical +99782,30.75,-20.75,ZWE,1727.0,Masvingo,169.0,Zimbabwe,106682.0,Chivi,30.75,-20.75,ZWE,1727.0,Masvingo,169.0,Zimbabwe,106682.0,Chivi,both,identical +99783,31.25,-20.75,ZWE,1727.0,Masvingo,169.0,Zimbabwe,106681.0,Chiredzi,31.25,-20.75,ZWE,1727.0,Masvingo,169.0,Zimbabwe,106681.0,Chiredzi,both,identical +99784,31.75,-20.75,ZWE,1727.0,Masvingo,169.0,Zimbabwe,106681.0,Chiredzi,31.75,-20.75,ZWE,1727.0,Masvingo,169.0,Zimbabwe,106681.0,Chiredzi,both,identical +99785,32.25,-20.75,ZWE,1723.0,Manicaland,169.0,Zimbabwe,106651.0,Chipinge,32.25,-20.75,ZWE,1723.0,Manicaland,169.0,Zimbabwe,106651.0,Chipinge,both,identical +99786,32.75,-20.75,MOZ,1488.0,Manica,148.0,Mozambique,104359.0,Mossurize,32.75,-20.75,MOZ,1488.0,Manica,148.0,Mozambique,104359.0,Mossurize,both,identical +99787,33.25,-20.75,MOZ,1488.0,Manica,148.0,Mozambique,104356.0,Machaze,33.25,-20.75,MOZ,1488.0,Manica,148.0,Mozambique,104356.0,Machaze,both,identical +99788,33.75,-20.75,MOZ,1488.0,Manica,148.0,Mozambique,104356.0,Machaze,33.75,-20.75,MOZ,1488.0,Manica,148.0,Mozambique,104356.0,Machaze,both,identical +99789,34.25,-20.75,MOZ,1492.0,Sofala,148.0,Mozambique,104415.0,Chibabava,34.25,-20.75,MOZ,1492.0,Sofala,148.0,Mozambique,104415.0,Chibabava,both,identical +99790,34.75,-20.75,MOZ,1492.0,Sofala,148.0,Mozambique,104418.0,Machanga,34.75,-20.75,MOZ,1492.0,Sofala,148.0,Mozambique,104418.0,Machanga,both,identical +99791,35.25,-20.75,MOZ,1492.0,Sofala,148.0,Mozambique,104418.0,Machanga,35.25,-20.75,MOZ,1492.0,Sofala,148.0,Mozambique,104418.0,Machanga,both,identical +99808,43.75,-20.75,MDG,1433.0,Toliara,141.0,Madagascar,104076.0,Menabe,43.75,-20.75,MDG,1433.0,Toliara,141.0,Madagascar,104076.0,Menabe,both,identical +99809,44.25,-20.75,MDG,1433.0,Toliara,141.0,Madagascar,104076.0,Menabe,44.25,-20.75,MDG,1433.0,Toliara,141.0,Madagascar,104076.0,Menabe,both,identical +99810,44.75,-20.75,MDG,1433.0,Toliara,141.0,Madagascar,104076.0,Menabe,44.75,-20.75,MDG,1433.0,Toliara,141.0,Madagascar,104076.0,Menabe,both,identical +99811,45.25,-20.75,MDG,1433.0,Toliara,141.0,Madagascar,104076.0,Menabe,45.25,-20.75,MDG,1433.0,Toliara,141.0,Madagascar,104076.0,Menabe,both,identical +99812,45.75,-20.75,MDG,1433.0,Toliara,141.0,Madagascar,104076.0,Menabe,45.75,-20.75,MDG,1433.0,Toliara,141.0,Madagascar,104076.0,Menabe,both,identical +99813,46.25,-20.75,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104060.0,Amoron'I Mania,46.25,-20.75,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104060.0,Amoron'I Mania,both,identical +99814,46.75,-20.75,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104060.0,Amoron'I Mania,46.75,-20.75,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104060.0,Amoron'I Mania,both,identical +99815,47.25,-20.75,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104060.0,Amoron'I Mania,47.25,-20.75,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104060.0,Amoron'I Mania,both,identical +99816,47.75,-20.75,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104065.0,Vatovavy,47.75,-20.75,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104065.0,Vatovavy,both,identical +99817,48.25,-20.75,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104065.0,Vatovavy,48.25,-20.75,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104065.0,Vatovavy,both,identical +99818,48.75,-20.75,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104065.0,Vatovavy,48.75,-20.75,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104065.0,Vatovavy,both,identical +99835,57.25,-20.75,MUS,1472.0,Savannah,145.0,Mauritius,104234.0,Administrative Unit Not Available,57.25,-20.75,MUS,1472.0,Savannah,145.0,Mauritius,104234.0,Administrative Unit Not Available,both,identical +99836,57.75,-20.75,MUS,1472.0,Savannah,145.0,Mauritius,104234.0,Administrative Unit Not Available,57.75,-20.75,MUS,1472.0,Savannah,145.0,Mauritius,104234.0,Administrative Unit Not Available,both,identical +100467,13.25,-20.25,NAM,1501.0,Kunene,149.0,Namibia,104500.0,Khorixas,13.25,-20.25,NAM,1501.0,Kunene,149.0,Namibia,104500.0,Khorixas,both,identical +100468,13.75,-20.25,NAM,1501.0,Kunene,149.0,Namibia,104500.0,Khorixas,13.75,-20.25,NAM,1501.0,Kunene,149.0,Namibia,104500.0,Khorixas,both,identical +100469,14.25,-20.25,NAM,1501.0,Kunene,149.0,Namibia,104500.0,Khorixas,14.25,-20.25,NAM,1501.0,Kunene,149.0,Namibia,104500.0,Khorixas,both,identical +100470,14.75,-20.25,NAM,1501.0,Kunene,149.0,Namibia,104500.0,Khorixas,14.75,-20.25,NAM,1501.0,Kunene,149.0,Namibia,104500.0,Khorixas,both,identical +100471,15.25,-20.25,NAM,1501.0,Kunene,149.0,Namibia,104499.0,Kamanjab,15.25,-20.25,NAM,1501.0,Kunene,149.0,Namibia,104499.0,Kamanjab,both,identical +100472,15.75,-20.25,NAM,1501.0,Kunene,149.0,Namibia,104499.0,Kamanjab,15.75,-20.25,NAM,1501.0,Kunene,149.0,Namibia,104499.0,Kamanjab,both,identical +100473,16.25,-20.25,NAM,1501.0,Kunene,149.0,Namibia,104502.0,Outjo,16.25,-20.25,NAM,1501.0,Kunene,149.0,Namibia,104502.0,Outjo,both,identical +100474,16.75,-20.25,NAM,1507.0,Otjozondjupa,149.0,Namibia,104559.0,Otjiwarongo,16.75,-20.25,NAM,1507.0,Otjozondjupa,149.0,Namibia,104559.0,Otjiwarongo,both,identical +100475,17.25,-20.25,NAM,1507.0,Otjozondjupa,149.0,Namibia,104558.0,Otavi,17.25,-20.25,NAM,1507.0,Otjozondjupa,149.0,Namibia,104558.0,Otavi,both,identical +100476,17.75,-20.25,NAM,1507.0,Otjozondjupa,149.0,Namibia,104558.0,Otavi,17.75,-20.25,NAM,1507.0,Otjozondjupa,149.0,Namibia,104558.0,Otavi,both,identical +100477,18.25,-20.25,NAM,1507.0,Otjozondjupa,149.0,Namibia,104556.0,Okakarara,18.25,-20.25,NAM,1507.0,Otjozondjupa,149.0,Namibia,104556.0,Okakarara,both,identical +100478,18.75,-20.25,NAM,1507.0,Otjozondjupa,149.0,Namibia,104556.0,Okakarara,18.75,-20.25,NAM,1507.0,Otjozondjupa,149.0,Namibia,104556.0,Okakarara,both,identical +100479,19.25,-20.25,NAM,1507.0,Otjozondjupa,149.0,Namibia,104560.0,Tsumkwe,19.25,-20.25,NAM,1507.0,Otjozondjupa,149.0,Namibia,104560.0,Tsumkwe,both,identical +100480,19.75,-20.25,NAM,1507.0,Otjozondjupa,149.0,Namibia,104560.0,Tsumkwe,19.75,-20.25,NAM,1507.0,Otjozondjupa,149.0,Namibia,104560.0,Tsumkwe,both,identical +100481,20.25,-20.25,NAM,1507.0,Otjozondjupa,149.0,Namibia,104560.0,Tsumkwe,20.25,-20.25,NAM,1507.0,Otjozondjupa,149.0,Namibia,104560.0,Tsumkwe,both,identical +100482,20.75,-20.25,NAM,1507.0,Otjozondjupa,149.0,Namibia,104560.0,Tsumkwe,20.75,-20.25,NAM,1507.0,Otjozondjupa,149.0,Namibia,104560.0,Tsumkwe,both,identical +100483,21.25,-20.25,BWA,1094.0,North West,106.0,Botswana,101811.0,Ngamiland West,21.25,-20.25,BWA,1094.0,North West,106.0,Botswana,101811.0,Ngamiland West,both,identical +100484,21.75,-20.25,BWA,1094.0,North West,106.0,Botswana,101811.0,Ngamiland West,21.75,-20.25,BWA,1094.0,North West,106.0,Botswana,101811.0,Ngamiland West,both,identical +100485,22.25,-20.25,BWA,1094.0,North West,106.0,Botswana,101810.0,Ngamiland East,22.25,-20.25,BWA,1094.0,North West,106.0,Botswana,101810.0,Ngamiland East,both,identical +100486,22.75,-20.25,BWA,1094.0,North West,106.0,Botswana,101810.0,Ngamiland East,22.75,-20.25,BWA,1094.0,North West,106.0,Botswana,101810.0,Ngamiland East,both,identical +100487,23.25,-20.25,BWA,1094.0,North West,106.0,Botswana,101810.0,Ngamiland East,23.25,-20.25,BWA,1094.0,North West,106.0,Botswana,101810.0,Ngamiland East,both,identical +100488,23.75,-20.25,BWA,1094.0,North West,106.0,Botswana,101810.0,Ngamiland East,23.75,-20.25,BWA,1094.0,North West,106.0,Botswana,101810.0,Ngamiland East,both,identical +100489,24.25,-20.25,BWA,1094.0,North West,106.0,Botswana,101810.0,Ngamiland East,24.25,-20.25,BWA,1094.0,North West,106.0,Botswana,101810.0,Ngamiland East,both,identical +100490,24.75,-20.25,BWA,1094.0,North West,106.0,Botswana,101810.0,Ngamiland East,24.75,-20.25,BWA,1094.0,North West,106.0,Botswana,101810.0,Ngamiland East,both,identical +100491,25.25,-20.25,BWA,1083.0,Central,106.0,Botswana,101795.0,Tutume,25.25,-20.25,BWA,1083.0,Central,106.0,Botswana,101795.0,Tutume,both,identical +100492,25.75,-20.25,BWA,1083.0,Central,106.0,Botswana,101795.0,Tutume,25.75,-20.25,BWA,1083.0,Central,106.0,Botswana,101795.0,Tutume,both,identical +100493,26.25,-20.25,BWA,1083.0,Central,106.0,Botswana,101795.0,Tutume,26.25,-20.25,BWA,1083.0,Central,106.0,Botswana,101795.0,Tutume,both,identical +100494,26.75,-20.25,BWA,1083.0,Central,106.0,Botswana,101795.0,Tutume,26.75,-20.25,BWA,1083.0,Central,106.0,Botswana,101795.0,Tutume,both,identical +100495,27.25,-20.25,ZWE,1729.0,Matebeleland South,169.0,Zimbabwe,106695.0,Bulilima,27.25,-20.25,ZWE,1729.0,Matebeleland South,169.0,Zimbabwe,106695.0,Bulilima,both,identical +100496,27.75,-20.25,ZWE,1729.0,Matebeleland South,169.0,Zimbabwe,106695.0,Bulilima,27.75,-20.25,ZWE,1729.0,Matebeleland South,169.0,Zimbabwe,106695.0,Bulilima,both,identical +100497,28.25,-20.25,ZWE,1729.0,Matebeleland South,169.0,Zimbabwe,106695.0,Bulilima,28.25,-20.25,ZWE,1729.0,Matebeleland South,169.0,Zimbabwe,106695.0,Bulilima,both,identical +100498,28.75,-20.25,ZWE,1729.0,Matebeleland South,169.0,Zimbabwe,106700.0,Umzingwane,28.75,-20.25,ZWE,1729.0,Matebeleland South,169.0,Zimbabwe,106700.0,Umzingwane,both,identical +100499,29.25,-20.25,ZWE,1729.0,Matebeleland South,169.0,Zimbabwe,106697.0,Insiza,29.25,-20.25,ZWE,1729.0,Matebeleland South,169.0,Zimbabwe,106697.0,Insiza,both,identical +100500,29.75,-20.25,ZWE,1729.0,Matebeleland South,169.0,Zimbabwe,106697.0,Insiza,29.75,-20.25,ZWE,1729.0,Matebeleland South,169.0,Zimbabwe,106697.0,Insiza,both,identical +100501,30.25,-20.25,ZWE,1730.0,Midlands,169.0,Zimbabwe,106708.0,Zvishavane,30.25,-20.25,ZWE,1730.0,Midlands,169.0,Zimbabwe,106708.0,Zvishavane,both,identical +100502,30.75,-20.25,ZWE,1727.0,Masvingo,169.0,Zimbabwe,106684.0,Masvingo,30.75,-20.25,ZWE,1727.0,Masvingo,169.0,Zimbabwe,106684.0,Masvingo,both,identical +100503,31.25,-20.25,ZWE,1727.0,Masvingo,169.0,Zimbabwe,106686.0,Zaka,31.25,-20.25,ZWE,1727.0,Masvingo,169.0,Zimbabwe,106686.0,Zaka,both,identical +100504,31.75,-20.25,ZWE,1727.0,Masvingo,169.0,Zimbabwe,106680.0,Bikita,31.75,-20.25,ZWE,1727.0,Masvingo,169.0,Zimbabwe,106680.0,Bikita,both,identical +100505,32.25,-20.25,ZWE,1727.0,Masvingo,169.0,Zimbabwe,106680.0,Bikita,32.25,-20.25,ZWE,1727.0,Masvingo,169.0,Zimbabwe,106680.0,Bikita,both,identical +100506,32.75,-20.25,ZWE,1723.0,Manicaland,169.0,Zimbabwe,106651.0,Chipinge,32.75,-20.25,ZWE,1723.0,Manicaland,169.0,Zimbabwe,106651.0,Chipinge,both,identical +100507,33.25,-20.25,MOZ,1488.0,Manica,148.0,Mozambique,104359.0,Mossurize,33.25,-20.25,MOZ,1488.0,Manica,148.0,Mozambique,104359.0,Mossurize,both,identical +100508,33.75,-20.25,MOZ,1492.0,Sofala,148.0,Mozambique,104415.0,Chibabava,33.75,-20.25,MOZ,1492.0,Sofala,148.0,Mozambique,104415.0,Chibabava,both,identical +100509,34.25,-20.25,MOZ,1492.0,Sofala,148.0,Mozambique,104411.0,Búzi,34.25,-20.25,MOZ,1492.0,Sofala,148.0,Mozambique,104411.0,Búzi,both,identical +100510,34.75,-20.25,MOZ,1492.0,Sofala,148.0,Mozambique,104411.0,Búzi,34.75,-20.25,MOZ,1492.0,Sofala,148.0,Mozambique,104411.0,Búzi,both,identical +100529,44.25,-20.25,MDG,1433.0,Toliara,141.0,Madagascar,104076.0,Menabe,44.25,-20.25,MDG,1433.0,Toliara,141.0,Madagascar,104076.0,Menabe,both,identical +100530,44.75,-20.25,MDG,1433.0,Toliara,141.0,Madagascar,104076.0,Menabe,44.75,-20.25,MDG,1433.0,Toliara,141.0,Madagascar,104076.0,Menabe,both,identical +100531,45.25,-20.25,MDG,1433.0,Toliara,141.0,Madagascar,104076.0,Menabe,45.25,-20.25,MDG,1433.0,Toliara,141.0,Madagascar,104076.0,Menabe,both,identical +100532,45.75,-20.25,MDG,1433.0,Toliara,141.0,Madagascar,104076.0,Menabe,45.75,-20.25,MDG,1433.0,Toliara,141.0,Madagascar,104076.0,Menabe,both,identical +100533,46.25,-20.25,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104060.0,Amoron'I Mania,46.25,-20.25,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104060.0,Amoron'I Mania,both,identical +100534,46.75,-20.25,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104060.0,Amoron'I Mania,46.75,-20.25,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104060.0,Amoron'I Mania,both,identical +100535,47.25,-20.25,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104060.0,Amoron'I Mania,47.25,-20.25,MDG,1430.0,Fianarantsoa,141.0,Madagascar,104060.0,Amoron'I Mania,both,identical +100536,47.75,-20.25,MDG,1432.0,Toamasina,141.0,Madagascar,104072.0,Atsinanana,47.75,-20.25,MDG,1432.0,Toamasina,141.0,Madagascar,104072.0,Atsinanana,both,identical +100537,48.25,-20.25,MDG,1432.0,Toamasina,141.0,Madagascar,104072.0,Atsinanana,48.25,-20.25,MDG,1432.0,Toamasina,141.0,Madagascar,104072.0,Atsinanana,both,identical +100538,48.75,-20.25,MDG,1432.0,Toamasina,141.0,Madagascar,104072.0,Atsinanana,48.75,-20.25,MDG,1432.0,Toamasina,141.0,Madagascar,104072.0,Atsinanana,both,identical +100555,57.25,-20.25,MUS,1471.0,Rivinre Noire,145.0,Mauritius,104233.0,Administrative Unit Not Available,57.25,-20.25,MUS,1471.0,Rivinre Noire,145.0,Mauritius,104233.0,Administrative Unit Not Available,both,identical +100556,57.75,-20.25,MUS,1463.0,Flacq,145.0,Mauritius,104225.0,Administrative Unit Not Available,57.75,-20.25,MUS,1463.0,Flacq,145.0,Mauritius,104225.0,Administrative Unit Not Available,both,identical +101186,12.75,-19.75,NAM,1501.0,Kunene,149.0,Namibia,104503.0,Sesfontein,12.75,-19.75,NAM,1501.0,Kunene,149.0,Namibia,104503.0,Sesfontein,both,identical +101187,13.25,-19.75,NAM,1501.0,Kunene,149.0,Namibia,104503.0,Sesfontein,13.25,-19.75,NAM,1501.0,Kunene,149.0,Namibia,104503.0,Sesfontein,both,identical +101188,13.75,-19.75,NAM,1501.0,Kunene,149.0,Namibia,104503.0,Sesfontein,13.75,-19.75,NAM,1501.0,Kunene,149.0,Namibia,104503.0,Sesfontein,both,identical +101189,14.25,-19.75,NAM,1501.0,Kunene,149.0,Namibia,104503.0,Sesfontein,14.25,-19.75,NAM,1501.0,Kunene,149.0,Namibia,104503.0,Sesfontein,both,identical +101190,14.75,-19.75,NAM,1501.0,Kunene,149.0,Namibia,104499.0,Kamanjab,14.75,-19.75,NAM,1501.0,Kunene,149.0,Namibia,104499.0,Kamanjab,both,identical +101191,15.25,-19.75,NAM,1501.0,Kunene,149.0,Namibia,104499.0,Kamanjab,15.25,-19.75,NAM,1501.0,Kunene,149.0,Namibia,104499.0,Kamanjab,both,identical +101192,15.75,-19.75,NAM,1501.0,Kunene,149.0,Namibia,104499.0,Kamanjab,15.75,-19.75,NAM,1501.0,Kunene,149.0,Namibia,104499.0,Kamanjab,both,identical +101193,16.25,-19.75,NAM,1501.0,Kunene,149.0,Namibia,104502.0,Outjo,16.25,-19.75,NAM,1501.0,Kunene,149.0,Namibia,104502.0,Outjo,both,identical +101194,16.75,-19.75,NAM,1507.0,Otjozondjupa,149.0,Namibia,104558.0,Otavi,16.75,-19.75,NAM,1507.0,Otjozondjupa,149.0,Namibia,104558.0,Otavi,both,identical +101195,17.25,-19.75,NAM,1507.0,Otjozondjupa,149.0,Namibia,104558.0,Otavi,17.25,-19.75,NAM,1507.0,Otjozondjupa,149.0,Namibia,104558.0,Otavi,both,identical +101196,17.75,-19.75,NAM,1507.0,Otjozondjupa,149.0,Namibia,104558.0,Otavi,17.75,-19.75,NAM,1507.0,Otjozondjupa,149.0,Namibia,104558.0,Otavi,both,identical +101197,18.25,-19.75,NAM,1507.0,Otjozondjupa,149.0,Namibia,104554.0,Grootfontein,18.25,-19.75,NAM,1507.0,Otjozondjupa,149.0,Namibia,104554.0,Grootfontein,both,identical +101198,18.75,-19.75,NAM,1507.0,Otjozondjupa,149.0,Namibia,104556.0,Okakarara,18.75,-19.75,NAM,1507.0,Otjozondjupa,149.0,Namibia,104556.0,Okakarara,both,identical +101199,19.25,-19.75,NAM,1507.0,Otjozondjupa,149.0,Namibia,104560.0,Tsumkwe,19.25,-19.75,NAM,1507.0,Otjozondjupa,149.0,Namibia,104560.0,Tsumkwe,both,identical +101200,19.75,-19.75,NAM,1507.0,Otjozondjupa,149.0,Namibia,104560.0,Tsumkwe,19.75,-19.75,NAM,1507.0,Otjozondjupa,149.0,Namibia,104560.0,Tsumkwe,both,identical +101201,20.25,-19.75,NAM,1507.0,Otjozondjupa,149.0,Namibia,104560.0,Tsumkwe,20.25,-19.75,NAM,1507.0,Otjozondjupa,149.0,Namibia,104560.0,Tsumkwe,both,identical +101202,20.75,-19.75,NAM,1507.0,Otjozondjupa,149.0,Namibia,104560.0,Tsumkwe,20.75,-19.75,NAM,1507.0,Otjozondjupa,149.0,Namibia,104560.0,Tsumkwe,both,identical +101203,21.25,-19.75,BWA,1094.0,North West,106.0,Botswana,101811.0,Ngamiland West,21.25,-19.75,BWA,1094.0,North West,106.0,Botswana,101811.0,Ngamiland West,both,identical +101204,21.75,-19.75,BWA,1094.0,North West,106.0,Botswana,101811.0,Ngamiland West,21.75,-19.75,BWA,1094.0,North West,106.0,Botswana,101811.0,Ngamiland West,both,identical +101205,22.25,-19.75,BWA,1094.0,North West,106.0,Botswana,101811.0,Ngamiland West,22.25,-19.75,BWA,1094.0,North West,106.0,Botswana,101811.0,Ngamiland West,both,identical +101206,22.75,-19.75,BWA,1094.0,North West,106.0,Botswana,101809.0,Ngamiland Delta,22.75,-19.75,BWA,1094.0,North West,106.0,Botswana,101809.0,Ngamiland Delta,both,identical +101207,23.25,-19.75,BWA,1094.0,North West,106.0,Botswana,101809.0,Ngamiland Delta,23.25,-19.75,BWA,1094.0,North West,106.0,Botswana,101809.0,Ngamiland Delta,both,identical +101208,23.75,-19.75,BWA,1094.0,North West,106.0,Botswana,101810.0,Ngamiland East,23.75,-19.75,BWA,1094.0,North West,106.0,Botswana,101810.0,Ngamiland East,both,identical +101209,24.25,-19.75,BWA,1094.0,North West,106.0,Botswana,101810.0,Ngamiland East,24.25,-19.75,BWA,1094.0,North West,106.0,Botswana,101810.0,Ngamiland East,both,identical +101210,24.75,-19.75,BWA,1094.0,North West,106.0,Botswana,101810.0,Ngamiland East,24.75,-19.75,BWA,1094.0,North West,106.0,Botswana,101810.0,Ngamiland East,both,identical +101211,25.25,-19.75,BWA,1083.0,Central,106.0,Botswana,101795.0,Tutume,25.25,-19.75,BWA,1083.0,Central,106.0,Botswana,101795.0,Tutume,both,identical +101212,25.75,-19.75,BWA,1083.0,Central,106.0,Botswana,101795.0,Tutume,25.75,-19.75,BWA,1083.0,Central,106.0,Botswana,101795.0,Tutume,both,identical +101213,26.25,-19.75,BWA,1083.0,Central,106.0,Botswana,101795.0,Tutume,26.25,-19.75,BWA,1083.0,Central,106.0,Botswana,101795.0,Tutume,both,identical +101214,26.75,-19.75,ZWE,1728.0,Matebeleland North,169.0,Zimbabwe,106689.0,Hwange,26.75,-19.75,ZWE,1728.0,Matebeleland North,169.0,Zimbabwe,106689.0,Hwange,both,identical +101215,27.25,-19.75,ZWE,1728.0,Matebeleland North,169.0,Zimbabwe,106692.0,Tsholotsho,27.25,-19.75,ZWE,1728.0,Matebeleland North,169.0,Zimbabwe,106692.0,Tsholotsho,both,identical +101216,27.75,-19.75,ZWE,1728.0,Matebeleland North,169.0,Zimbabwe,106692.0,Tsholotsho,27.75,-19.75,ZWE,1728.0,Matebeleland North,169.0,Zimbabwe,106692.0,Tsholotsho,both,identical +101217,28.25,-19.75,ZWE,1728.0,Matebeleland North,169.0,Zimbabwe,106693.0,Umguza,28.25,-19.75,ZWE,1728.0,Matebeleland North,169.0,Zimbabwe,106693.0,Umguza,both,identical +101218,28.75,-19.75,ZWE,1728.0,Matebeleland North,169.0,Zimbabwe,106688.0,Bubi,28.75,-19.75,ZWE,1728.0,Matebeleland North,169.0,Zimbabwe,106688.0,Bubi,both,identical +101219,29.25,-19.75,ZWE,1729.0,Matebeleland South,169.0,Zimbabwe,106697.0,Insiza,29.25,-19.75,ZWE,1729.0,Matebeleland South,169.0,Zimbabwe,106697.0,Insiza,both,identical +101220,29.75,-19.75,ZWE,1730.0,Midlands,169.0,Zimbabwe,106704.0,Gweru,29.75,-19.75,ZWE,1730.0,Midlands,169.0,Zimbabwe,106704.0,Gweru,both,identical +101221,30.25,-19.75,ZWE,1730.0,Midlands,169.0,Zimbabwe,106707.0,Shurugwi,30.25,-19.75,ZWE,1730.0,Midlands,169.0,Zimbabwe,106707.0,Shurugwi,both,identical +101222,30.75,-19.75,ZWE,1727.0,Masvingo,169.0,Zimbabwe,106684.0,Masvingo,30.75,-19.75,ZWE,1727.0,Masvingo,169.0,Zimbabwe,106684.0,Masvingo,both,identical +101223,31.25,-19.75,ZWE,1727.0,Masvingo,169.0,Zimbabwe,106683.0,Gutu,31.25,-19.75,ZWE,1727.0,Masvingo,169.0,Zimbabwe,106683.0,Gutu,both,identical +101224,31.75,-19.75,ZWE,1727.0,Masvingo,169.0,Zimbabwe,106683.0,Gutu,31.75,-19.75,ZWE,1727.0,Masvingo,169.0,Zimbabwe,106683.0,Gutu,both,identical +101225,32.25,-19.75,ZWE,1723.0,Manicaland,169.0,Zimbabwe,106649.0,Buhera,32.25,-19.75,ZWE,1723.0,Manicaland,169.0,Zimbabwe,106649.0,Buhera,both,identical +101226,32.75,-19.75,ZWE,1723.0,Manicaland,169.0,Zimbabwe,106650.0,Chimanimani,32.75,-19.75,ZWE,1723.0,Manicaland,169.0,Zimbabwe,106650.0,Chimanimani,both,identical +101227,33.25,-19.75,MOZ,1488.0,Manica,148.0,Mozambique,104360.0,Sussundenga,33.25,-19.75,MOZ,1488.0,Manica,148.0,Mozambique,104360.0,Sussundenga,both,identical +101228,33.75,-19.75,MOZ,1488.0,Manica,148.0,Mozambique,104360.0,Sussundenga,33.75,-19.75,MOZ,1488.0,Manica,148.0,Mozambique,104360.0,Sussundenga,both,identical +101229,34.25,-19.75,MOZ,1492.0,Sofala,148.0,Mozambique,104411.0,Búzi,34.25,-19.75,MOZ,1492.0,Sofala,148.0,Mozambique,104411.0,Búzi,both,identical +101230,34.75,-19.75,MOZ,1492.0,Sofala,148.0,Mozambique,104411.0,Búzi,34.75,-19.75,MOZ,1492.0,Sofala,148.0,Mozambique,104411.0,Búzi,both,identical +101231,35.25,-19.75,MOZ,1492.0,Sofala,148.0,Mozambique,104416.0,Dondo,35.25,-19.75,MOZ,1492.0,Sofala,148.0,Mozambique,104416.0,Dondo,both,identical +101249,44.25,-19.75,MDG,1433.0,Toliara,141.0,Madagascar,104076.0,Menabe,44.25,-19.75,MDG,1433.0,Toliara,141.0,Madagascar,104076.0,Menabe,both,identical +101250,44.75,-19.75,MDG,1433.0,Toliara,141.0,Madagascar,104076.0,Menabe,44.75,-19.75,MDG,1433.0,Toliara,141.0,Madagascar,104076.0,Menabe,both,identical +101251,45.25,-19.75,MDG,1433.0,Toliara,141.0,Madagascar,104076.0,Menabe,45.25,-19.75,MDG,1433.0,Toliara,141.0,Madagascar,104076.0,Menabe,both,identical +101252,45.75,-19.75,MDG,1433.0,Toliara,141.0,Madagascar,104076.0,Menabe,45.75,-19.75,MDG,1433.0,Toliara,141.0,Madagascar,104076.0,Menabe,both,identical +101253,46.25,-19.75,MDG,1428.0,Antananarivo,141.0,Madagascar,104057.0,Vakinankaratra,46.25,-19.75,MDG,1428.0,Antananarivo,141.0,Madagascar,104057.0,Vakinankaratra,both,identical +101254,46.75,-19.75,MDG,1428.0,Antananarivo,141.0,Madagascar,104057.0,Vakinankaratra,46.75,-19.75,MDG,1428.0,Antananarivo,141.0,Madagascar,104057.0,Vakinankaratra,both,identical +101255,47.25,-19.75,MDG,1428.0,Antananarivo,141.0,Madagascar,104057.0,Vakinankaratra,47.25,-19.75,MDG,1428.0,Antananarivo,141.0,Madagascar,104057.0,Vakinankaratra,both,identical +101256,47.75,-19.75,MDG,1428.0,Antananarivo,141.0,Madagascar,104057.0,Vakinankaratra,47.75,-19.75,MDG,1428.0,Antananarivo,141.0,Madagascar,104057.0,Vakinankaratra,both,identical +101257,48.25,-19.75,MDG,1432.0,Toamasina,141.0,Madagascar,104072.0,Atsinanana,48.25,-19.75,MDG,1432.0,Toamasina,141.0,Madagascar,104072.0,Atsinanana,both,identical +101258,48.75,-19.75,MDG,1432.0,Toamasina,141.0,Madagascar,104072.0,Atsinanana,48.75,-19.75,MDG,1432.0,Toamasina,141.0,Madagascar,104072.0,Atsinanana,both,identical +101276,57.75,-19.75,MUS,1470.0,Rivinre Du Rempart,145.0,Mauritius,104232.0,Administrative Unit Not Available,57.75,-19.75,MUS,1470.0,Rivinre Du Rempart,145.0,Mauritius,104232.0,Administrative Unit Not Available,both,identical +101287,63.25,-19.75,MUS,1466.0,Ole Rodrigues,145.0,Mauritius,104228.0,Administrative Unit Not Available,63.25,-19.75,MUS,1466.0,Ole Rodrigues,145.0,Mauritius,104228.0,Administrative Unit Not Available,both,identical +101906,12.75,-19.25,NAM,1501.0,Kunene,149.0,Namibia,104503.0,Sesfontein,12.75,-19.25,NAM,1501.0,Kunene,149.0,Namibia,104503.0,Sesfontein,both,identical +101907,13.25,-19.25,NAM,1501.0,Kunene,149.0,Namibia,104503.0,Sesfontein,13.25,-19.25,NAM,1501.0,Kunene,149.0,Namibia,104503.0,Sesfontein,both,identical +101908,13.75,-19.25,NAM,1501.0,Kunene,149.0,Namibia,104503.0,Sesfontein,13.75,-19.25,NAM,1501.0,Kunene,149.0,Namibia,104503.0,Sesfontein,both,identical +101909,14.25,-19.25,NAM,1501.0,Kunene,149.0,Namibia,104503.0,Sesfontein,14.25,-19.25,NAM,1501.0,Kunene,149.0,Namibia,104503.0,Sesfontein,both,identical +101910,14.75,-19.25,NAM,1504.0,Omusati,149.0,Namibia,104526.0,Okahao,14.75,-19.25,NAM,1504.0,Omusati,149.0,Namibia,104526.0,Okahao,both,identical +101911,15.25,-19.25,NAM,1501.0,Kunene,149.0,Namibia,104499.0,Kamanjab,15.25,-19.25,NAM,1501.0,Kunene,149.0,Namibia,104499.0,Kamanjab,both,identical +101912,15.75,-19.25,NAM,1505.0,Oshana,149.0,Namibia,104543.0,Uuvudhiya,15.75,-19.25,NAM,1505.0,Oshana,149.0,Namibia,104543.0,Uuvudhiya,both,identical +101913,16.25,-19.25,NAM,1506.0,Oshikoto,149.0,Namibia,104549.0,Omuthiyagwiipundi,16.25,-19.25,NAM,1506.0,Oshikoto,149.0,Namibia,104549.0,Omuthiyagwiipundi,both,identical +101914,16.75,-19.25,NAM,1506.0,Oshikoto,149.0,Namibia,104549.0,Omuthiyagwiipundi,16.75,-19.25,NAM,1506.0,Oshikoto,149.0,Namibia,104549.0,Omuthiyagwiipundi,both,identical +101915,17.25,-19.25,NAM,1506.0,Oshikoto,149.0,Namibia,104558.0,Otavi,17.25,-19.25,NAM,1507.0,Otjozondjupa,149.0,Namibia,104558.0,Otavi,both,admin_reallocation +101916,17.75,-19.25,NAM,1506.0,Oshikoto,149.0,Namibia,104545.0,Guinas,17.75,-19.25,NAM,1506.0,Oshikoto,149.0,Namibia,104545.0,Guinas,both,identical +101917,18.25,-19.25,NAM,1507.0,Otjozondjupa,149.0,Namibia,104554.0,Grootfontein,18.25,-19.25,NAM,1507.0,Otjozondjupa,149.0,Namibia,104554.0,Grootfontein,both,identical +101918,18.75,-19.25,NAM,1507.0,Otjozondjupa,149.0,Namibia,104554.0,Grootfontein,18.75,-19.25,NAM,1507.0,Otjozondjupa,149.0,Namibia,104554.0,Grootfontein,both,identical +101919,19.25,-19.25,NAM,1507.0,Otjozondjupa,149.0,Namibia,104560.0,Tsumkwe,19.25,-19.25,NAM,1507.0,Otjozondjupa,149.0,Namibia,104560.0,Tsumkwe,both,identical +101920,19.75,-19.25,NAM,1507.0,Otjozondjupa,149.0,Namibia,104560.0,Tsumkwe,19.75,-19.25,NAM,1507.0,Otjozondjupa,149.0,Namibia,104560.0,Tsumkwe,both,identical +101921,20.25,-19.25,NAM,1507.0,Otjozondjupa,149.0,Namibia,104560.0,Tsumkwe,20.25,-19.25,NAM,1507.0,Otjozondjupa,149.0,Namibia,104560.0,Tsumkwe,both,identical +101922,20.75,-19.25,NAM,1507.0,Otjozondjupa,149.0,Namibia,104560.0,Tsumkwe,20.75,-19.25,NAM,1507.0,Otjozondjupa,149.0,Namibia,104560.0,Tsumkwe,both,identical +101923,21.25,-19.25,BWA,1094.0,North West,106.0,Botswana,101811.0,Ngamiland West,21.25,-19.25,BWA,1094.0,North West,106.0,Botswana,101811.0,Ngamiland West,both,identical +101924,21.75,-19.25,BWA,1094.0,North West,106.0,Botswana,101811.0,Ngamiland West,21.75,-19.25,BWA,1094.0,North West,106.0,Botswana,101811.0,Ngamiland West,both,identical +101925,22.25,-19.25,BWA,1094.0,North West,106.0,Botswana,101811.0,Ngamiland West,22.25,-19.25,BWA,1094.0,North West,106.0,Botswana,101811.0,Ngamiland West,both,identical +101926,22.75,-19.25,BWA,1094.0,North West,106.0,Botswana,101809.0,Ngamiland Delta,22.75,-19.25,BWA,1094.0,North West,106.0,Botswana,101809.0,Ngamiland Delta,both,identical +101927,23.25,-19.25,BWA,1094.0,North West,106.0,Botswana,101809.0,Ngamiland Delta,23.25,-19.25,BWA,1094.0,North West,106.0,Botswana,101809.0,Ngamiland Delta,both,identical +101928,23.75,-19.25,BWA,1094.0,North West,106.0,Botswana,101810.0,Ngamiland East,23.75,-19.25,BWA,1094.0,North West,106.0,Botswana,101810.0,Ngamiland East,both,identical +101929,24.25,-19.25,BWA,1094.0,North West,106.0,Botswana,101810.0,Ngamiland East,24.25,-19.25,BWA,1094.0,North West,106.0,Botswana,101810.0,Ngamiland East,both,identical +101930,24.75,-19.25,BWA,1094.0,North West,106.0,Botswana,101810.0,Ngamiland East,24.75,-19.25,BWA,1094.0,North West,106.0,Botswana,101810.0,Ngamiland East,both,identical +101931,25.25,-19.25,BWA,1083.0,Central,106.0,Botswana,101795.0,Tutume,25.25,-19.25,BWA,1083.0,Central,106.0,Botswana,101795.0,Tutume,both,identical +101932,25.75,-19.25,BWA,1083.0,Central,106.0,Botswana,101795.0,Tutume,25.75,-19.25,BWA,1083.0,Central,106.0,Botswana,101795.0,Tutume,both,identical +101933,26.25,-19.25,ZWE,1728.0,Matebeleland North,169.0,Zimbabwe,106689.0,Hwange,26.25,-19.25,ZWE,1728.0,Matebeleland North,169.0,Zimbabwe,106689.0,Hwange,both,identical +101934,26.75,-19.25,ZWE,1728.0,Matebeleland North,169.0,Zimbabwe,106689.0,Hwange,26.75,-19.25,ZWE,1728.0,Matebeleland North,169.0,Zimbabwe,106689.0,Hwange,both,identical +101935,27.25,-19.25,ZWE,1728.0,Matebeleland North,169.0,Zimbabwe,106689.0,Hwange,27.25,-19.25,ZWE,1728.0,Matebeleland North,169.0,Zimbabwe,106689.0,Hwange,both,identical +101936,27.75,-19.25,ZWE,1728.0,Matebeleland North,169.0,Zimbabwe,106690.0,Lupane,27.75,-19.25,ZWE,1728.0,Matebeleland North,169.0,Zimbabwe,106690.0,Lupane,both,identical +101937,28.25,-19.25,ZWE,1728.0,Matebeleland North,169.0,Zimbabwe,106688.0,Bubi,28.25,-19.25,ZWE,1728.0,Matebeleland North,169.0,Zimbabwe,106688.0,Bubi,both,identical +101938,28.75,-19.25,ZWE,1728.0,Matebeleland North,169.0,Zimbabwe,106691.0,Nkayi,28.75,-19.25,ZWE,1728.0,Matebeleland North,169.0,Zimbabwe,106691.0,Nkayi,both,identical +101939,29.25,-19.25,ZWE,1730.0,Midlands,169.0,Zimbabwe,106704.0,Gweru,29.25,-19.25,ZWE,1730.0,Midlands,169.0,Zimbabwe,106704.0,Gweru,both,identical +101940,29.75,-19.25,ZWE,1730.0,Midlands,169.0,Zimbabwe,106704.0,Gweru,29.75,-19.25,ZWE,1730.0,Midlands,169.0,Zimbabwe,106704.0,Gweru,both,identical +101941,30.25,-19.25,ZWE,1730.0,Midlands,169.0,Zimbabwe,106701.0,Chirumhanzu,30.25,-19.25,ZWE,1730.0,Midlands,169.0,Zimbabwe,106701.0,Chirumhanzu,both,identical +101942,30.75,-19.25,ZWE,1730.0,Midlands,169.0,Zimbabwe,106701.0,Chirumhanzu,30.75,-19.25,ZWE,1730.0,Midlands,169.0,Zimbabwe,106701.0,Chirumhanzu,both,identical +101943,31.25,-19.25,ZWE,1727.0,Masvingo,169.0,Zimbabwe,106683.0,Gutu,31.25,-19.25,ZWE,1727.0,Masvingo,169.0,Zimbabwe,106683.0,Gutu,both,identical +101944,31.75,-19.25,ZWE,1723.0,Manicaland,169.0,Zimbabwe,106649.0,Buhera,31.75,-19.25,ZWE,1723.0,Manicaland,169.0,Zimbabwe,106649.0,Buhera,both,identical +101945,32.25,-19.25,ZWE,1723.0,Manicaland,169.0,Zimbabwe,106653.0,Mutare,32.25,-19.25,ZWE,1723.0,Manicaland,169.0,Zimbabwe,106653.0,Mutare,both,identical +101946,32.75,-19.25,ZWE,1723.0,Manicaland,169.0,Zimbabwe,106653.0,Mutare,32.75,-19.25,ZWE,1723.0,Manicaland,169.0,Zimbabwe,106653.0,Mutare,both,identical +101947,33.25,-19.25,MOZ,1488.0,Manica,148.0,Mozambique,104360.0,Sussundenga,33.25,-19.25,MOZ,1488.0,Manica,148.0,Mozambique,104360.0,Sussundenga,both,identical +101948,33.75,-19.25,MOZ,1488.0,Manica,148.0,Mozambique,104353.0,Gondola,33.75,-19.25,MOZ,1488.0,Manica,148.0,Mozambique,104353.0,Gondola,both,identical +101949,34.25,-19.25,MOZ,1492.0,Sofala,148.0,Mozambique,104422.0,Nhamatanda,34.25,-19.25,MOZ,1492.0,Sofala,148.0,Mozambique,104422.0,Nhamatanda,both,identical +101950,34.75,-19.25,MOZ,1492.0,Sofala,148.0,Mozambique,104421.0,Muanza,34.75,-19.25,MOZ,1492.0,Sofala,148.0,Mozambique,104421.0,Muanza,both,identical +101951,35.25,-19.25,MOZ,1492.0,Sofala,148.0,Mozambique,104421.0,Muanza,35.25,-19.25,MOZ,1492.0,Sofala,148.0,Mozambique,104421.0,Muanza,both,identical +101952,35.75,-19.25,MOZ,1492.0,Sofala,148.0,Mozambique,104421.0,Muanza,35.75,-19.25,MOZ,1492.0,Sofala,148.0,Mozambique,104421.0,Muanza,both,identical +101969,44.25,-19.25,MDG,1431.0,Mahajanga,141.0,Madagascar,104068.0,Melaky,44.25,-19.25,MDG,1431.0,Mahajanga,141.0,Madagascar,104068.0,Melaky,both,identical +101970,44.75,-19.25,MDG,1433.0,Toliara,141.0,Madagascar,104076.0,Menabe,44.75,-19.25,MDG,1433.0,Toliara,141.0,Madagascar,104076.0,Menabe,both,identical +101971,45.25,-19.25,MDG,1433.0,Toliara,141.0,Madagascar,104076.0,Menabe,45.25,-19.25,MDG,1433.0,Toliara,141.0,Madagascar,104076.0,Menabe,both,identical +101972,45.75,-19.25,MDG,1428.0,Antananarivo,141.0,Madagascar,104055.0,Bongolava,45.75,-19.25,MDG,1428.0,Antananarivo,141.0,Madagascar,104055.0,Bongolava,both,identical +101973,46.25,-19.25,MDG,1428.0,Antananarivo,141.0,Madagascar,104055.0,Bongolava,46.25,-19.25,MDG,1428.0,Antananarivo,141.0,Madagascar,104055.0,Bongolava,both,identical +101974,46.75,-19.25,MDG,1428.0,Antananarivo,141.0,Madagascar,104056.0,Itasy,46.75,-19.25,MDG,1428.0,Antananarivo,141.0,Madagascar,104056.0,Itasy,both,identical +101975,47.25,-19.25,MDG,1428.0,Antananarivo,141.0,Madagascar,104056.0,Itasy,47.25,-19.25,MDG,1428.0,Antananarivo,141.0,Madagascar,104056.0,Itasy,both,identical +101976,47.75,-19.25,MDG,1428.0,Antananarivo,141.0,Madagascar,104054.0,Analamanga,47.75,-19.25,MDG,1428.0,Antananarivo,141.0,Madagascar,104054.0,Analamanga,both,identical +101977,48.25,-19.25,MDG,1432.0,Toamasina,141.0,Madagascar,104070.0,Alaotra Mangoro,48.25,-19.25,MDG,1432.0,Toamasina,141.0,Madagascar,104070.0,Alaotra Mangoro,both,identical +101978,48.75,-19.25,MDG,1432.0,Toamasina,141.0,Madagascar,104072.0,Atsinanana,48.75,-19.25,MDG,1432.0,Toamasina,141.0,Madagascar,104072.0,Atsinanana,both,identical +101979,49.25,-19.25,MDG,1432.0,Toamasina,141.0,Madagascar,104072.0,Atsinanana,49.25,-19.25,MDG,1432.0,Toamasina,141.0,Madagascar,104072.0,Atsinanana,both,identical +102625,12.25,-18.75,NAM,1501.0,Kunene,149.0,Namibia,104501.0,Opuwo,12.25,-18.75,NAM,1501.0,Kunene,149.0,Namibia,104501.0,Opuwo,both,identical +102626,12.75,-18.75,NAM,1501.0,Kunene,149.0,Namibia,104501.0,Opuwo,12.75,-18.75,NAM,1501.0,Kunene,149.0,Namibia,104501.0,Opuwo,both,identical +102627,13.25,-18.75,NAM,1501.0,Kunene,149.0,Namibia,104501.0,Opuwo,13.25,-18.75,NAM,1501.0,Kunene,149.0,Namibia,104501.0,Opuwo,both,identical +102628,13.75,-18.75,NAM,1501.0,Kunene,149.0,Namibia,104501.0,Opuwo,13.75,-18.75,NAM,1501.0,Kunene,149.0,Namibia,104501.0,Opuwo,both,identical +102629,14.25,-18.75,NAM,1501.0,Kunene,149.0,Namibia,104501.0,Opuwo,14.25,-18.75,NAM,1501.0,Kunene,149.0,Namibia,104501.0,Opuwo,both,identical +102630,14.75,-18.75,NAM,1504.0,Omusati,149.0,Namibia,104526.0,Okahao,14.75,-18.75,NAM,1504.0,Omusati,149.0,Namibia,104526.0,Okahao,both,identical +102631,15.25,-18.75,NAM,1504.0,Omusati,149.0,Namibia,104526.0,Okahao,15.25,-18.75,NAM,1504.0,Omusati,149.0,Namibia,104526.0,Okahao,both,identical +102632,15.75,-18.75,NAM,1505.0,Oshana,149.0,Namibia,104543.0,Uuvudhiya,15.75,-18.75,NAM,1505.0,Oshana,149.0,Namibia,104543.0,Uuvudhiya,both,identical +102633,16.25,-18.75,NAM,1506.0,Oshikoto,149.0,Namibia,104549.0,Omuthiyagwiipundi,16.25,-18.75,NAM,1506.0,Oshikoto,149.0,Namibia,104549.0,Omuthiyagwiipundi,both,identical +102634,16.75,-18.75,NAM,1506.0,Oshikoto,149.0,Namibia,104549.0,Omuthiyagwiipundi,16.75,-18.75,NAM,1506.0,Oshikoto,149.0,Namibia,104549.0,Omuthiyagwiipundi,both,identical +102635,17.25,-18.75,NAM,1506.0,Oshikoto,149.0,Namibia,104545.0,Guinas,17.25,-18.75,NAM,1506.0,Oshikoto,149.0,Namibia,104545.0,Guinas,both,identical +102636,17.75,-18.75,NAM,1506.0,Oshikoto,149.0,Namibia,104545.0,Guinas,17.75,-18.75,NAM,1506.0,Oshikoto,149.0,Namibia,104545.0,Guinas,both,identical +102637,18.25,-18.75,NAM,1499.0,Kavango West,149.0,Namibia,104487.0,Mpungu,18.25,-18.75,NAM,1499.0,Kavango West,149.0,Namibia,104487.0,Mpungu,both,identical +102638,18.75,-18.75,NAM,1499.0,Kavango West,149.0,Namibia,104485.0,Kahenge,18.75,-18.75,NAM,1499.0,Kavango West,149.0,Namibia,104485.0,Kahenge,both,identical +102639,19.25,-18.75,NAM,1499.0,Kavango West,149.0,Namibia,104486.0,Kapako,19.25,-18.75,NAM,1499.0,Kavango West,149.0,Namibia,104486.0,Kapako,both,identical +102640,19.75,-18.75,NAM,1498.0,Kavango East,149.0,Namibia,104479.0,Mashare,19.75,-18.75,NAM,1498.0,Kavango East,149.0,Namibia,104479.0,Mashare,both,identical +102641,20.25,-18.75,NAM,1498.0,Kavango East,149.0,Namibia,104479.0,Mashare,20.25,-18.75,NAM,1498.0,Kavango East,149.0,Namibia,104479.0,Mashare,both,identical +102642,20.75,-18.75,NAM,1498.0,Kavango East,149.0,Namibia,104481.0,Ndiyona,20.75,-18.75,NAM,1498.0,Kavango East,149.0,Namibia,104481.0,Ndiyona,both,identical +102643,21.25,-18.75,BWA,1094.0,North West,106.0,Botswana,101811.0,Ngamiland West,21.25,-18.75,BWA,1094.0,North West,106.0,Botswana,101811.0,Ngamiland West,both,identical +102644,21.75,-18.75,BWA,1094.0,North West,106.0,Botswana,101811.0,Ngamiland West,21.75,-18.75,BWA,1094.0,North West,106.0,Botswana,101811.0,Ngamiland West,both,identical +102645,22.25,-18.75,BWA,1094.0,North West,106.0,Botswana,101811.0,Ngamiland West,22.25,-18.75,BWA,1094.0,North West,106.0,Botswana,101811.0,Ngamiland West,both,identical +102646,22.75,-18.75,BWA,1094.0,North West,106.0,Botswana,101811.0,Ngamiland West,22.75,-18.75,BWA,1094.0,North West,106.0,Botswana,101811.0,Ngamiland West,both,identical +102647,23.25,-18.75,BWA,1094.0,North West,106.0,Botswana,101811.0,Ngamiland West,23.25,-18.75,BWA,1094.0,North West,106.0,Botswana,101811.0,Ngamiland West,both,identical +102648,23.75,-18.75,BWA,1094.0,North West,106.0,Botswana,101810.0,Ngamiland East,23.75,-18.75,BWA,1094.0,North West,106.0,Botswana,101810.0,Ngamiland East,both,identical +102649,24.25,-18.75,BWA,1084.0,Chobe,106.0,Botswana,101796.0,Chobe,24.25,-18.75,BWA,1084.0,Chobe,106.0,Botswana,101796.0,Chobe,both,identical +102650,24.75,-18.75,BWA,1084.0,Chobe,106.0,Botswana,101796.0,Chobe,24.75,-18.75,BWA,1084.0,Chobe,106.0,Botswana,101796.0,Chobe,both,identical +102651,25.25,-18.75,BWA,1084.0,Chobe,106.0,Botswana,101796.0,Chobe,25.25,-18.75,BWA,1084.0,Chobe,106.0,Botswana,101796.0,Chobe,both,identical +102652,25.75,-18.75,BWA,1084.0,Chobe,106.0,Botswana,101796.0,Chobe,25.75,-18.75,BWA,1084.0,Chobe,106.0,Botswana,101796.0,Chobe,both,identical +102653,26.25,-18.75,ZWE,1728.0,Matebeleland North,169.0,Zimbabwe,106689.0,Hwange,26.25,-18.75,ZWE,1728.0,Matebeleland North,169.0,Zimbabwe,106689.0,Hwange,both,identical +102654,26.75,-18.75,ZWE,1728.0,Matebeleland North,169.0,Zimbabwe,106689.0,Hwange,26.75,-18.75,ZWE,1728.0,Matebeleland North,169.0,Zimbabwe,106689.0,Hwange,both,identical +102655,27.25,-18.75,ZWE,1728.0,Matebeleland North,169.0,Zimbabwe,106689.0,Hwange,27.25,-18.75,ZWE,1728.0,Matebeleland North,169.0,Zimbabwe,106689.0,Hwange,both,identical +102656,27.75,-18.75,ZWE,1728.0,Matebeleland North,169.0,Zimbabwe,106690.0,Lupane,27.75,-18.75,ZWE,1728.0,Matebeleland North,169.0,Zimbabwe,106690.0,Lupane,both,identical +102657,28.25,-18.75,ZWE,1728.0,Matebeleland North,169.0,Zimbabwe,106690.0,Lupane,28.25,-18.75,ZWE,1728.0,Matebeleland North,169.0,Zimbabwe,106690.0,Lupane,both,identical +102658,28.75,-18.75,ZWE,1728.0,Matebeleland North,169.0,Zimbabwe,106691.0,Nkayi,28.75,-18.75,ZWE,1728.0,Matebeleland North,169.0,Zimbabwe,106691.0,Nkayi,both,identical +102659,29.25,-18.75,ZWE,1730.0,Midlands,169.0,Zimbabwe,106705.0,Kwekwe,29.25,-18.75,ZWE,1730.0,Midlands,169.0,Zimbabwe,106705.0,Kwekwe,both,identical +102660,29.75,-18.75,ZWE,1730.0,Midlands,169.0,Zimbabwe,106705.0,Kwekwe,29.75,-18.75,ZWE,1730.0,Midlands,169.0,Zimbabwe,106705.0,Kwekwe,both,identical +102661,30.25,-18.75,ZWE,1726.0,Mashonaland West,169.0,Zimbabwe,106677.0,Mhondoro Ngezi,30.25,-18.75,ZWE,1726.0,Mashonaland West,169.0,Zimbabwe,106677.0,Mhondoro Ngezi,both,identical +102662,30.75,-18.75,ZWE,1725.0,Mashonaland East,169.0,Zimbabwe,106664.0,Chikomba,30.75,-18.75,ZWE,1725.0,Mashonaland East,169.0,Zimbabwe,106664.0,Chikomba,both,identical +102663,31.25,-18.75,ZWE,1725.0,Mashonaland East,169.0,Zimbabwe,106664.0,Chikomba,31.25,-18.75,ZWE,1725.0,Mashonaland East,169.0,Zimbabwe,106664.0,Chikomba,both,identical +102664,31.75,-18.75,ZWE,1725.0,Mashonaland East,169.0,Zimbabwe,106666.0,Hwedza,31.75,-18.75,ZWE,1725.0,Mashonaland East,169.0,Zimbabwe,106666.0,Hwedza,both,identical +102665,32.25,-18.75,ZWE,1723.0,Manicaland,169.0,Zimbabwe,106652.0,Makoni,32.25,-18.75,ZWE,1723.0,Manicaland,169.0,Zimbabwe,106652.0,Makoni,both,identical +102666,32.75,-18.75,ZWE,1723.0,Manicaland,169.0,Zimbabwe,106654.0,Mutasa,32.75,-18.75,ZWE,1723.0,Manicaland,169.0,Zimbabwe,106654.0,Mutasa,both,identical +102667,33.25,-18.75,MOZ,1488.0,Manica,148.0,Mozambique,104362.0,Vanduzi,33.25,-18.75,MOZ,1488.0,Manica,148.0,Mozambique,104362.0,Vanduzi,both,identical +102668,33.75,-18.75,MOZ,1488.0,Manica,148.0,Mozambique,104417.0,Gorongoza,33.75,-18.75,MOZ,1492.0,Sofala,148.0,Mozambique,104417.0,Gorongoza,both,admin_reallocation +102669,34.25,-18.75,MOZ,1492.0,Sofala,148.0,Mozambique,104417.0,Gorongoza,34.25,-18.75,MOZ,1492.0,Sofala,148.0,Mozambique,104417.0,Gorongoza,both,identical +102670,34.75,-18.75,MOZ,1492.0,Sofala,148.0,Mozambique,104421.0,Muanza,34.75,-18.75,MOZ,1492.0,Sofala,148.0,Mozambique,104421.0,Muanza,both,identical +102671,35.25,-18.75,MOZ,1492.0,Sofala,148.0,Mozambique,104414.0,Cheringoma,35.25,-18.75,MOZ,1492.0,Sofala,148.0,Mozambique,104414.0,Cheringoma,both,identical +102672,35.75,-18.75,MOZ,1492.0,Sofala,148.0,Mozambique,104419.0,Marromeu,35.75,-18.75,MOZ,1492.0,Sofala,148.0,Mozambique,104419.0,Marromeu,both,identical +102673,36.25,-18.75,MOZ,1494.0,Zambézia,148.0,Mozambique,104439.0,Chinde,36.25,-18.75,MOZ,1494.0,Zambézia,148.0,Mozambique,104439.0,Chinde,both,identical +102674,36.75,-18.75,MOZ,1494.0,Zambézia,148.0,Mozambique,104439.0,Chinde,36.75,-18.75,MOZ,1494.0,Zambézia,148.0,Mozambique,104439.0,Chinde,both,identical +102689,44.25,-18.75,MDG,1431.0,Mahajanga,141.0,Madagascar,104068.0,Melaky,44.25,-18.75,MDG,1431.0,Mahajanga,141.0,Madagascar,104068.0,Melaky,both,identical +102690,44.75,-18.75,MDG,1431.0,Mahajanga,141.0,Madagascar,104068.0,Melaky,44.75,-18.75,MDG,1431.0,Mahajanga,141.0,Madagascar,104068.0,Melaky,both,identical +102691,45.25,-18.75,MDG,1433.0,Toliara,141.0,Madagascar,104076.0,Menabe,45.25,-18.75,MDG,1433.0,Toliara,141.0,Madagascar,104076.0,Menabe,both,identical +102692,45.75,-18.75,MDG,1428.0,Antananarivo,141.0,Madagascar,104055.0,Bongolava,45.75,-18.75,MDG,1428.0,Antananarivo,141.0,Madagascar,104055.0,Bongolava,both,identical +102693,46.25,-18.75,MDG,1428.0,Antananarivo,141.0,Madagascar,104055.0,Bongolava,46.25,-18.75,MDG,1428.0,Antananarivo,141.0,Madagascar,104055.0,Bongolava,both,identical +102694,46.75,-18.75,MDG,1428.0,Antananarivo,141.0,Madagascar,104056.0,Itasy,46.75,-18.75,MDG,1428.0,Antananarivo,141.0,Madagascar,104056.0,Itasy,both,identical +102695,47.25,-18.75,MDG,1428.0,Antananarivo,141.0,Madagascar,104054.0,Analamanga,47.25,-18.75,MDG,1428.0,Antananarivo,141.0,Madagascar,104054.0,Analamanga,both,identical +102696,47.75,-18.75,MDG,1428.0,Antananarivo,141.0,Madagascar,104054.0,Analamanga,47.75,-18.75,MDG,1428.0,Antananarivo,141.0,Madagascar,104054.0,Analamanga,both,identical +102697,48.25,-18.75,MDG,1432.0,Toamasina,141.0,Madagascar,104070.0,Alaotra Mangoro,48.25,-18.75,MDG,1432.0,Toamasina,141.0,Madagascar,104070.0,Alaotra Mangoro,both,identical +102698,48.75,-18.75,MDG,1432.0,Toamasina,141.0,Madagascar,104072.0,Atsinanana,48.75,-18.75,MDG,1432.0,Toamasina,141.0,Madagascar,104072.0,Atsinanana,both,identical +102699,49.25,-18.75,MDG,1432.0,Toamasina,141.0,Madagascar,104072.0,Atsinanana,49.25,-18.75,MDG,1432.0,Toamasina,141.0,Madagascar,104072.0,Atsinanana,both,identical +103344,11.75,-18.25,NAM,1501.0,Kunene,149.0,Namibia,104501.0,Opuwo,11.75,-18.25,NAM,1501.0,Kunene,149.0,Namibia,104501.0,Opuwo,both,identical +103345,12.25,-18.25,NAM,1501.0,Kunene,149.0,Namibia,104501.0,Opuwo,12.25,-18.25,NAM,1501.0,Kunene,149.0,Namibia,104501.0,Opuwo,both,identical +103346,12.75,-18.25,NAM,1501.0,Kunene,149.0,Namibia,104501.0,Opuwo,12.75,-18.25,NAM,1501.0,Kunene,149.0,Namibia,104501.0,Opuwo,both,identical +103347,13.25,-18.25,NAM,1501.0,Kunene,149.0,Namibia,104501.0,Opuwo,13.25,-18.25,NAM,1501.0,Kunene,149.0,Namibia,104501.0,Opuwo,both,identical +103348,13.75,-18.25,NAM,1501.0,Kunene,149.0,Namibia,104501.0,Opuwo,13.75,-18.25,NAM,1501.0,Kunene,149.0,Namibia,104501.0,Opuwo,both,identical +103349,14.25,-18.25,NAM,1501.0,Kunene,149.0,Namibia,104501.0,Opuwo,14.25,-18.25,NAM,1501.0,Kunene,149.0,Namibia,104501.0,Opuwo,both,identical +103350,14.75,-18.25,NAM,1504.0,Omusati,149.0,Namibia,104526.0,Okahao,14.75,-18.25,NAM,1504.0,Omusati,149.0,Namibia,104526.0,Okahao,both,identical +103351,15.25,-18.25,NAM,1504.0,Omusati,149.0,Namibia,104530.0,Otamanzi,15.25,-18.25,NAM,1504.0,Omusati,149.0,Namibia,104530.0,Otamanzi,both,identical +103352,15.75,-18.25,NAM,1505.0,Oshana,149.0,Namibia,104543.0,Uuvudhiya,15.75,-18.25,NAM,1505.0,Oshana,149.0,Namibia,104543.0,Uuvudhiya,both,identical +103353,16.25,-18.25,NAM,1506.0,Oshikoto,149.0,Namibia,104548.0,Omuntele,16.25,-18.25,NAM,1506.0,Oshikoto,149.0,Namibia,104548.0,Omuntele,both,identical +103354,16.75,-18.25,NAM,1506.0,Oshikoto,149.0,Namibia,104544.0,Eengodi,16.75,-18.25,NAM,1506.0,Oshikoto,149.0,Namibia,104544.0,Eengodi,both,identical +103355,17.25,-18.25,NAM,1506.0,Oshikoto,149.0,Namibia,104544.0,Eengodi,17.25,-18.25,NAM,1506.0,Oshikoto,149.0,Namibia,104544.0,Eengodi,both,identical +103356,17.75,-18.25,NAM,1506.0,Oshikoto,149.0,Namibia,104544.0,Eengodi,17.75,-18.25,NAM,1506.0,Oshikoto,149.0,Namibia,104544.0,Eengodi,both,identical +103357,18.25,-18.25,NAM,1499.0,Kavango West,149.0,Namibia,104487.0,Mpungu,18.25,-18.25,NAM,1499.0,Kavango West,149.0,Namibia,104487.0,Mpungu,both,identical +103358,18.75,-18.25,NAM,1499.0,Kavango West,149.0,Namibia,104485.0,Kahenge,18.75,-18.25,NAM,1499.0,Kavango West,149.0,Namibia,104485.0,Kahenge,both,identical +103359,19.25,-18.25,NAM,1499.0,Kavango West,149.0,Namibia,104486.0,Kapako,19.25,-18.25,NAM,1499.0,Kavango West,149.0,Namibia,104486.0,Kapako,both,identical +103360,19.75,-18.25,NAM,1498.0,Kavango East,149.0,Namibia,104483.0,Rundu Rural West,19.75,-18.25,NAM,1498.0,Kavango East,149.0,Namibia,104483.0,Rundu Rural West,both,identical +103361,20.25,-18.25,NAM,1498.0,Kavango East,149.0,Namibia,104479.0,Mashare,20.25,-18.25,NAM,1498.0,Kavango East,149.0,Namibia,104479.0,Mashare,both,identical +103362,20.75,-18.25,NAM,1498.0,Kavango East,149.0,Namibia,104481.0,Ndiyona,20.75,-18.25,NAM,1498.0,Kavango East,149.0,Namibia,104481.0,Ndiyona,both,identical +103363,21.25,-18.25,NAM,1498.0,Kavango East,149.0,Namibia,104480.0,Mukwe,21.25,-18.25,NAM,1498.0,Kavango East,149.0,Namibia,104480.0,Mukwe,both,identical +103364,21.75,-18.25,BWA,1094.0,North West,106.0,Botswana,101811.0,Ngamiland West,21.75,-18.25,NAM,1498.0,Kavango East,149.0,Namibia,104480.0,Mukwe,both,country_reassignment +103365,22.25,-18.25,BWA,1094.0,North West,106.0,Botswana,101811.0,Ngamiland West,22.25,-18.25,BWA,1094.0,North West,106.0,Botswana,101811.0,Ngamiland West,both,identical +103366,22.75,-18.25,BWA,1094.0,North West,106.0,Botswana,101811.0,Ngamiland West,22.75,-18.25,BWA,1094.0,North West,106.0,Botswana,101811.0,Ngamiland West,both,identical +103367,23.25,-18.25,BWA,1094.0,North West,106.0,Botswana,101811.0,Ngamiland West,23.25,-18.25,BWA,1094.0,North West,106.0,Botswana,101811.0,Ngamiland West,both,identical +103368,23.75,-18.25,NAM,1508.0,Zambezi,149.0,Namibia,104565.0,Linyanti,23.75,-18.25,NAM,1508.0,Zambezi,149.0,Namibia,104565.0,Linyanti,both,identical +103369,24.25,-18.25,BWA,1084.0,Chobe,106.0,Botswana,101796.0,Chobe,24.25,-18.25,BWA,1084.0,Chobe,106.0,Botswana,101796.0,Chobe,both,identical +103370,24.75,-18.25,BWA,1084.0,Chobe,106.0,Botswana,101796.0,Chobe,24.75,-18.25,BWA,1084.0,Chobe,106.0,Botswana,101796.0,Chobe,both,identical +103371,25.25,-18.25,BWA,1084.0,Chobe,106.0,Botswana,101796.0,Chobe,25.25,-18.25,BWA,1084.0,Chobe,106.0,Botswana,101796.0,Chobe,both,identical +103372,25.75,-18.25,ZWE,1728.0,Matebeleland North,169.0,Zimbabwe,106689.0,Hwange,25.75,-18.25,ZWE,1728.0,Matebeleland North,169.0,Zimbabwe,106689.0,Hwange,both,identical +103373,26.25,-18.25,ZWE,1728.0,Matebeleland North,169.0,Zimbabwe,106689.0,Hwange,26.25,-18.25,ZWE,1728.0,Matebeleland North,169.0,Zimbabwe,106689.0,Hwange,both,identical +103374,26.75,-18.25,ZWE,1728.0,Matebeleland North,169.0,Zimbabwe,106689.0,Hwange,26.75,-18.25,ZWE,1728.0,Matebeleland North,169.0,Zimbabwe,106689.0,Hwange,both,identical +103375,27.25,-18.25,ZWE,1728.0,Matebeleland North,169.0,Zimbabwe,106687.0,Binga,27.25,-18.25,ZWE,1728.0,Matebeleland North,169.0,Zimbabwe,106687.0,Binga,both,identical +103376,27.75,-18.25,ZWE,1728.0,Matebeleland North,169.0,Zimbabwe,106687.0,Binga,27.75,-18.25,ZWE,1728.0,Matebeleland North,169.0,Zimbabwe,106687.0,Binga,both,identical +103377,28.25,-18.25,ZWE,1730.0,Midlands,169.0,Zimbabwe,106703.0,Gokwe South,28.25,-18.25,ZWE,1730.0,Midlands,169.0,Zimbabwe,106703.0,Gokwe South,both,identical +103378,28.75,-18.25,ZWE,1730.0,Midlands,169.0,Zimbabwe,106703.0,Gokwe South,28.75,-18.25,ZWE,1730.0,Midlands,169.0,Zimbabwe,106703.0,Gokwe South,both,identical +103379,29.25,-18.25,ZWE,1730.0,Midlands,169.0,Zimbabwe,106703.0,Gokwe South,29.25,-18.25,ZWE,1730.0,Midlands,169.0,Zimbabwe,106703.0,Gokwe South,both,identical +103380,29.75,-18.25,ZWE,1726.0,Mashonaland West,169.0,Zimbabwe,106678.0,Sanyati,29.75,-18.25,ZWE,1726.0,Mashonaland West,169.0,Zimbabwe,106678.0,Sanyati,both,identical +103381,30.25,-18.25,ZWE,1726.0,Mashonaland West,169.0,Zimbabwe,106673.0,Chegutu,30.25,-18.25,ZWE,1726.0,Mashonaland West,169.0,Zimbabwe,106673.0,Chegutu,both,identical +103382,30.75,-18.25,ZWE,1726.0,Mashonaland West,169.0,Zimbabwe,106673.0,Chegutu,30.75,-18.25,ZWE,1726.0,Mashonaland West,169.0,Zimbabwe,106673.0,Chegutu,both,identical +103383,31.25,-18.25,ZWE,1725.0,Mashonaland East,169.0,Zimbabwe,106667.0,Marondera,31.25,-18.25,ZWE,1725.0,Mashonaland East,169.0,Zimbabwe,106667.0,Marondera,both,identical +103384,31.75,-18.25,ZWE,1725.0,Mashonaland East,169.0,Zimbabwe,106667.0,Marondera,31.75,-18.25,ZWE,1725.0,Mashonaland East,169.0,Zimbabwe,106667.0,Marondera,both,identical +103385,32.25,-18.25,ZWE,1723.0,Manicaland,169.0,Zimbabwe,106652.0,Makoni,32.25,-18.25,ZWE,1723.0,Manicaland,169.0,Zimbabwe,106652.0,Makoni,both,identical +103386,32.75,-18.25,ZWE,1723.0,Manicaland,169.0,Zimbabwe,106655.0,Nyanga,32.75,-18.25,ZWE,1723.0,Manicaland,169.0,Zimbabwe,106655.0,Nyanga,both,identical +103387,33.25,-18.25,MOZ,1488.0,Manica,148.0,Mozambique,104351.0,Báruè,33.25,-18.25,MOZ,1488.0,Manica,148.0,Mozambique,104351.0,Báruè,both,identical +103388,33.75,-18.25,MOZ,1488.0,Manica,148.0,Mozambique,104357.0,Macossa,33.75,-18.25,MOZ,1488.0,Manica,148.0,Mozambique,104357.0,Macossa,both,identical +103389,34.25,-18.25,MOZ,1492.0,Sofala,148.0,Mozambique,104417.0,Gorongoza,34.25,-18.25,MOZ,1492.0,Sofala,148.0,Mozambique,104417.0,Gorongoza,both,identical +103390,34.75,-18.25,MOZ,1492.0,Sofala,148.0,Mozambique,104420.0,Marínguè,34.75,-18.25,MOZ,1492.0,Sofala,148.0,Mozambique,104420.0,Marínguè,both,identical +103391,35.25,-18.25,MOZ,1492.0,Sofala,148.0,Mozambique,104414.0,Cheringoma,35.25,-18.25,MOZ,1492.0,Sofala,148.0,Mozambique,104414.0,Cheringoma,both,identical +103392,35.75,-18.25,MOZ,1492.0,Sofala,148.0,Mozambique,104419.0,Marromeu,35.75,-18.25,MOZ,1492.0,Sofala,148.0,Mozambique,104419.0,Marromeu,both,identical +103393,36.25,-18.25,MOZ,1494.0,Zambézia,148.0,Mozambique,104439.0,Chinde,36.25,-18.25,MOZ,1494.0,Zambézia,148.0,Mozambique,104439.0,Chinde,both,identical +103394,36.75,-18.25,MOZ,1494.0,Zambézia,148.0,Mozambique,104439.0,Chinde,36.75,-18.25,MOZ,1494.0,Zambézia,148.0,Mozambique,104439.0,Chinde,both,identical +103409,44.25,-18.25,MDG,1431.0,Mahajanga,141.0,Madagascar,104068.0,Melaky,44.25,-18.25,MDG,1431.0,Mahajanga,141.0,Madagascar,104068.0,Melaky,both,identical +103410,44.75,-18.25,MDG,1431.0,Mahajanga,141.0,Madagascar,104068.0,Melaky,44.75,-18.25,MDG,1431.0,Mahajanga,141.0,Madagascar,104068.0,Melaky,both,identical +103411,45.25,-18.25,MDG,1433.0,Toliara,141.0,Madagascar,104076.0,Menabe,45.25,-18.25,MDG,1433.0,Toliara,141.0,Madagascar,104076.0,Menabe,both,identical +103412,45.75,-18.25,MDG,1428.0,Antananarivo,141.0,Madagascar,104055.0,Bongolava,45.75,-18.25,MDG,1428.0,Antananarivo,141.0,Madagascar,104055.0,Bongolava,both,identical +103413,46.25,-18.25,MDG,1428.0,Antananarivo,141.0,Madagascar,104055.0,Bongolava,46.25,-18.25,MDG,1428.0,Antananarivo,141.0,Madagascar,104055.0,Bongolava,both,identical +103414,46.75,-18.25,MDG,1428.0,Antananarivo,141.0,Madagascar,104054.0,Analamanga,46.75,-18.25,MDG,1428.0,Antananarivo,141.0,Madagascar,104054.0,Analamanga,both,identical +103415,47.25,-18.25,MDG,1428.0,Antananarivo,141.0,Madagascar,104054.0,Analamanga,47.25,-18.25,MDG,1428.0,Antananarivo,141.0,Madagascar,104054.0,Analamanga,both,identical +103416,47.75,-18.25,MDG,1428.0,Antananarivo,141.0,Madagascar,104054.0,Analamanga,47.75,-18.25,MDG,1428.0,Antananarivo,141.0,Madagascar,104054.0,Analamanga,both,identical +103417,48.25,-18.25,MDG,1432.0,Toamasina,141.0,Madagascar,104070.0,Alaotra Mangoro,48.25,-18.25,MDG,1432.0,Toamasina,141.0,Madagascar,104070.0,Alaotra Mangoro,both,identical +103418,48.75,-18.25,MDG,1432.0,Toamasina,141.0,Madagascar,104072.0,Atsinanana,48.75,-18.25,MDG,1432.0,Toamasina,141.0,Madagascar,104072.0,Atsinanana,both,identical +103419,49.25,-18.25,MDG,1432.0,Toamasina,141.0,Madagascar,104072.0,Atsinanana,49.25,-18.25,MDG,1432.0,Toamasina,141.0,Madagascar,104072.0,Atsinanana,both,identical +104064,11.75,-17.75,NAM,1501.0,Kunene,149.0,Namibia,104498.0,Epupa,11.75,-17.75,NAM,1501.0,Kunene,149.0,Namibia,104498.0,Epupa,both,identical +104065,12.25,-17.75,NAM,1501.0,Kunene,149.0,Namibia,104498.0,Epupa,12.25,-17.75,NAM,1501.0,Kunene,149.0,Namibia,104498.0,Epupa,both,identical +104066,12.75,-17.75,NAM,1501.0,Kunene,149.0,Namibia,104498.0,Epupa,12.75,-17.75,NAM,1501.0,Kunene,149.0,Namibia,104498.0,Epupa,both,identical +104067,13.25,-17.75,NAM,1501.0,Kunene,149.0,Namibia,104498.0,Epupa,13.25,-17.75,NAM,1501.0,Kunene,149.0,Namibia,104498.0,Epupa,both,identical +104068,13.75,-17.75,NAM,1501.0,Kunene,149.0,Namibia,104498.0,Epupa,13.75,-17.75,NAM,1501.0,Kunene,149.0,Namibia,104498.0,Epupa,both,identical +104069,14.25,-17.75,NAM,1504.0,Omusati,149.0,Namibia,104532.0,Ruacana,14.25,-17.75,NAM,1504.0,Omusati,149.0,Namibia,104532.0,Ruacana,both,identical +104070,14.75,-17.75,NAM,1504.0,Omusati,149.0,Namibia,104533.0,Tsandi,14.75,-17.75,NAM,1504.0,Omusati,149.0,Namibia,104533.0,Tsandi,both,identical +104071,15.25,-17.75,NAM,1504.0,Omusati,149.0,Namibia,104525.0,Ogongo,15.25,-17.75,NAM,1504.0,Omusati,149.0,Namibia,104525.0,Ogongo,both,identical +104072,15.75,-17.75,NAM,1505.0,Oshana,149.0,Namibia,104505.0,Endola,15.75,-17.75,NAM,1502.0,Ohangwena,149.0,Namibia,104505.0,Endola,both,admin_reallocation +104073,16.25,-17.75,NAM,1502.0,Ohangwena,149.0,Namibia,104504.0,Eenhana,16.25,-17.75,NAM,1502.0,Ohangwena,149.0,Namibia,104504.0,Eenhana,both,identical +104074,16.75,-17.75,NAM,1502.0,Ohangwena,149.0,Namibia,104507.0,Epembe,16.75,-17.75,NAM,1502.0,Ohangwena,149.0,Namibia,104507.0,Epembe,both,identical +104075,17.25,-17.75,NAM,1502.0,Ohangwena,149.0,Namibia,104509.0,Okongo,17.25,-17.75,NAM,1502.0,Ohangwena,149.0,Namibia,104509.0,Okongo,both,identical +104076,17.75,-17.75,NAM,1502.0,Ohangwena,149.0,Namibia,104509.0,Okongo,17.75,-17.75,NAM,1502.0,Ohangwena,149.0,Namibia,104509.0,Okongo,both,identical +104077,18.25,-17.75,NAM,1499.0,Kavango West,149.0,Namibia,104487.0,Mpungu,18.25,-17.75,NAM,1499.0,Kavango West,149.0,Namibia,104487.0,Mpungu,both,identical +104078,18.75,-17.75,NAM,1499.0,Kavango West,149.0,Namibia,104485.0,Kahenge,18.75,-17.75,NAM,1499.0,Kavango West,149.0,Namibia,104485.0,Kahenge,both,identical +104079,19.25,-17.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101571.0,Calai,19.25,-17.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101571.0,Calai,both,identical +104080,19.75,-17.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101571.0,Calai,19.75,-17.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101571.0,Calai,both,identical +104081,20.25,-17.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101575.0,Dirico,20.25,-17.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101575.0,Dirico,both,identical +104082,20.75,-17.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101575.0,Dirico,20.75,-17.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101575.0,Dirico,both,identical +104083,21.25,-17.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101575.0,Dirico,21.25,-17.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101575.0,Dirico,both,identical +104084,21.75,-17.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101579.0,Rivungo,21.75,-17.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101579.0,Rivungo,both,identical +104085,22.25,-17.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101579.0,Rivungo,22.25,-17.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101579.0,Rivungo,both,identical +104086,22.75,-17.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101579.0,Rivungo,22.75,-17.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101579.0,Rivungo,both,identical +104087,23.25,-17.75,NAM,1508.0,Zambezi,149.0,Namibia,104564.0,Kongola,23.25,-17.75,NAM,1508.0,Zambezi,149.0,Namibia,104564.0,Kongola,both,identical +104088,23.75,-17.75,NAM,1508.0,Zambezi,149.0,Namibia,104564.0,Kongola,23.75,-17.75,NAM,1508.0,Zambezi,149.0,Namibia,104564.0,Kongola,both,identical +104089,24.25,-17.75,NAM,1508.0,Zambezi,149.0,Namibia,104566.0,Sibbinda,24.25,-17.75,NAM,1508.0,Zambezi,149.0,Namibia,104566.0,Sibbinda,both,identical +104090,24.75,-17.75,NAM,1508.0,Zambezi,149.0,Namibia,104561.0,Kabbe,24.75,-17.75,NAM,1508.0,Zambezi,149.0,Namibia,104561.0,Kabbe,both,identical +104091,25.25,-17.75,ZMB,1719.0,Southern,168.0,Zambia,106622.0,Kazungula,25.25,-17.75,ZMB,1719.0,Southern,168.0,Zambia,106622.0,Kazungula,both,identical +104092,25.75,-17.75,ZMB,1719.0,Southern,168.0,Zambia,106622.0,Kazungula,25.75,-17.75,ZMB,1719.0,Southern,168.0,Zambia,106622.0,Kazungula,both,identical +104093,26.25,-17.75,ZMB,1719.0,Southern,168.0,Zambia,106622.0,Kazungula,26.25,-17.75,ZMB,1719.0,Southern,168.0,Zambia,106622.0,Kazungula,both,identical +104094,26.75,-17.75,ZMB,1719.0,Southern,168.0,Zambia,106630.0,Zimba,26.75,-17.75,ZMB,1719.0,Southern,168.0,Zambia,106630.0,Zimba,both,identical +104095,27.25,-17.75,ZWE,1728.0,Matebeleland North,169.0,Zimbabwe,106687.0,Binga,27.25,-17.75,ZWE,1728.0,Matebeleland North,169.0,Zimbabwe,106687.0,Binga,both,identical +104096,27.75,-17.75,ZWE,1728.0,Matebeleland North,169.0,Zimbabwe,106687.0,Binga,27.75,-17.75,ZWE,1728.0,Matebeleland North,169.0,Zimbabwe,106687.0,Binga,both,identical +104097,28.25,-17.75,ZWE,1730.0,Midlands,169.0,Zimbabwe,106703.0,Gokwe South,28.25,-17.75,ZWE,1730.0,Midlands,169.0,Zimbabwe,106703.0,Gokwe South,both,identical +104098,28.75,-17.75,ZWE,1730.0,Midlands,169.0,Zimbabwe,106702.0,Gokwe North,28.75,-17.75,ZWE,1730.0,Midlands,169.0,Zimbabwe,106702.0,Gokwe North,both,identical +104099,29.25,-17.75,ZWE,1730.0,Midlands,169.0,Zimbabwe,106702.0,Gokwe North,29.25,-17.75,ZWE,1730.0,Midlands,169.0,Zimbabwe,106702.0,Gokwe North,both,identical +104100,29.75,-17.75,ZWE,1726.0,Mashonaland West,169.0,Zimbabwe,106676.0,Makonde,29.75,-17.75,ZWE,1726.0,Mashonaland West,169.0,Zimbabwe,106676.0,Makonde,both,identical +104101,30.25,-17.75,ZWE,1726.0,Mashonaland West,169.0,Zimbabwe,106679.0,Zvimba,30.25,-17.75,ZWE,1726.0,Mashonaland West,169.0,Zimbabwe,106679.0,Zvimba,both,identical +104102,30.75,-17.75,ZWE,1726.0,Mashonaland West,169.0,Zimbabwe,106679.0,Zvimba,30.75,-17.75,ZWE,1726.0,Mashonaland West,169.0,Zimbabwe,106679.0,Zvimba,both,identical +104103,31.25,-17.75,ZWE,1725.0,Mashonaland East,169.0,Zimbabwe,106665.0,Goromonzi,31.25,-17.75,ZWE,1725.0,Mashonaland East,169.0,Zimbabwe,106665.0,Goromonzi,both,identical +104104,31.75,-17.75,ZWE,1725.0,Mashonaland East,169.0,Zimbabwe,106669.0,Murehwa,31.75,-17.75,ZWE,1725.0,Mashonaland East,169.0,Zimbabwe,106669.0,Murehwa,both,identical +104105,32.25,-17.75,ZWE,1725.0,Mashonaland East,169.0,Zimbabwe,106670.0,Mutoko,32.25,-17.75,ZWE,1725.0,Mashonaland East,169.0,Zimbabwe,106670.0,Mutoko,both,identical +104106,32.75,-17.75,ZWE,1723.0,Manicaland,169.0,Zimbabwe,106655.0,Nyanga,32.75,-17.75,ZWE,1723.0,Manicaland,169.0,Zimbabwe,106655.0,Nyanga,both,identical +104107,33.25,-17.75,MOZ,1488.0,Manica,148.0,Mozambique,104351.0,Báruè,33.25,-17.75,MOZ,1488.0,Manica,148.0,Mozambique,104351.0,Báruè,both,identical +104108,33.75,-17.75,MOZ,1488.0,Manica,148.0,Mozambique,104357.0,Macossa,33.75,-17.75,MOZ,1488.0,Manica,148.0,Mozambique,104357.0,Macossa,both,identical +104109,34.25,-17.75,MOZ,1492.0,Sofala,148.0,Mozambique,104420.0,Marínguè,34.25,-17.75,MOZ,1492.0,Sofala,148.0,Mozambique,104420.0,Marínguè,both,identical +104110,34.75,-17.75,MOZ,1492.0,Sofala,148.0,Mozambique,104420.0,Marínguè,34.75,-17.75,MOZ,1492.0,Sofala,148.0,Mozambique,104420.0,Marínguè,both,identical +104111,35.25,-17.75,MOZ,1492.0,Sofala,148.0,Mozambique,104412.0,Caia,35.25,-17.75,MOZ,1492.0,Sofala,148.0,Mozambique,104412.0,Caia,both,identical +104112,35.75,-17.75,MOZ,1494.0,Zambézia,148.0,Mozambique,104451.0,Mopeia,35.75,-17.75,MOZ,1494.0,Zambézia,148.0,Mozambique,104451.0,Mopeia,both,identical +104113,36.25,-17.75,MOZ,1494.0,Zambézia,148.0,Mozambique,104451.0,Mopeia,36.25,-17.75,MOZ,1494.0,Zambézia,148.0,Mozambique,104451.0,Mopeia,both,identical +104114,36.75,-17.75,MOZ,1494.0,Zambézia,148.0,Mozambique,104457.0,Nicoadala,36.75,-17.75,MOZ,1494.0,Zambézia,148.0,Mozambique,104457.0,Nicoadala,both,identical +104115,37.25,-17.75,MOZ,1494.0,Zambézia,148.0,Mozambique,104455.0,Namacurra,37.25,-17.75,MOZ,1494.0,Zambézia,148.0,Mozambique,104455.0,Namacurra,both,identical +104116,37.75,-17.75,MOZ,1494.0,Zambézia,148.0,Mozambique,104447.0,Maganja Da Costa,37.75,-17.75,MOZ,1494.0,Zambézia,148.0,Mozambique,104447.0,Maganja Da Costa,both,identical +104128,43.75,-17.75,MDG,1431.0,Mahajanga,141.0,Madagascar,104068.0,Melaky,43.75,-17.75,MDG,1431.0,Mahajanga,141.0,Madagascar,104068.0,Melaky,both,identical +104129,44.25,-17.75,MDG,1431.0,Mahajanga,141.0,Madagascar,104068.0,Melaky,44.25,-17.75,MDG,1431.0,Mahajanga,141.0,Madagascar,104068.0,Melaky,both,identical +104130,44.75,-17.75,MDG,1431.0,Mahajanga,141.0,Madagascar,104068.0,Melaky,44.75,-17.75,MDG,1431.0,Mahajanga,141.0,Madagascar,104068.0,Melaky,both,identical +104131,45.25,-17.75,MDG,1431.0,Mahajanga,141.0,Madagascar,104068.0,Melaky,45.25,-17.75,MDG,1431.0,Mahajanga,141.0,Madagascar,104068.0,Melaky,both,identical +104132,45.75,-17.75,MDG,1431.0,Mahajanga,141.0,Madagascar,104068.0,Melaky,45.75,-17.75,MDG,1431.0,Mahajanga,141.0,Madagascar,104068.0,Melaky,both,identical +104133,46.25,-17.75,MDG,1431.0,Mahajanga,141.0,Madagascar,104066.0,Betsiboka,46.25,-17.75,MDG,1431.0,Mahajanga,141.0,Madagascar,104066.0,Betsiboka,both,identical +104134,46.75,-17.75,MDG,1431.0,Mahajanga,141.0,Madagascar,104066.0,Betsiboka,46.75,-17.75,MDG,1431.0,Mahajanga,141.0,Madagascar,104066.0,Betsiboka,both,identical +104135,47.25,-17.75,MDG,1431.0,Mahajanga,141.0,Madagascar,104066.0,Betsiboka,47.25,-17.75,MDG,1431.0,Mahajanga,141.0,Madagascar,104066.0,Betsiboka,both,identical +104136,47.75,-17.75,MDG,1431.0,Mahajanga,141.0,Madagascar,104066.0,Betsiboka,47.75,-17.75,MDG,1431.0,Mahajanga,141.0,Madagascar,104066.0,Betsiboka,both,identical +104137,48.25,-17.75,MDG,1432.0,Toamasina,141.0,Madagascar,104070.0,Alaotra Mangoro,48.25,-17.75,MDG,1432.0,Toamasina,141.0,Madagascar,104070.0,Alaotra Mangoro,both,identical +104138,48.75,-17.75,MDG,1432.0,Toamasina,141.0,Madagascar,104070.0,Alaotra Mangoro,48.75,-17.75,MDG,1432.0,Toamasina,141.0,Madagascar,104070.0,Alaotra Mangoro,both,identical +104139,49.25,-17.75,MDG,1432.0,Toamasina,141.0,Madagascar,104072.0,Atsinanana,49.25,-17.75,MDG,1432.0,Toamasina,141.0,Madagascar,104072.0,Atsinanana,both,identical +104140,49.75,-17.75,MDG,1432.0,Toamasina,141.0,Madagascar,104072.0,Atsinanana,49.75,-17.75,MDG,1432.0,Toamasina,141.0,Madagascar,104072.0,Atsinanana,both,identical +104784,11.75,-17.25,NAM,1501.0,Kunene,149.0,Namibia,104498.0,Epupa,11.75,-17.25,NAM,1501.0,Kunene,149.0,Namibia,104498.0,Epupa,both,identical +104785,12.25,-17.25,NAM,1501.0,Kunene,149.0,Namibia,104498.0,Epupa,12.25,-17.25,NAM,1501.0,Kunene,149.0,Namibia,104498.0,Epupa,both,identical +104786,12.75,-17.25,NAM,1501.0,Kunene,149.0,Namibia,104498.0,Epupa,12.75,-17.25,NAM,1501.0,Kunene,149.0,Namibia,104498.0,Epupa,both,identical +104787,13.25,-17.25,NAM,1501.0,Kunene,149.0,Namibia,104498.0,Epupa,13.25,-17.25,NAM,1501.0,Kunene,149.0,Namibia,104498.0,Epupa,both,identical +104788,13.75,-17.25,AGO,1056.0,Cunene,102.0,Angola,101604.0,Curoca,13.75,-17.25,AGO,1056.0,Cunene,102.0,Angola,101604.0,Curoca,both,identical +104789,14.25,-17.25,AGO,1056.0,Cunene,102.0,Angola,101604.0,Curoca,14.25,-17.25,AGO,1056.0,Cunene,102.0,Angola,101604.0,Curoca,both,identical +104790,14.75,-17.25,AGO,1056.0,Cunene,102.0,Angola,101607.0,Ombadja,14.75,-17.25,AGO,1056.0,Cunene,102.0,Angola,101607.0,Ombadja,both,identical +104791,15.25,-17.25,AGO,1056.0,Cunene,102.0,Angola,101607.0,Ombadja,15.25,-17.25,AGO,1056.0,Cunene,102.0,Angola,101607.0,Ombadja,both,identical +104792,15.75,-17.25,AGO,1056.0,Cunene,102.0,Angola,101603.0,Cuanhama,15.75,-17.25,AGO,1056.0,Cunene,102.0,Angola,101603.0,Cuanhama,both,identical +104793,16.25,-17.25,AGO,1056.0,Cunene,102.0,Angola,101606.0,Namacunde,16.25,-17.25,AGO,1056.0,Cunene,102.0,Angola,101606.0,Namacunde,both,identical +104794,16.75,-17.25,AGO,1056.0,Cunene,102.0,Angola,101606.0,Namacunde,16.75,-17.25,AGO,1056.0,Cunene,102.0,Angola,101606.0,Namacunde,both,identical +104795,17.25,-17.25,AGO,1056.0,Cunene,102.0,Angola,101606.0,Namacunde,17.25,-17.25,AGO,1056.0,Cunene,102.0,Angola,101606.0,Namacunde,both,identical +104796,17.75,-17.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101572.0,Cuangar,17.75,-17.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101572.0,Cuangar,both,identical +104797,18.25,-17.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101572.0,Cuangar,18.25,-17.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101572.0,Cuangar,both,identical +104798,18.75,-17.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101572.0,Cuangar,18.75,-17.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101572.0,Cuangar,both,identical +104799,19.25,-17.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101571.0,Calai,19.25,-17.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101571.0,Calai,both,identical +104800,19.75,-17.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101571.0,Calai,19.75,-17.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101571.0,Calai,both,identical +104801,20.25,-17.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101575.0,Dirico,20.25,-17.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101575.0,Dirico,both,identical +104802,20.75,-17.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101575.0,Dirico,20.75,-17.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101575.0,Dirico,both,identical +104803,21.25,-17.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101575.0,Dirico,21.25,-17.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101575.0,Dirico,both,identical +104804,21.75,-17.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101579.0,Rivungo,21.75,-17.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101579.0,Rivungo,both,identical +104805,22.25,-17.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101579.0,Rivungo,22.25,-17.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101579.0,Rivungo,both,identical +104806,22.75,-17.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101579.0,Rivungo,22.75,-17.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101579.0,Rivungo,both,identical +104807,23.25,-17.25,ZMB,1720.0,Western,168.0,Zambia,106646.0,Sioma,23.25,-17.25,ZMB,1720.0,Western,168.0,Zambia,106646.0,Sioma,both,identical +104808,23.75,-17.25,ZMB,1720.0,Western,168.0,Zambia,106643.0,Sesheke,23.75,-17.25,ZMB,1720.0,Western,168.0,Zambia,106643.0,Sesheke,both,identical +104809,24.25,-17.25,ZMB,1720.0,Western,168.0,Zambia,106643.0,Sesheke,24.25,-17.25,ZMB,1720.0,Western,168.0,Zambia,106643.0,Sesheke,both,identical +104810,24.75,-17.25,ZMB,1720.0,Western,168.0,Zambia,106639.0,Mwandi,24.75,-17.25,ZMB,1720.0,Western,168.0,Zambia,106639.0,Mwandi,both,identical +104811,25.25,-17.25,ZMB,1719.0,Southern,168.0,Zambia,106622.0,Kazungula,25.25,-17.25,ZMB,1719.0,Southern,168.0,Zambia,106622.0,Kazungula,both,identical +104812,25.75,-17.25,ZMB,1719.0,Southern,168.0,Zambia,106622.0,Kazungula,25.75,-17.25,ZMB,1719.0,Southern,168.0,Zambia,106622.0,Kazungula,both,identical +104813,26.25,-17.25,ZMB,1719.0,Southern,168.0,Zambia,106621.0,Kalomo,26.25,-17.25,ZMB,1719.0,Southern,168.0,Zambia,106621.0,Kalomo,both,identical +104814,26.75,-17.25,ZMB,1719.0,Southern,168.0,Zambia,106621.0,Kalomo,26.75,-17.25,ZMB,1719.0,Southern,168.0,Zambia,106621.0,Kalomo,both,identical +104815,27.25,-17.25,ZMB,1719.0,Southern,168.0,Zambia,106629.0,Sinazongwe,27.25,-17.25,ZMB,1719.0,Southern,168.0,Zambia,106629.0,Sinazongwe,both,identical +104816,27.75,-17.25,ZWE,1728.0,Matebeleland North,169.0,Zimbabwe,106687.0,Binga,27.75,-17.25,ZWE,1728.0,Matebeleland North,169.0,Zimbabwe,106687.0,Binga,both,identical +104817,28.25,-17.25,ZWE,1726.0,Mashonaland West,169.0,Zimbabwe,106675.0,Kariba,28.25,-17.25,ZWE,1726.0,Mashonaland West,169.0,Zimbabwe,106675.0,Kariba,both,identical +104818,28.75,-17.25,ZWE,1730.0,Midlands,169.0,Zimbabwe,106702.0,Gokwe North,28.75,-17.25,ZWE,1730.0,Midlands,169.0,Zimbabwe,106702.0,Gokwe North,both,identical +104819,29.25,-17.25,ZWE,1726.0,Mashonaland West,169.0,Zimbabwe,106674.0,Hurungwe,29.25,-17.25,ZWE,1726.0,Mashonaland West,169.0,Zimbabwe,106674.0,Hurungwe,both,identical +104820,29.75,-17.25,ZWE,1726.0,Mashonaland West,169.0,Zimbabwe,106676.0,Makonde,29.75,-17.25,ZWE,1726.0,Mashonaland West,169.0,Zimbabwe,106676.0,Makonde,both,identical +104821,30.25,-17.25,ZWE,1726.0,Mashonaland West,169.0,Zimbabwe,106676.0,Makonde,30.25,-17.25,ZWE,1726.0,Mashonaland West,169.0,Zimbabwe,106676.0,Makonde,both,identical +104822,30.75,-17.25,ZWE,1724.0,Mashonaland Central,169.0,Zimbabwe,106659.0,Mazowe,30.75,-17.25,ZWE,1724.0,Mashonaland Central,169.0,Zimbabwe,106659.0,Mazowe,both,identical +104823,31.25,-17.25,ZWE,1724.0,Mashonaland Central,169.0,Zimbabwe,106656.0,Bindura,31.25,-17.25,ZWE,1724.0,Mashonaland Central,169.0,Zimbabwe,106656.0,Bindura,both,identical +104824,31.75,-17.25,ZWE,1725.0,Mashonaland East,169.0,Zimbabwe,106663.0,Shamva,31.75,-17.25,ZWE,1724.0,Mashonaland Central,169.0,Zimbabwe,106663.0,Shamva,both,admin_reallocation +104825,32.25,-17.25,ZWE,1725.0,Mashonaland East,169.0,Zimbabwe,106670.0,Mutoko,32.25,-17.25,ZWE,1725.0,Mashonaland East,169.0,Zimbabwe,106670.0,Mutoko,both,identical +104826,32.75,-17.25,ZWE,1725.0,Mashonaland East,169.0,Zimbabwe,106668.0,Mudzi,32.75,-17.25,ZWE,1725.0,Mashonaland East,169.0,Zimbabwe,106668.0,Mudzi,both,identical +104827,33.25,-17.25,MOZ,1488.0,Manica,148.0,Mozambique,104354.0,Guro,33.25,-17.25,MOZ,1488.0,Manica,148.0,Mozambique,104354.0,Guro,both,identical +104828,33.75,-17.25,MOZ,1488.0,Manica,148.0,Mozambique,104354.0,Guro,33.75,-17.25,MOZ,1488.0,Manica,148.0,Mozambique,104354.0,Guro,both,identical +104829,34.25,-17.25,MOZ,1492.0,Sofala,148.0,Mozambique,104361.0,Tambara,34.25,-17.25,MOZ,1488.0,Manica,148.0,Mozambique,104361.0,Tambara,both,admin_reallocation +104830,34.75,-17.25,MOZ,1492.0,Sofala,148.0,Mozambique,104413.0,Chemba,34.75,-17.25,MOZ,1492.0,Sofala,148.0,Mozambique,104413.0,Chemba,both,identical +104831,35.25,-17.25,MOZ,1493.0,Tete,148.0,Mozambique,104433.0,Mutarara,35.25,-17.25,MOZ,1493.0,Tete,148.0,Mozambique,104433.0,Mutarara,both,identical +104832,35.75,-17.25,MOZ,1494.0,Zambézia,148.0,Mozambique,104452.0,Morrumbala,35.75,-17.25,MOZ,1494.0,Zambézia,148.0,Mozambique,104452.0,Morrumbala,both,identical +104833,36.25,-17.25,MOZ,1494.0,Zambézia,148.0,Mozambique,104440.0,Derre,36.25,-17.25,MOZ,1494.0,Zambézia,148.0,Mozambique,104440.0,Derre,both,identical +104834,36.75,-17.25,MOZ,1494.0,Zambézia,148.0,Mozambique,104449.0,Mocuba,36.75,-17.25,MOZ,1494.0,Zambézia,148.0,Mozambique,104449.0,Mocuba,both,identical +104835,37.25,-17.25,MOZ,1494.0,Zambézia,148.0,Mozambique,104447.0,Maganja Da Costa,37.25,-17.25,MOZ,1494.0,Zambézia,148.0,Mozambique,104447.0,Maganja Da Costa,both,identical +104836,37.75,-17.25,MOZ,1494.0,Zambézia,148.0,Mozambique,104450.0,Mocubela,37.75,-17.25,MOZ,1494.0,Zambézia,148.0,Mozambique,104450.0,Mocubela,both,identical +104837,38.25,-17.25,MOZ,1494.0,Zambézia,148.0,Mozambique,104458.0,Pebane,38.25,-17.25,MOZ,1494.0,Zambézia,148.0,Mozambique,104458.0,Pebane,both,identical +104838,38.75,-17.25,MOZ,1494.0,Zambézia,148.0,Mozambique,104458.0,Pebane,38.75,-17.25,MOZ,1494.0,Zambézia,148.0,Mozambique,104458.0,Pebane,both,identical +104839,39.25,-17.25,,,,,,,,39.25,-17.25,MOZ,1494.0,Zambézia,148.0,Mozambique,104458.0,Pebane,new_only,coastal_recovery +104848,43.75,-17.25,MDG,1431.0,Mahajanga,141.0,Madagascar,104068.0,Melaky,43.75,-17.25,MDG,1431.0,Mahajanga,141.0,Madagascar,104068.0,Melaky,both,identical +104849,44.25,-17.25,MDG,1431.0,Mahajanga,141.0,Madagascar,104068.0,Melaky,44.25,-17.25,MDG,1431.0,Mahajanga,141.0,Madagascar,104068.0,Melaky,both,identical +104850,44.75,-17.25,MDG,1431.0,Mahajanga,141.0,Madagascar,104068.0,Melaky,44.75,-17.25,MDG,1431.0,Mahajanga,141.0,Madagascar,104068.0,Melaky,both,identical +104851,45.25,-17.25,MDG,1431.0,Mahajanga,141.0,Madagascar,104068.0,Melaky,45.25,-17.25,MDG,1431.0,Mahajanga,141.0,Madagascar,104068.0,Melaky,both,identical +104852,45.75,-17.25,MDG,1431.0,Mahajanga,141.0,Madagascar,104066.0,Betsiboka,45.75,-17.25,MDG,1431.0,Mahajanga,141.0,Madagascar,104066.0,Betsiboka,both,identical +104853,46.25,-17.25,MDG,1431.0,Mahajanga,141.0,Madagascar,104066.0,Betsiboka,46.25,-17.25,MDG,1431.0,Mahajanga,141.0,Madagascar,104066.0,Betsiboka,both,identical +104854,46.75,-17.25,MDG,1431.0,Mahajanga,141.0,Madagascar,104066.0,Betsiboka,46.75,-17.25,MDG,1431.0,Mahajanga,141.0,Madagascar,104066.0,Betsiboka,both,identical +104855,47.25,-17.25,MDG,1431.0,Mahajanga,141.0,Madagascar,104066.0,Betsiboka,47.25,-17.25,MDG,1431.0,Mahajanga,141.0,Madagascar,104066.0,Betsiboka,both,identical +104856,47.75,-17.25,MDG,1431.0,Mahajanga,141.0,Madagascar,104066.0,Betsiboka,47.75,-17.25,MDG,1431.0,Mahajanga,141.0,Madagascar,104066.0,Betsiboka,both,identical +104857,48.25,-17.25,MDG,1432.0,Toamasina,141.0,Madagascar,104070.0,Alaotra Mangoro,48.25,-17.25,MDG,1432.0,Toamasina,141.0,Madagascar,104070.0,Alaotra Mangoro,both,identical +104858,48.75,-17.25,MDG,1432.0,Toamasina,141.0,Madagascar,104070.0,Alaotra Mangoro,48.75,-17.25,MDG,1432.0,Toamasina,141.0,Madagascar,104070.0,Alaotra Mangoro,both,identical +104859,49.25,-17.25,MDG,1432.0,Toamasina,141.0,Madagascar,104071.0,Analanjirofo,49.25,-17.25,MDG,1432.0,Toamasina,141.0,Madagascar,104071.0,Analanjirofo,both,identical +104860,49.75,-17.25,MDG,1432.0,Toamasina,141.0,Madagascar,104071.0,Analanjirofo,49.75,-17.25,MDG,1432.0,Toamasina,141.0,Madagascar,104071.0,Analanjirofo,both,identical +105504,11.75,-16.75,AGO,1064.0,Namibe,102.0,Angola,101679.0,Tômbwa (Porto Alexandre),11.75,-16.75,AGO,1064.0,Namibe,102.0,Angola,101679.0,Tômbwa (Porto Alexandre),both,identical +105505,12.25,-16.75,AGO,1064.0,Namibe,102.0,Angola,101679.0,Tômbwa (Porto Alexandre),12.25,-16.75,AGO,1064.0,Namibe,102.0,Angola,101679.0,Tômbwa (Porto Alexandre),both,identical +105506,12.75,-16.75,AGO,1064.0,Namibe,102.0,Angola,101679.0,Tômbwa (Porto Alexandre),12.75,-16.75,AGO,1064.0,Namibe,102.0,Angola,101679.0,Tômbwa (Porto Alexandre),both,identical +105507,13.25,-16.75,AGO,1056.0,Cunene,102.0,Angola,101604.0,Curoca,13.25,-16.75,AGO,1056.0,Cunene,102.0,Angola,101604.0,Curoca,both,identical +105508,13.75,-16.75,AGO,1056.0,Cunene,102.0,Angola,101602.0,Cahama,13.75,-16.75,AGO,1056.0,Cunene,102.0,Angola,101602.0,Cahama,both,identical +105509,14.25,-16.75,AGO,1056.0,Cunene,102.0,Angola,101602.0,Cahama,14.25,-16.75,AGO,1056.0,Cunene,102.0,Angola,101602.0,Cahama,both,identical +105510,14.75,-16.75,AGO,1056.0,Cunene,102.0,Angola,101607.0,Ombadja,14.75,-16.75,AGO,1056.0,Cunene,102.0,Angola,101607.0,Ombadja,both,identical +105511,15.25,-16.75,AGO,1056.0,Cunene,102.0,Angola,101603.0,Cuanhama,15.25,-16.75,AGO,1056.0,Cunene,102.0,Angola,101603.0,Cuanhama,both,identical +105512,15.75,-16.75,AGO,1056.0,Cunene,102.0,Angola,101603.0,Cuanhama,15.75,-16.75,AGO,1056.0,Cunene,102.0,Angola,101603.0,Cuanhama,both,identical +105513,16.25,-16.75,AGO,1056.0,Cunene,102.0,Angola,101603.0,Cuanhama,16.25,-16.75,AGO,1056.0,Cunene,102.0,Angola,101603.0,Cuanhama,both,identical +105514,16.75,-16.75,AGO,1056.0,Cunene,102.0,Angola,101606.0,Namacunde,16.75,-16.75,AGO,1056.0,Cunene,102.0,Angola,101606.0,Namacunde,both,identical +105515,17.25,-16.75,AGO,1056.0,Cunene,102.0,Angola,101572.0,Cuangar,17.25,-16.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101572.0,Cuangar,both,admin_reallocation +105516,17.75,-16.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101572.0,Cuangar,17.75,-16.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101572.0,Cuangar,both,identical +105517,18.25,-16.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101572.0,Cuangar,18.25,-16.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101572.0,Cuangar,both,identical +105518,18.75,-16.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101578.0,Nancova,18.75,-16.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101578.0,Nancova,both,identical +105519,19.25,-16.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101576.0,Mavinga,19.25,-16.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101576.0,Mavinga,both,identical +105520,19.75,-16.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101576.0,Mavinga,19.75,-16.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101576.0,Mavinga,both,identical +105521,20.25,-16.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101576.0,Mavinga,20.25,-16.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101576.0,Mavinga,both,identical +105522,20.75,-16.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101576.0,Mavinga,20.75,-16.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101576.0,Mavinga,both,identical +105523,21.25,-16.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101576.0,Mavinga,21.25,-16.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101576.0,Mavinga,both,identical +105524,21.75,-16.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101579.0,Rivungo,21.75,-16.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101579.0,Rivungo,both,identical +105525,22.25,-16.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101579.0,Rivungo,22.25,-16.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101579.0,Rivungo,both,identical +105526,22.75,-16.75,ZMB,1720.0,Western,168.0,Zambia,106644.0,Shangombo,22.75,-16.75,ZMB,1720.0,Western,168.0,Zambia,106644.0,Shangombo,both,identical +105527,23.25,-16.75,ZMB,1720.0,Western,168.0,Zambia,106646.0,Sioma,23.25,-16.75,ZMB,1720.0,Western,168.0,Zambia,106646.0,Sioma,both,identical +105528,23.75,-16.75,ZMB,1720.0,Western,168.0,Zambia,106643.0,Sesheke,23.75,-16.75,ZMB,1720.0,Western,168.0,Zambia,106643.0,Sesheke,both,identical +105529,24.25,-16.75,ZMB,1720.0,Western,168.0,Zambia,106643.0,Sesheke,24.25,-16.75,ZMB,1720.0,Western,168.0,Zambia,106643.0,Sesheke,both,identical +105530,24.75,-16.75,ZMB,1720.0,Western,168.0,Zambia,106638.0,Mulobezi,24.75,-16.75,ZMB,1720.0,Western,168.0,Zambia,106638.0,Mulobezi,both,identical +105531,25.25,-16.75,ZMB,1719.0,Southern,168.0,Zambia,106622.0,Kazungula,25.25,-16.75,ZMB,1719.0,Southern,168.0,Zambia,106622.0,Kazungula,both,identical +105532,25.75,-16.75,ZMB,1719.0,Southern,168.0,Zambia,106622.0,Kazungula,25.75,-16.75,ZMB,1719.0,Southern,168.0,Zambia,106622.0,Kazungula,both,identical +105533,26.25,-16.75,ZMB,1719.0,Southern,168.0,Zambia,106621.0,Kalomo,26.25,-16.75,ZMB,1719.0,Southern,168.0,Zambia,106621.0,Kalomo,both,identical +105534,26.75,-16.75,ZMB,1719.0,Southern,168.0,Zambia,106621.0,Kalomo,26.75,-16.75,ZMB,1719.0,Southern,168.0,Zambia,106621.0,Kalomo,both,identical +105535,27.25,-16.75,ZMB,1719.0,Southern,168.0,Zambia,106627.0,Pemba,27.25,-16.75,ZMB,1719.0,Southern,168.0,Zambia,106627.0,Pemba,both,identical +105536,27.75,-16.75,ZMB,1719.0,Southern,168.0,Zambia,106620.0,Gwembe,27.75,-16.75,ZMB,1719.0,Southern,168.0,Zambia,106620.0,Gwembe,both,identical +105537,28.25,-16.75,ZWE,1726.0,Mashonaland West,169.0,Zimbabwe,106675.0,Kariba,28.25,-16.75,ZWE,1726.0,Mashonaland West,169.0,Zimbabwe,106675.0,Kariba,both,identical +105538,28.75,-16.75,ZWE,1726.0,Mashonaland West,169.0,Zimbabwe,106675.0,Kariba,28.75,-16.75,ZWE,1726.0,Mashonaland West,169.0,Zimbabwe,106675.0,Kariba,both,identical +105539,29.25,-16.75,ZWE,1726.0,Mashonaland West,169.0,Zimbabwe,106674.0,Hurungwe,29.25,-16.75,ZWE,1726.0,Mashonaland West,169.0,Zimbabwe,106674.0,Hurungwe,both,identical +105540,29.75,-16.75,ZWE,1726.0,Mashonaland West,169.0,Zimbabwe,106674.0,Hurungwe,29.75,-16.75,ZWE,1726.0,Mashonaland West,169.0,Zimbabwe,106674.0,Hurungwe,both,identical +105541,30.25,-16.75,ZWE,1726.0,Mashonaland West,169.0,Zimbabwe,106676.0,Makonde,30.25,-16.75,ZWE,1726.0,Mashonaland West,169.0,Zimbabwe,106676.0,Makonde,both,identical +105542,30.75,-16.75,ZWE,1724.0,Mashonaland Central,169.0,Zimbabwe,106658.0,Guruve,30.75,-16.75,ZWE,1724.0,Mashonaland Central,169.0,Zimbabwe,106658.0,Guruve,both,identical +105543,31.25,-16.75,ZWE,1724.0,Mashonaland Central,169.0,Zimbabwe,106657.0,Centenary,31.25,-16.75,ZWE,1724.0,Mashonaland Central,169.0,Zimbabwe,106657.0,Centenary,both,identical +105544,31.75,-16.75,ZWE,1724.0,Mashonaland Central,169.0,Zimbabwe,106661.0,Mount Darwin,31.75,-16.75,ZWE,1724.0,Mashonaland Central,169.0,Zimbabwe,106661.0,Mount Darwin,both,identical +105545,32.25,-16.75,ZWE,1724.0,Mashonaland Central,169.0,Zimbabwe,106662.0,Rushinga,32.25,-16.75,ZWE,1724.0,Mashonaland Central,169.0,Zimbabwe,106662.0,Rushinga,both,identical +105546,32.75,-16.75,ZWE,1725.0,Mashonaland East,169.0,Zimbabwe,106668.0,Mudzi,32.75,-16.75,ZWE,1725.0,Mashonaland East,169.0,Zimbabwe,106668.0,Mudzi,both,identical +105547,33.25,-16.75,MOZ,1493.0,Tete,148.0,Mozambique,104425.0,Changara,33.25,-16.75,MOZ,1493.0,Tete,148.0,Mozambique,104425.0,Changara,both,identical +105548,33.75,-16.75,MOZ,1488.0,Manica,148.0,Mozambique,104354.0,Guro,33.75,-16.75,MOZ,1488.0,Manica,148.0,Mozambique,104354.0,Guro,both,identical +105549,34.25,-16.75,MOZ,1488.0,Manica,148.0,Mozambique,104361.0,Tambara,34.25,-16.75,MOZ,1488.0,Manica,148.0,Mozambique,104361.0,Tambara,both,identical +105550,34.75,-16.75,MOZ,1493.0,Tete,148.0,Mozambique,104428.0,Dôa,34.75,-16.75,MOZ,1493.0,Tete,148.0,Mozambique,104428.0,Dôa,both,identical +105551,35.25,-16.75,MOZ,1494.0,Zambézia,148.0,Mozambique,104452.0,Morrumbala,35.25,-16.75,MOZ,1494.0,Zambézia,148.0,Mozambique,104452.0,Morrumbala,both,identical +105552,35.75,-16.75,MOZ,1494.0,Zambézia,148.0,Mozambique,104452.0,Morrumbala,35.75,-16.75,MOZ,1494.0,Zambézia,148.0,Mozambique,104452.0,Morrumbala,both,identical +105553,36.25,-16.75,MOZ,1494.0,Zambézia,148.0,Mozambique,104449.0,Mocuba,36.25,-16.75,MOZ,1494.0,Zambézia,148.0,Mozambique,104449.0,Mocuba,both,identical +105554,36.75,-16.75,MOZ,1494.0,Zambézia,148.0,Mozambique,104449.0,Mocuba,36.75,-16.75,MOZ,1494.0,Zambézia,148.0,Mozambique,104449.0,Mocuba,both,identical +105555,37.25,-16.75,MOZ,1494.0,Zambézia,148.0,Mozambique,104449.0,Mocuba,37.25,-16.75,MOZ,1494.0,Zambézia,148.0,Mozambique,104449.0,Mocuba,both,identical +105556,37.75,-16.75,MOZ,1494.0,Zambézia,148.0,Mozambique,104450.0,Mocubela,37.75,-16.75,MOZ,1494.0,Zambézia,148.0,Mozambique,104450.0,Mocubela,both,identical +105557,38.25,-16.75,MOZ,1494.0,Zambézia,148.0,Mozambique,104458.0,Pebane,38.25,-16.75,MOZ,1494.0,Zambézia,148.0,Mozambique,104458.0,Pebane,both,identical +105558,38.75,-16.75,MOZ,1494.0,Zambézia,148.0,Mozambique,104458.0,Pebane,38.75,-16.75,MOZ,1494.0,Zambézia,148.0,Mozambique,104458.0,Pebane,both,identical +105559,39.25,-16.75,MOZ,1490.0,Nampula,148.0,Mozambique,104383.0,Moma,39.25,-16.75,MOZ,1490.0,Nampula,148.0,Mozambique,104383.0,Moma,both,identical +105560,39.75,-16.75,MOZ,1490.0,Nampula,148.0,Mozambique,104375.0,Larde,39.75,-16.75,MOZ,1490.0,Nampula,148.0,Mozambique,104375.0,Larde,both,identical +105569,44.25,-16.75,MDG,1431.0,Mahajanga,141.0,Madagascar,104068.0,Melaky,44.25,-16.75,MDG,1431.0,Mahajanga,141.0,Madagascar,104068.0,Melaky,both,identical +105570,44.75,-16.75,MDG,1431.0,Mahajanga,141.0,Madagascar,104068.0,Melaky,44.75,-16.75,MDG,1431.0,Mahajanga,141.0,Madagascar,104068.0,Melaky,both,identical +105571,45.25,-16.75,MDG,1431.0,Mahajanga,141.0,Madagascar,104068.0,Melaky,45.25,-16.75,MDG,1431.0,Mahajanga,141.0,Madagascar,104068.0,Melaky,both,identical +105572,45.75,-16.75,MDG,1431.0,Mahajanga,141.0,Madagascar,104067.0,Boeny,45.75,-16.75,MDG,1431.0,Mahajanga,141.0,Madagascar,104067.0,Boeny,both,identical +105573,46.25,-16.75,MDG,1431.0,Mahajanga,141.0,Madagascar,104067.0,Boeny,46.25,-16.75,MDG,1431.0,Mahajanga,141.0,Madagascar,104067.0,Boeny,both,identical +105574,46.75,-16.75,MDG,1431.0,Mahajanga,141.0,Madagascar,104066.0,Betsiboka,46.75,-16.75,MDG,1431.0,Mahajanga,141.0,Madagascar,104066.0,Betsiboka,both,identical +105575,47.25,-16.75,MDG,1431.0,Mahajanga,141.0,Madagascar,104066.0,Betsiboka,47.25,-16.75,MDG,1431.0,Mahajanga,141.0,Madagascar,104066.0,Betsiboka,both,identical +105576,47.75,-16.75,MDG,1431.0,Mahajanga,141.0,Madagascar,104066.0,Betsiboka,47.75,-16.75,MDG,1431.0,Mahajanga,141.0,Madagascar,104066.0,Betsiboka,both,identical +105577,48.25,-16.75,MDG,1432.0,Toamasina,141.0,Madagascar,104070.0,Alaotra Mangoro,48.25,-16.75,MDG,1432.0,Toamasina,141.0,Madagascar,104070.0,Alaotra Mangoro,both,identical +105578,48.75,-16.75,MDG,1432.0,Toamasina,141.0,Madagascar,104070.0,Alaotra Mangoro,48.75,-16.75,MDG,1432.0,Toamasina,141.0,Madagascar,104070.0,Alaotra Mangoro,both,identical +105579,49.25,-16.75,MDG,1432.0,Toamasina,141.0,Madagascar,104071.0,Analanjirofo,49.25,-16.75,MDG,1432.0,Toamasina,141.0,Madagascar,104071.0,Analanjirofo,both,identical +105580,49.75,-16.75,MDG,1432.0,Toamasina,141.0,Madagascar,104071.0,Analanjirofo,49.75,-16.75,MDG,1432.0,Toamasina,141.0,Madagascar,104071.0,Analanjirofo,both,identical +105581,50.25,-16.75,MDG,1432.0,Toamasina,141.0,Madagascar,104071.0,Analanjirofo,50.25,-16.75,MDG,1432.0,Toamasina,141.0,Madagascar,104071.0,Analanjirofo,both,identical +106224,11.75,-16.25,AGO,1064.0,Namibe,102.0,Angola,101679.0,Tômbwa (Porto Alexandre),11.75,-16.25,AGO,1064.0,Namibe,102.0,Angola,101679.0,Tômbwa (Porto Alexandre),both,identical +106225,12.25,-16.25,AGO,1064.0,Namibe,102.0,Angola,101679.0,Tômbwa (Porto Alexandre),12.25,-16.25,AGO,1064.0,Namibe,102.0,Angola,101679.0,Tômbwa (Porto Alexandre),both,identical +106226,12.75,-16.25,AGO,1064.0,Namibe,102.0,Angola,101680.0,Virei,12.75,-16.25,AGO,1064.0,Namibe,102.0,Angola,101680.0,Virei,both,identical +106227,13.25,-16.25,AGO,1064.0,Namibe,102.0,Angola,101680.0,Virei,13.25,-16.25,AGO,1064.0,Namibe,102.0,Angola,101680.0,Virei,both,identical +106228,13.75,-16.25,AGO,1058.0,Huíla,102.0,Angola,101626.0,Gambos (Ex-Chiange),13.75,-16.25,AGO,1058.0,Huíla,102.0,Angola,101626.0,Gambos (Ex-Chiange),both,identical +106229,14.25,-16.25,AGO,1056.0,Cunene,102.0,Angola,101602.0,Cahama,14.25,-16.25,AGO,1056.0,Cunene,102.0,Angola,101602.0,Cahama,both,identical +106230,14.75,-16.25,AGO,1056.0,Cunene,102.0,Angola,101602.0,Cahama,14.75,-16.25,AGO,1056.0,Cunene,102.0,Angola,101602.0,Cahama,both,identical +106231,15.25,-16.25,AGO,1056.0,Cunene,102.0,Angola,101607.0,Ombadja,15.25,-16.25,AGO,1056.0,Cunene,102.0,Angola,101607.0,Ombadja,both,identical +106232,15.75,-16.25,AGO,1056.0,Cunene,102.0,Angola,101605.0,Cuvelai,15.75,-16.25,AGO,1056.0,Cunene,102.0,Angola,101605.0,Cuvelai,both,identical +106233,16.25,-16.25,AGO,1056.0,Cunene,102.0,Angola,101603.0,Cuanhama,16.25,-16.25,AGO,1056.0,Cunene,102.0,Angola,101603.0,Cuanhama,both,identical +106234,16.75,-16.25,AGO,1056.0,Cunene,102.0,Angola,101603.0,Cuanhama,16.75,-16.25,AGO,1056.0,Cunene,102.0,Angola,101603.0,Cuanhama,both,identical +106235,17.25,-16.25,AGO,1056.0,Cunene,102.0,Angola,101603.0,Cuanhama,17.25,-16.25,AGO,1056.0,Cunene,102.0,Angola,101603.0,Cuanhama,both,identical +106236,17.75,-16.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101577.0,Menongue,17.75,-16.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101577.0,Menongue,both,identical +106237,18.25,-16.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101578.0,Nancova,18.25,-16.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101578.0,Nancova,both,identical +106238,18.75,-16.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101578.0,Nancova,18.75,-16.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101578.0,Nancova,both,identical +106239,19.25,-16.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101578.0,Nancova,19.25,-16.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101578.0,Nancova,both,identical +106240,19.75,-16.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101576.0,Mavinga,19.75,-16.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101576.0,Mavinga,both,identical +106241,20.25,-16.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101576.0,Mavinga,20.25,-16.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101576.0,Mavinga,both,identical +106242,20.75,-16.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101576.0,Mavinga,20.75,-16.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101576.0,Mavinga,both,identical +106243,21.25,-16.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101579.0,Rivungo,21.25,-16.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101579.0,Rivungo,both,identical +106244,21.75,-16.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101579.0,Rivungo,21.75,-16.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101579.0,Rivungo,both,identical +106245,22.25,-16.25,ZMB,1720.0,Western,168.0,Zambia,106644.0,Shangombo,22.25,-16.25,ZMB,1720.0,Western,168.0,Zambia,106644.0,Shangombo,both,identical +106246,22.75,-16.25,ZMB,1720.0,Western,168.0,Zambia,106644.0,Shangombo,22.75,-16.25,ZMB,1720.0,Western,168.0,Zambia,106644.0,Shangombo,both,identical +106247,23.25,-16.25,ZMB,1720.0,Western,168.0,Zambia,106646.0,Sioma,23.25,-16.25,ZMB,1720.0,Western,168.0,Zambia,106646.0,Sioma,both,identical +106248,23.75,-16.25,ZMB,1720.0,Western,168.0,Zambia,106642.0,Senanga,23.75,-16.25,ZMB,1720.0,Western,168.0,Zambia,106642.0,Senanga,both,identical +106249,24.25,-16.25,ZMB,1720.0,Western,168.0,Zambia,106638.0,Mulobezi,24.25,-16.25,ZMB,1720.0,Western,168.0,Zambia,106638.0,Mulobezi,both,identical +106250,24.75,-16.25,ZMB,1720.0,Western,168.0,Zambia,106638.0,Mulobezi,24.75,-16.25,ZMB,1720.0,Western,168.0,Zambia,106638.0,Mulobezi,both,identical +106251,25.25,-16.25,ZMB,1720.0,Western,168.0,Zambia,106638.0,Mulobezi,25.25,-16.25,ZMB,1720.0,Western,168.0,Zambia,106638.0,Mulobezi,both,identical +106252,25.75,-16.25,ZMB,1711.0,Central,168.0,Zambia,106534.0,Itezhi-Tezhi,25.75,-16.25,ZMB,1711.0,Central,168.0,Zambia,106534.0,Itezhi-Tezhi,both,identical +106253,26.25,-16.25,ZMB,1711.0,Central,168.0,Zambia,106534.0,Itezhi-Tezhi,26.25,-16.25,ZMB,1711.0,Central,168.0,Zambia,106534.0,Itezhi-Tezhi,both,identical +106254,26.75,-16.25,ZMB,1719.0,Southern,168.0,Zambia,106626.0,Namwala,26.75,-16.25,ZMB,1719.0,Southern,168.0,Zambia,106626.0,Namwala,both,identical +106255,27.25,-16.25,ZMB,1719.0,Southern,168.0,Zambia,106625.0,Monze,27.25,-16.25,ZMB,1719.0,Southern,168.0,Zambia,106625.0,Monze,both,identical +106256,27.75,-16.25,ZMB,1719.0,Southern,168.0,Zambia,106625.0,Monze,27.75,-16.25,ZMB,1719.0,Southern,168.0,Zambia,106625.0,Monze,both,identical +106257,28.25,-16.25,ZMB,1719.0,Southern,168.0,Zambia,106618.0,Chikankanta,28.25,-16.25,ZMB,1719.0,Southern,168.0,Zambia,106618.0,Chikankanta,both,identical +106258,28.75,-16.25,ZMB,1715.0,Lusaka,168.0,Zambia,106580.0,Chirundu,28.75,-16.25,ZMB,1715.0,Lusaka,168.0,Zambia,106580.0,Chirundu,both,identical +106259,29.25,-16.25,ZWE,1726.0,Mashonaland West,169.0,Zimbabwe,106674.0,Hurungwe,29.25,-16.25,ZWE,1726.0,Mashonaland West,169.0,Zimbabwe,106674.0,Hurungwe,both,identical +106260,29.75,-16.25,ZWE,1726.0,Mashonaland West,169.0,Zimbabwe,106674.0,Hurungwe,29.75,-16.25,ZWE,1726.0,Mashonaland West,169.0,Zimbabwe,106674.0,Hurungwe,both,identical +106261,30.25,-16.25,ZWE,1724.0,Mashonaland Central,169.0,Zimbabwe,106660.0,Mbire,30.25,-16.25,ZWE,1724.0,Mashonaland Central,169.0,Zimbabwe,106660.0,Mbire,both,identical +106262,30.75,-16.25,ZWE,1724.0,Mashonaland Central,169.0,Zimbabwe,106660.0,Mbire,30.75,-16.25,ZWE,1724.0,Mashonaland Central,169.0,Zimbabwe,106660.0,Mbire,both,identical +106263,31.25,-16.25,ZWE,1724.0,Mashonaland Central,169.0,Zimbabwe,106657.0,Centenary,31.25,-16.25,ZWE,1724.0,Mashonaland Central,169.0,Zimbabwe,106657.0,Centenary,both,identical +106264,31.75,-16.25,MOZ,1493.0,Tete,148.0,Mozambique,104434.0,Mágoè,31.75,-16.25,MOZ,1493.0,Tete,148.0,Mozambique,104434.0,Mágoè,both,identical +106265,32.25,-16.25,MOZ,1493.0,Tete,148.0,Mozambique,104424.0,Cahora-Bassa,32.25,-16.25,MOZ,1493.0,Tete,148.0,Mozambique,104424.0,Cahora-Bassa,both,identical +106266,32.75,-16.25,MOZ,1493.0,Tete,148.0,Mozambique,104424.0,Cahora-Bassa,32.75,-16.25,MOZ,1493.0,Tete,148.0,Mozambique,104424.0,Cahora-Bassa,both,identical +106267,33.25,-16.25,MOZ,1493.0,Tete,148.0,Mozambique,104430.0,Marara,33.25,-16.25,MOZ,1493.0,Tete,148.0,Mozambique,104430.0,Marara,both,identical +106268,33.75,-16.25,MOZ,1493.0,Tete,148.0,Mozambique,104432.0,Moatize,33.75,-16.25,MOZ,1493.0,Tete,148.0,Mozambique,104432.0,Moatize,both,identical +106269,34.25,-16.25,MOZ,1493.0,Tete,148.0,Mozambique,104432.0,Moatize,34.25,-16.25,MOZ,1493.0,Tete,148.0,Mozambique,104432.0,Moatize,both,identical +106270,34.75,-16.25,MWI,1436.0,Southern Region,142.0,Malawi,104094.0,Chikwawa,34.75,-16.25,MWI,1436.0,Southern Region,142.0,Malawi,104094.0,Chikwawa,both,identical +106271,35.25,-16.25,MWI,1436.0,Southern Region,142.0,Malawi,104103.0,Thyolo,35.25,-16.25,MWI,1436.0,Southern Region,142.0,Malawi,104103.0,Thyolo,both,identical +106272,35.75,-16.25,MOZ,1494.0,Zambézia,148.0,Mozambique,104448.0,Milange,35.75,-16.25,MOZ,1494.0,Zambézia,148.0,Mozambique,104448.0,Milange,both,identical +106273,36.25,-16.25,MOZ,1494.0,Zambézia,148.0,Mozambique,104446.0,Lugela,36.25,-16.25,MOZ,1494.0,Zambézia,148.0,Mozambique,104446.0,Lugela,both,identical +106274,36.75,-16.25,MOZ,1494.0,Zambézia,148.0,Mozambique,104446.0,Lugela,36.75,-16.25,MOZ,1494.0,Zambézia,148.0,Mozambique,104446.0,Lugela,both,identical +106275,37.25,-16.25,MOZ,1494.0,Zambézia,148.0,Mozambique,104443.0,Ile,37.25,-16.25,MOZ,1494.0,Zambézia,148.0,Mozambique,104443.0,Ile,both,identical +106276,37.75,-16.25,MOZ,1494.0,Zambézia,148.0,Mozambique,104453.0,Mulevala,37.75,-16.25,MOZ,1494.0,Zambézia,148.0,Mozambique,104453.0,Mulevala,both,identical +106277,38.25,-16.25,MOZ,1494.0,Zambézia,148.0,Mozambique,104441.0,Gilé,38.25,-16.25,MOZ,1494.0,Zambézia,148.0,Mozambique,104441.0,Gilé,both,identical +106278,38.75,-16.25,MOZ,1494.0,Zambézia,148.0,Mozambique,104458.0,Pebane,38.75,-16.25,MOZ,1494.0,Zambézia,148.0,Mozambique,104458.0,Pebane,both,identical +106279,39.25,-16.25,MOZ,1490.0,Nampula,148.0,Mozambique,104383.0,Moma,39.25,-16.25,MOZ,1490.0,Nampula,148.0,Mozambique,104383.0,Moma,both,identical +106280,39.75,-16.25,MOZ,1490.0,Nampula,148.0,Mozambique,104371.0,Angoche,39.75,-16.25,MOZ,1490.0,Nampula,148.0,Mozambique,104371.0,Angoche,both,identical +106281,40.25,-16.25,MOZ,1490.0,Nampula,148.0,Mozambique,104371.0,Angoche,40.25,-16.25,MOZ,1490.0,Nampula,148.0,Mozambique,104371.0,Angoche,both,identical +106289,44.25,-16.25,MDG,1431.0,Mahajanga,141.0,Madagascar,104068.0,Melaky,44.25,-16.25,MDG,1431.0,Mahajanga,141.0,Madagascar,104068.0,Melaky,both,identical +106290,44.75,-16.25,MDG,1431.0,Mahajanga,141.0,Madagascar,104068.0,Melaky,44.75,-16.25,MDG,1431.0,Mahajanga,141.0,Madagascar,104068.0,Melaky,both,identical +106291,45.25,-16.25,MDG,1431.0,Mahajanga,141.0,Madagascar,104067.0,Boeny,45.25,-16.25,MDG,1431.0,Mahajanga,141.0,Madagascar,104067.0,Boeny,both,identical +106292,45.75,-16.25,MDG,1431.0,Mahajanga,141.0,Madagascar,104067.0,Boeny,45.75,-16.25,MDG,1431.0,Mahajanga,141.0,Madagascar,104067.0,Boeny,both,identical +106293,46.25,-16.25,MDG,1431.0,Mahajanga,141.0,Madagascar,104067.0,Boeny,46.25,-16.25,MDG,1431.0,Mahajanga,141.0,Madagascar,104067.0,Boeny,both,identical +106294,46.75,-16.25,MDG,1431.0,Mahajanga,141.0,Madagascar,104067.0,Boeny,46.75,-16.25,MDG,1431.0,Mahajanga,141.0,Madagascar,104067.0,Boeny,both,identical +106295,47.25,-16.25,MDG,1431.0,Mahajanga,141.0,Madagascar,104067.0,Boeny,47.25,-16.25,MDG,1431.0,Mahajanga,141.0,Madagascar,104067.0,Boeny,both,identical +106296,47.75,-16.25,MDG,1431.0,Mahajanga,141.0,Madagascar,104069.0,Sofia,47.75,-16.25,MDG,1431.0,Mahajanga,141.0,Madagascar,104069.0,Sofia,both,identical +106297,48.25,-16.25,MDG,1431.0,Mahajanga,141.0,Madagascar,104069.0,Sofia,48.25,-16.25,MDG,1431.0,Mahajanga,141.0,Madagascar,104069.0,Sofia,both,identical +106298,48.75,-16.25,MDG,1431.0,Mahajanga,141.0,Madagascar,104069.0,Sofia,48.75,-16.25,MDG,1431.0,Mahajanga,141.0,Madagascar,104069.0,Sofia,both,identical +106299,49.25,-16.25,MDG,1432.0,Toamasina,141.0,Madagascar,104071.0,Analanjirofo,49.25,-16.25,MDG,1432.0,Toamasina,141.0,Madagascar,104071.0,Analanjirofo,both,identical +106300,49.75,-16.25,MDG,1432.0,Toamasina,141.0,Madagascar,104071.0,Analanjirofo,49.75,-16.25,MDG,1432.0,Toamasina,141.0,Madagascar,104071.0,Analanjirofo,both,identical +106944,11.75,-15.75,AGO,1064.0,Namibe,102.0,Angola,101679.0,Tômbwa (Porto Alexandre),11.75,-15.75,AGO,1064.0,Namibe,102.0,Angola,101679.0,Tômbwa (Porto Alexandre),both,identical +106945,12.25,-15.75,AGO,1064.0,Namibe,102.0,Angola,101679.0,Tômbwa (Porto Alexandre),12.25,-15.75,AGO,1064.0,Namibe,102.0,Angola,101679.0,Tômbwa (Porto Alexandre),both,identical +106946,12.75,-15.75,AGO,1064.0,Namibe,102.0,Angola,101680.0,Virei,12.75,-15.75,AGO,1064.0,Namibe,102.0,Angola,101680.0,Virei,both,identical +106947,13.25,-15.75,AGO,1064.0,Namibe,102.0,Angola,101680.0,Virei,13.25,-15.75,AGO,1064.0,Namibe,102.0,Angola,101680.0,Virei,both,identical +106948,13.75,-15.75,AGO,1058.0,Huíla,102.0,Angola,101626.0,Gambos (Ex-Chiange),13.75,-15.75,AGO,1058.0,Huíla,102.0,Angola,101626.0,Gambos (Ex-Chiange),both,identical +106949,14.25,-15.75,AGO,1058.0,Huíla,102.0,Angola,101626.0,Gambos (Ex-Chiange),14.25,-15.75,AGO,1058.0,Huíla,102.0,Angola,101626.0,Gambos (Ex-Chiange),both,identical +106950,14.75,-15.75,AGO,1058.0,Huíla,102.0,Angola,101626.0,Gambos (Ex-Chiange),14.75,-15.75,AGO,1058.0,Huíla,102.0,Angola,101626.0,Gambos (Ex-Chiange),both,identical +106951,15.25,-15.75,AGO,1058.0,Huíla,102.0,Angola,101630.0,Matala,15.25,-15.75,AGO,1058.0,Huíla,102.0,Angola,101630.0,Matala,both,identical +106952,15.75,-15.75,AGO,1056.0,Cunene,102.0,Angola,101605.0,Cuvelai,15.75,-15.75,AGO,1056.0,Cunene,102.0,Angola,101605.0,Cuvelai,both,identical +106953,16.25,-15.75,AGO,1056.0,Cunene,102.0,Angola,101605.0,Cuvelai,16.25,-15.75,AGO,1056.0,Cunene,102.0,Angola,101605.0,Cuvelai,both,identical +106954,16.75,-15.75,AGO,1056.0,Cunene,102.0,Angola,101605.0,Cuvelai,16.75,-15.75,AGO,1056.0,Cunene,102.0,Angola,101605.0,Cuvelai,both,identical +106955,17.25,-15.75,AGO,1056.0,Cunene,102.0,Angola,101577.0,Menongue,17.25,-15.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101577.0,Menongue,both,admin_reallocation +106956,17.75,-15.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101577.0,Menongue,17.75,-15.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101577.0,Menongue,both,identical +106957,18.25,-15.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101577.0,Menongue,18.25,-15.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101577.0,Menongue,both,identical +106958,18.75,-15.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101574.0,Cuito Cuanavale,18.75,-15.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101574.0,Cuito Cuanavale,both,identical +106959,19.25,-15.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101574.0,Cuito Cuanavale,19.25,-15.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101574.0,Cuito Cuanavale,both,identical +106960,19.75,-15.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101576.0,Mavinga,19.75,-15.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101576.0,Mavinga,both,identical +106961,20.25,-15.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101576.0,Mavinga,20.25,-15.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101576.0,Mavinga,both,identical +106962,20.75,-15.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101576.0,Mavinga,20.75,-15.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101576.0,Mavinga,both,identical +106963,21.25,-15.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101579.0,Rivungo,21.25,-15.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101579.0,Rivungo,both,identical +106964,21.75,-15.75,AGO,1063.0,Moxico,102.0,Angola,101668.0,Bundas (Lumbala-Nguimbo),21.75,-15.75,AGO,1063.0,Moxico,102.0,Angola,101668.0,Bundas (Lumbala-Nguimbo),both,identical +106965,22.25,-15.75,ZMB,1720.0,Western,168.0,Zambia,106645.0,Sikongo,22.25,-15.75,ZMB,1720.0,Western,168.0,Zambia,106645.0,Sikongo,both,identical +106966,22.75,-15.75,ZMB,1720.0,Western,168.0,Zambia,106640.0,Nalolo,22.75,-15.75,ZMB,1720.0,Western,168.0,Zambia,106640.0,Nalolo,both,identical +106967,23.25,-15.75,ZMB,1720.0,Western,168.0,Zambia,106640.0,Nalolo,23.25,-15.75,ZMB,1720.0,Western,168.0,Zambia,106640.0,Nalolo,both,identical +106968,23.75,-15.75,ZMB,1720.0,Western,168.0,Zambia,106642.0,Senanga,23.75,-15.75,ZMB,1720.0,Western,168.0,Zambia,106642.0,Senanga,both,identical +106969,24.25,-15.75,ZMB,1720.0,Western,168.0,Zambia,106642.0,Senanga,24.25,-15.75,ZMB,1720.0,Western,168.0,Zambia,106642.0,Senanga,both,identical +106970,24.75,-15.75,ZMB,1720.0,Western,168.0,Zambia,106638.0,Mulobezi,24.75,-15.75,ZMB,1720.0,Western,168.0,Zambia,106638.0,Mulobezi,both,identical +106971,25.25,-15.75,ZMB,1720.0,Western,168.0,Zambia,106634.0,Luampa,25.25,-15.75,ZMB,1720.0,Western,168.0,Zambia,106634.0,Luampa,both,identical +106972,25.75,-15.75,ZMB,1711.0,Central,168.0,Zambia,106534.0,Itezhi-Tezhi,25.75,-15.75,ZMB,1711.0,Central,168.0,Zambia,106534.0,Itezhi-Tezhi,both,identical +106973,26.25,-15.75,ZMB,1711.0,Central,168.0,Zambia,106534.0,Itezhi-Tezhi,26.25,-15.75,ZMB,1711.0,Central,168.0,Zambia,106534.0,Itezhi-Tezhi,both,identical +106974,26.75,-15.75,ZMB,1719.0,Southern,168.0,Zambia,106626.0,Namwala,26.75,-15.75,ZMB,1719.0,Southern,168.0,Zambia,106626.0,Namwala,both,identical +106975,27.25,-15.75,ZMB,1719.0,Southern,168.0,Zambia,106626.0,Namwala,27.25,-15.75,ZMB,1719.0,Southern,168.0,Zambia,106626.0,Namwala,both,identical +106976,27.75,-15.75,ZMB,1719.0,Southern,168.0,Zambia,106624.0,Mazabuka,27.75,-15.75,ZMB,1719.0,Southern,168.0,Zambia,106624.0,Mazabuka,both,identical +106977,28.25,-15.75,ZMB,1715.0,Lusaka,168.0,Zambia,106582.0,Kafue,28.25,-15.75,ZMB,1715.0,Lusaka,168.0,Zambia,106582.0,Kafue,both,identical +106978,28.75,-15.75,ZMB,1715.0,Lusaka,168.0,Zambia,106582.0,Kafue,28.75,-15.75,ZMB,1715.0,Lusaka,168.0,Zambia,106582.0,Kafue,both,identical +106979,29.25,-15.75,ZMB,1715.0,Lusaka,168.0,Zambia,106582.0,Kafue,29.25,-15.75,ZWE,1726.0,Mashonaland West,169.0,Zimbabwe,106674.0,Hurungwe,both,country_reassignment +106980,29.75,-15.75,ZWE,1726.0,Mashonaland West,169.0,Zimbabwe,106674.0,Hurungwe,29.75,-15.75,ZWE,1726.0,Mashonaland West,169.0,Zimbabwe,106674.0,Hurungwe,both,identical +106981,30.25,-15.75,ZWE,1726.0,Mashonaland West,169.0,Zimbabwe,106674.0,Hurungwe,30.25,-15.75,ZWE,1726.0,Mashonaland West,169.0,Zimbabwe,106674.0,Hurungwe,both,identical +106982,30.75,-15.75,MOZ,1493.0,Tete,148.0,Mozambique,104434.0,Mágoè,30.75,-15.75,MOZ,1493.0,Tete,148.0,Mozambique,104434.0,Mágoè,both,identical +106983,31.25,-15.75,MOZ,1493.0,Tete,148.0,Mozambique,104434.0,Mágoè,31.25,-15.75,MOZ,1493.0,Tete,148.0,Mozambique,104434.0,Mágoè,both,identical +106984,31.75,-15.75,MOZ,1493.0,Tete,148.0,Mozambique,104434.0,Mágoè,31.75,-15.75,MOZ,1493.0,Tete,148.0,Mozambique,104434.0,Mágoè,both,identical +106985,32.25,-15.75,MOZ,1493.0,Tete,148.0,Mozambique,104424.0,Cahora-Bassa,32.25,-15.75,MOZ,1493.0,Tete,148.0,Mozambique,104424.0,Cahora-Bassa,both,identical +106986,32.75,-15.75,MOZ,1493.0,Tete,148.0,Mozambique,104424.0,Cahora-Bassa,32.75,-15.75,MOZ,1493.0,Tete,148.0,Mozambique,104424.0,Cahora-Bassa,both,identical +106987,33.25,-15.75,MOZ,1493.0,Tete,148.0,Mozambique,104427.0,Chiúta,33.25,-15.75,MOZ,1493.0,Tete,148.0,Mozambique,104427.0,Chiúta,both,identical +106988,33.75,-15.75,MOZ,1493.0,Tete,148.0,Mozambique,104432.0,Moatize,33.75,-15.75,MOZ,1493.0,Tete,148.0,Mozambique,104432.0,Moatize,both,identical +106989,34.25,-15.75,MOZ,1493.0,Tete,148.0,Mozambique,104432.0,Moatize,34.25,-15.75,MOZ,1493.0,Tete,148.0,Mozambique,104432.0,Moatize,both,identical +106990,34.75,-15.75,MWI,1436.0,Southern Region,142.0,Malawi,104093.0,Blantyre,34.75,-15.75,MWI,1436.0,Southern Region,142.0,Malawi,104093.0,Blantyre,both,identical +106991,35.25,-15.75,MWI,1436.0,Southern Region,142.0,Malawi,104095.0,Chiradzulu,35.25,-15.75,MWI,1436.0,Southern Region,142.0,Malawi,104095.0,Chiradzulu,both,identical +106992,35.75,-15.75,MWI,1436.0,Southern Region,142.0,Malawi,104102.0,Phalombe,35.75,-15.75,MWI,1436.0,Southern Region,142.0,Malawi,104102.0,Phalombe,both,identical +106993,36.25,-15.75,MOZ,1494.0,Zambézia,148.0,Mozambique,104454.0,Mulombo,36.25,-15.75,MOZ,1494.0,Zambézia,148.0,Mozambique,104454.0,Mulombo,both,identical +106994,36.75,-15.75,MOZ,1494.0,Zambézia,148.0,Mozambique,104456.0,Namarrói,36.75,-15.75,MOZ,1494.0,Zambézia,148.0,Mozambique,104456.0,Namarrói,both,identical +106995,37.25,-15.75,MOZ,1494.0,Zambézia,148.0,Mozambique,104443.0,Ile,37.25,-15.75,MOZ,1494.0,Zambézia,148.0,Mozambique,104443.0,Ile,both,identical +106996,37.75,-15.75,MOZ,1494.0,Zambézia,148.0,Mozambique,104438.0,Alto Molócuè,37.75,-15.75,MOZ,1494.0,Zambézia,148.0,Mozambique,104438.0,Alto Molócuè,both,identical +106997,38.25,-15.75,MOZ,1494.0,Zambézia,148.0,Mozambique,104441.0,Gilé,38.25,-15.75,MOZ,1494.0,Zambézia,148.0,Mozambique,104441.0,Gilé,both,identical +106998,38.75,-15.75,MOZ,1490.0,Nampula,148.0,Mozambique,104441.0,Gilé,38.75,-15.75,MOZ,1494.0,Zambézia,148.0,Mozambique,104441.0,Gilé,both,admin_reallocation +106999,39.25,-15.75,MOZ,1490.0,Nampula,148.0,Mozambique,104382.0,Mogovolas,39.25,-15.75,MOZ,1490.0,Nampula,148.0,Mozambique,104382.0,Mogovolas,both,identical +107000,39.75,-15.75,MOZ,1490.0,Nampula,148.0,Mozambique,104382.0,Mogovolas,39.75,-15.75,MOZ,1490.0,Nampula,148.0,Mozambique,104382.0,Mogovolas,both,identical +107001,40.25,-15.75,MOZ,1490.0,Nampula,148.0,Mozambique,104376.0,Liúpo,40.25,-15.75,MOZ,1490.0,Nampula,148.0,Mozambique,104376.0,Liúpo,both,identical +107002,40.75,-15.75,MOZ,1490.0,Nampula,148.0,Mozambique,104381.0,Mogincual,40.75,-15.75,MOZ,1490.0,Nampula,148.0,Mozambique,104381.0,Mogincual,both,identical +107011,45.25,-15.75,MDG,1431.0,Mahajanga,141.0,Madagascar,104067.0,Boeny,45.25,-15.75,MDG,1431.0,Mahajanga,141.0,Madagascar,104067.0,Boeny,both,identical +107012,45.75,-15.75,MDG,1431.0,Mahajanga,141.0,Madagascar,104067.0,Boeny,45.75,-15.75,MDG,1431.0,Mahajanga,141.0,Madagascar,104067.0,Boeny,both,identical +107013,46.25,-15.75,MDG,1431.0,Mahajanga,141.0,Madagascar,104067.0,Boeny,46.25,-15.75,MDG,1431.0,Mahajanga,141.0,Madagascar,104067.0,Boeny,both,identical +107014,46.75,-15.75,MDG,1431.0,Mahajanga,141.0,Madagascar,104067.0,Boeny,46.75,-15.75,MDG,1431.0,Mahajanga,141.0,Madagascar,104067.0,Boeny,both,identical +107015,47.25,-15.75,MDG,1431.0,Mahajanga,141.0,Madagascar,104069.0,Sofia,47.25,-15.75,MDG,1431.0,Mahajanga,141.0,Madagascar,104069.0,Sofia,both,identical +107016,47.75,-15.75,MDG,1431.0,Mahajanga,141.0,Madagascar,104069.0,Sofia,47.75,-15.75,MDG,1431.0,Mahajanga,141.0,Madagascar,104069.0,Sofia,both,identical +107017,48.25,-15.75,MDG,1431.0,Mahajanga,141.0,Madagascar,104069.0,Sofia,48.25,-15.75,MDG,1431.0,Mahajanga,141.0,Madagascar,104069.0,Sofia,both,identical +107018,48.75,-15.75,MDG,1431.0,Mahajanga,141.0,Madagascar,104069.0,Sofia,48.75,-15.75,MDG,1431.0,Mahajanga,141.0,Madagascar,104069.0,Sofia,both,identical +107019,49.25,-15.75,MDG,1432.0,Toamasina,141.0,Madagascar,104071.0,Analanjirofo,49.25,-15.75,MDG,1432.0,Toamasina,141.0,Madagascar,104071.0,Analanjirofo,both,identical +107020,49.75,-15.75,MDG,1432.0,Toamasina,141.0,Madagascar,104071.0,Analanjirofo,49.75,-15.75,MDG,1432.0,Toamasina,141.0,Madagascar,104071.0,Analanjirofo,both,identical +107021,50.25,-15.75,MDG,1429.0,Antsiranana,141.0,Madagascar,104059.0,Sava,50.25,-15.75,MDG,1429.0,Antsiranana,141.0,Madagascar,104059.0,Sava,both,identical +107665,12.25,-15.25,AGO,1064.0,Namibe,102.0,Angola,101678.0,Namibe,12.25,-15.25,AGO,1064.0,Namibe,102.0,Angola,101678.0,Namibe,both,identical +107666,12.75,-15.25,AGO,1064.0,Namibe,102.0,Angola,101680.0,Virei,12.75,-15.25,AGO,1064.0,Namibe,102.0,Angola,101680.0,Virei,both,identical +107667,13.25,-15.25,AGO,1064.0,Namibe,102.0,Angola,101680.0,Virei,13.25,-15.25,AGO,1064.0,Namibe,102.0,Angola,101680.0,Virei,both,identical +107668,13.75,-15.25,AGO,1058.0,Huíla,102.0,Angola,101622.0,Chibia,13.75,-15.25,AGO,1058.0,Huíla,102.0,Angola,101622.0,Chibia,both,identical +107669,14.25,-15.25,AGO,1058.0,Huíla,102.0,Angola,101632.0,Quipungo (Tchipungo),14.25,-15.25,AGO,1058.0,Huíla,102.0,Angola,101632.0,Quipungo (Tchipungo),both,identical +107670,14.75,-15.25,AGO,1058.0,Huíla,102.0,Angola,101632.0,Quipungo (Tchipungo),14.75,-15.25,AGO,1058.0,Huíla,102.0,Angola,101632.0,Quipungo (Tchipungo),both,identical +107671,15.25,-15.25,AGO,1058.0,Huíla,102.0,Angola,101630.0,Matala,15.25,-15.25,AGO,1058.0,Huíla,102.0,Angola,101630.0,Matala,both,identical +107672,15.75,-15.25,AGO,1058.0,Huíla,102.0,Angola,101628.0,Jamba,15.75,-15.25,AGO,1058.0,Huíla,102.0,Angola,101628.0,Jamba,both,identical +107673,16.25,-15.25,AGO,1058.0,Huíla,102.0,Angola,101628.0,Jamba,16.25,-15.25,AGO,1058.0,Huíla,102.0,Angola,101628.0,Jamba,both,identical +107674,16.75,-15.25,AGO,1056.0,Cunene,102.0,Angola,101605.0,Cuvelai,16.75,-15.25,AGO,1056.0,Cunene,102.0,Angola,101605.0,Cuvelai,both,identical +107675,17.25,-15.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101573.0,Cuchi,17.25,-15.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101573.0,Cuchi,both,identical +107676,17.75,-15.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101577.0,Menongue,17.75,-15.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101577.0,Menongue,both,identical +107677,18.25,-15.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101574.0,Cuito Cuanavale,18.25,-15.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101574.0,Cuito Cuanavale,both,identical +107678,18.75,-15.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101574.0,Cuito Cuanavale,18.75,-15.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101574.0,Cuito Cuanavale,both,identical +107679,19.25,-15.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101574.0,Cuito Cuanavale,19.25,-15.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101574.0,Cuito Cuanavale,both,identical +107680,19.75,-15.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101576.0,Mavinga,19.75,-15.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101576.0,Mavinga,both,identical +107681,20.25,-15.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101576.0,Mavinga,20.25,-15.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101576.0,Mavinga,both,identical +107682,20.75,-15.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101576.0,Mavinga,20.75,-15.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101576.0,Mavinga,both,identical +107683,21.25,-15.25,AGO,1063.0,Moxico,102.0,Angola,101668.0,Bundas (Lumbala-Nguimbo),21.25,-15.25,AGO,1063.0,Moxico,102.0,Angola,101668.0,Bundas (Lumbala-Nguimbo),both,identical +107684,21.75,-15.25,AGO,1063.0,Moxico,102.0,Angola,101668.0,Bundas (Lumbala-Nguimbo),21.75,-15.25,AGO,1063.0,Moxico,102.0,Angola,101668.0,Bundas (Lumbala-Nguimbo),both,identical +107685,22.25,-15.25,ZMB,1720.0,Western,168.0,Zambia,106645.0,Sikongo,22.25,-15.25,ZMB,1720.0,Western,168.0,Zambia,106645.0,Sikongo,both,identical +107686,22.75,-15.25,ZMB,1720.0,Western,168.0,Zambia,106631.0,Kalabo,22.75,-15.25,ZMB,1720.0,Western,168.0,Zambia,106631.0,Kalabo,both,identical +107687,23.25,-15.25,ZMB,1720.0,Western,168.0,Zambia,106637.0,Mongu,23.25,-15.25,ZMB,1720.0,Western,168.0,Zambia,106637.0,Mongu,both,identical +107688,23.75,-15.25,ZMB,1720.0,Western,168.0,Zambia,106637.0,Mongu,23.75,-15.25,ZMB,1720.0,Western,168.0,Zambia,106637.0,Mongu,both,identical +107689,24.25,-15.25,ZMB,1720.0,Western,168.0,Zambia,106634.0,Luampa,24.25,-15.25,ZMB,1720.0,Western,168.0,Zambia,106634.0,Luampa,both,identical +107690,24.75,-15.25,ZMB,1720.0,Western,168.0,Zambia,106634.0,Luampa,24.75,-15.25,ZMB,1720.0,Western,168.0,Zambia,106634.0,Luampa,both,identical +107691,25.25,-15.25,ZMB,1720.0,Western,168.0,Zambia,106634.0,Luampa,25.25,-15.25,ZMB,1720.0,Western,168.0,Zambia,106634.0,Luampa,both,identical +107692,25.75,-15.25,ZMB,1711.0,Central,168.0,Zambia,106539.0,Mumbwa,25.75,-15.25,ZMB,1711.0,Central,168.0,Zambia,106539.0,Mumbwa,both,identical +107693,26.25,-15.25,ZMB,1711.0,Central,168.0,Zambia,106539.0,Mumbwa,26.25,-15.25,ZMB,1711.0,Central,168.0,Zambia,106539.0,Mumbwa,both,identical +107694,26.75,-15.25,ZMB,1711.0,Central,168.0,Zambia,106539.0,Mumbwa,26.75,-15.25,ZMB,1711.0,Central,168.0,Zambia,106539.0,Mumbwa,both,identical +107695,27.25,-15.25,ZMB,1711.0,Central,168.0,Zambia,106539.0,Mumbwa,27.25,-15.25,ZMB,1711.0,Central,168.0,Zambia,106539.0,Mumbwa,both,identical +107696,27.75,-15.25,ZMB,1711.0,Central,168.0,Zambia,106542.0,Shibuyunji,27.75,-15.25,ZMB,1711.0,Central,168.0,Zambia,106542.0,Shibuyunji,both,identical +107697,28.25,-15.25,ZMB,1715.0,Lusaka,168.0,Zambia,106531.0,Chibombo,28.25,-15.25,ZMB,1711.0,Central,168.0,Zambia,106531.0,Chibombo,both,admin_reallocation +107698,28.75,-15.25,ZMB,1715.0,Lusaka,168.0,Zambia,106581.0,Chongwe,28.75,-15.25,ZMB,1715.0,Lusaka,168.0,Zambia,106581.0,Chongwe,both,identical +107699,29.25,-15.25,ZMB,1715.0,Lusaka,168.0,Zambia,106585.0,Rufunsa,29.25,-15.25,ZMB,1715.0,Lusaka,168.0,Zambia,106585.0,Rufunsa,both,identical +107700,29.75,-15.25,ZMB,1715.0,Lusaka,168.0,Zambia,106585.0,Rufunsa,29.75,-15.25,ZMB,1715.0,Lusaka,168.0,Zambia,106585.0,Rufunsa,both,identical +107701,30.25,-15.25,ZMB,1715.0,Lusaka,168.0,Zambia,106583.0,Luangwa,30.25,-15.25,ZMB,1715.0,Lusaka,168.0,Zambia,106583.0,Luangwa,both,identical +107702,30.75,-15.25,MOZ,1493.0,Tete,148.0,Mozambique,104437.0,Zumbo,30.75,-15.25,MOZ,1493.0,Tete,148.0,Mozambique,104437.0,Zumbo,both,identical +107703,31.25,-15.25,MOZ,1493.0,Tete,148.0,Mozambique,104437.0,Zumbo,31.25,-15.25,MOZ,1493.0,Tete,148.0,Mozambique,104437.0,Zumbo,both,identical +107704,31.75,-15.25,MOZ,1493.0,Tete,148.0,Mozambique,104431.0,Marávia,31.75,-15.25,MOZ,1493.0,Tete,148.0,Mozambique,104431.0,Marávia,both,identical +107705,32.25,-15.25,MOZ,1493.0,Tete,148.0,Mozambique,104431.0,Marávia,32.25,-15.25,MOZ,1493.0,Tete,148.0,Mozambique,104431.0,Marávia,both,identical +107706,32.75,-15.25,MOZ,1493.0,Tete,148.0,Mozambique,104431.0,Marávia,32.75,-15.25,MOZ,1493.0,Tete,148.0,Mozambique,104431.0,Marávia,both,identical +107707,33.25,-15.25,MOZ,1493.0,Tete,148.0,Mozambique,104427.0,Chiúta,33.25,-15.25,MOZ,1493.0,Tete,148.0,Mozambique,104427.0,Chiúta,both,identical +107708,33.75,-15.25,MOZ,1493.0,Tete,148.0,Mozambique,104427.0,Chiúta,33.75,-15.25,MOZ,1493.0,Tete,148.0,Mozambique,104427.0,Chiúta,both,identical +107709,34.25,-15.25,MOZ,1493.0,Tete,148.0,Mozambique,104436.0,Tsangano,34.25,-15.25,MOZ,1493.0,Tete,148.0,Mozambique,104436.0,Tsangano,both,identical +107710,34.75,-15.25,MWI,1436.0,Southern Region,142.0,Malawi,104100.0,Neno,34.75,-15.25,MWI,1436.0,Southern Region,142.0,Malawi,104100.0,Neno,both,identical +107711,35.25,-15.25,MWI,1436.0,Southern Region,142.0,Malawi,104104.0,Zomba,35.25,-15.25,MWI,1436.0,Southern Region,142.0,Malawi,104104.0,Zomba,both,identical +107712,35.75,-15.25,MWI,1436.0,Southern Region,142.0,Malawi,104104.0,Zomba,35.75,-15.25,MWI,1436.0,Southern Region,142.0,Malawi,104104.0,Zomba,both,identical +107713,36.25,-15.25,MOZ,1491.0,Niassa,148.0,Mozambique,104403.0,Mecanhelas,36.25,-15.25,MOZ,1491.0,Niassa,148.0,Mozambique,104403.0,Mecanhelas,both,identical +107714,36.75,-15.25,MOZ,1494.0,Zambézia,148.0,Mozambique,104442.0,Guruè,36.75,-15.25,MOZ,1494.0,Zambézia,148.0,Mozambique,104442.0,Guruè,both,identical +107715,37.25,-15.25,MOZ,1494.0,Zambézia,148.0,Mozambique,104442.0,Guruè,37.25,-15.25,MOZ,1494.0,Zambézia,148.0,Mozambique,104442.0,Guruè,both,identical +107716,37.75,-15.25,MOZ,1494.0,Zambézia,148.0,Mozambique,104438.0,Alto Molócuè,37.75,-15.25,MOZ,1494.0,Zambézia,148.0,Mozambique,104438.0,Alto Molócuè,both,identical +107717,38.25,-15.25,MOZ,1490.0,Nampula,148.0,Mozambique,104393.0,Ribáuè,38.25,-15.25,MOZ,1490.0,Nampula,148.0,Mozambique,104393.0,Ribáuè,both,identical +107718,38.75,-15.25,MOZ,1490.0,Nampula,148.0,Mozambique,104387.0,Murrupula,38.75,-15.25,MOZ,1490.0,Nampula,148.0,Mozambique,104387.0,Murrupula,both,identical +107719,39.25,-15.25,MOZ,1490.0,Nampula,148.0,Mozambique,104391.0,Nampula,39.25,-15.25,MOZ,1490.0,Nampula,148.0,Mozambique,104391.0,Nampula,both,identical +107720,39.75,-15.25,MOZ,1490.0,Nampula,148.0,Mozambique,104378.0,Meconta,39.75,-15.25,MOZ,1490.0,Nampula,148.0,Mozambique,104378.0,Meconta,both,identical +107721,40.25,-15.25,MOZ,1490.0,Nampula,148.0,Mozambique,104385.0,Mossuril,40.25,-15.25,MOZ,1490.0,Nampula,148.0,Mozambique,104385.0,Mossuril,both,identical +107722,40.75,-15.25,MOZ,1490.0,Nampula,148.0,Mozambique,104385.0,Mossuril,40.75,-15.25,MOZ,1490.0,Nampula,148.0,Mozambique,104385.0,Mossuril,both,identical +107733,46.25,-15.25,MDG,,,,,,,,,,,,,,,,old_only,dropped_by_land_gaul +107734,46.75,-15.25,MDG,1431.0,Mahajanga,141.0,Madagascar,104067.0,Boeny,46.75,-15.25,MDG,1431.0,Mahajanga,141.0,Madagascar,104067.0,Boeny,both,identical +107735,47.25,-15.25,MDG,1431.0,Mahajanga,141.0,Madagascar,104069.0,Sofia,47.25,-15.25,MDG,1431.0,Mahajanga,141.0,Madagascar,104069.0,Sofia,both,identical +107736,47.75,-15.25,MDG,1431.0,Mahajanga,141.0,Madagascar,104069.0,Sofia,47.75,-15.25,MDG,1431.0,Mahajanga,141.0,Madagascar,104069.0,Sofia,both,identical +107737,48.25,-15.25,MDG,1431.0,Mahajanga,141.0,Madagascar,104069.0,Sofia,48.25,-15.25,MDG,1431.0,Mahajanga,141.0,Madagascar,104069.0,Sofia,both,identical +107738,48.75,-15.25,MDG,1431.0,Mahajanga,141.0,Madagascar,104069.0,Sofia,48.75,-15.25,MDG,1431.0,Mahajanga,141.0,Madagascar,104069.0,Sofia,both,identical +107739,49.25,-15.25,MDG,1431.0,Mahajanga,141.0,Madagascar,104069.0,Sofia,49.25,-15.25,MDG,1431.0,Mahajanga,141.0,Madagascar,104069.0,Sofia,both,identical +107740,49.75,-15.25,MDG,1432.0,Toamasina,141.0,Madagascar,104071.0,Analanjirofo,49.75,-15.25,MDG,1432.0,Toamasina,141.0,Madagascar,104071.0,Analanjirofo,both,identical +107741,50.25,-15.25,MDG,1429.0,Antsiranana,141.0,Madagascar,104059.0,Sava,50.25,-15.25,MDG,1429.0,Antsiranana,141.0,Madagascar,104059.0,Sava,both,identical +107742,50.75,-15.25,MDG,,,,,,,,,,,,,,,,old_only,dropped_by_land_gaul +108385,12.25,-14.75,AGO,1064.0,Namibe,102.0,Angola,101678.0,Namibe,12.25,-14.75,AGO,1064.0,Namibe,102.0,Angola,101678.0,Namibe,both,identical +108386,12.75,-14.75,AGO,1064.0,Namibe,102.0,Angola,101678.0,Namibe,12.75,-14.75,AGO,1064.0,Namibe,102.0,Angola,101678.0,Namibe,both,identical +108387,13.25,-14.75,AGO,1064.0,Namibe,102.0,Angola,101676.0,Bibala,13.25,-14.75,AGO,1064.0,Namibe,102.0,Angola,101676.0,Bibala,both,identical +108388,13.75,-14.75,AGO,1058.0,Huíla,102.0,Angola,101629.0,Lubango,13.75,-14.75,AGO,1058.0,Huíla,102.0,Angola,101629.0,Lubango,both,identical +108389,14.25,-14.75,AGO,1058.0,Huíla,102.0,Angola,101620.0,Cacula,14.25,-14.75,AGO,1058.0,Huíla,102.0,Angola,101620.0,Cacula,both,identical +108390,14.75,-14.75,AGO,1058.0,Huíla,102.0,Angola,101632.0,Quipungo (Tchipungo),14.75,-14.75,AGO,1058.0,Huíla,102.0,Angola,101632.0,Quipungo (Tchipungo),both,identical +108391,15.25,-14.75,AGO,1058.0,Huíla,102.0,Angola,101630.0,Matala,15.25,-14.75,AGO,1058.0,Huíla,102.0,Angola,101630.0,Matala,both,identical +108392,15.75,-14.75,AGO,1058.0,Huíla,102.0,Angola,101628.0,Jamba,15.75,-14.75,AGO,1058.0,Huíla,102.0,Angola,101628.0,Jamba,both,identical +108393,16.25,-14.75,AGO,1058.0,Huíla,102.0,Angola,101628.0,Jamba,16.25,-14.75,AGO,1058.0,Huíla,102.0,Angola,101628.0,Jamba,both,identical +108394,16.75,-14.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101573.0,Cuchi,16.75,-14.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101573.0,Cuchi,both,identical +108395,17.25,-14.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101573.0,Cuchi,17.25,-14.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101573.0,Cuchi,both,identical +108396,17.75,-14.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101577.0,Menongue,17.75,-14.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101577.0,Menongue,both,identical +108397,18.25,-14.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101574.0,Cuito Cuanavale,18.25,-14.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101574.0,Cuito Cuanavale,both,identical +108398,18.75,-14.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101574.0,Cuito Cuanavale,18.75,-14.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101574.0,Cuito Cuanavale,both,identical +108399,19.25,-14.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101574.0,Cuito Cuanavale,19.25,-14.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101574.0,Cuito Cuanavale,both,identical +108400,19.75,-14.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101574.0,Cuito Cuanavale,19.75,-14.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101574.0,Cuito Cuanavale,both,identical +108401,20.25,-14.75,AGO,1063.0,Moxico,102.0,Angola,101673.0,Luchazes,20.25,-14.75,AGO,1063.0,Moxico,102.0,Angola,101673.0,Luchazes,both,identical +108402,20.75,-14.75,AGO,1063.0,Moxico,102.0,Angola,101673.0,Luchazes,20.75,-14.75,AGO,1063.0,Moxico,102.0,Angola,101673.0,Luchazes,both,identical +108403,21.25,-14.75,AGO,1063.0,Moxico,102.0,Angola,101668.0,Bundas (Lumbala-Nguimbo),21.25,-14.75,AGO,1063.0,Moxico,102.0,Angola,101668.0,Bundas (Lumbala-Nguimbo),both,identical +108404,21.75,-14.75,AGO,1063.0,Moxico,102.0,Angola,101668.0,Bundas (Lumbala-Nguimbo),21.75,-14.75,AGO,1063.0,Moxico,102.0,Angola,101668.0,Bundas (Lumbala-Nguimbo),both,identical +108405,22.25,-14.75,ZMB,1720.0,Western,168.0,Zambia,106645.0,Sikongo,22.25,-14.75,ZMB,1720.0,Western,168.0,Zambia,106645.0,Sikongo,both,identical +108406,22.75,-14.75,ZMB,1720.0,Western,168.0,Zambia,106631.0,Kalabo,22.75,-14.75,ZMB,1720.0,Western,168.0,Zambia,106631.0,Kalabo,both,identical +108407,23.25,-14.75,ZMB,1720.0,Western,168.0,Zambia,106635.0,Lukulu,23.25,-14.75,ZMB,1720.0,Western,168.0,Zambia,106635.0,Lukulu,both,identical +108408,23.75,-14.75,ZMB,1720.0,Western,168.0,Zambia,106632.0,Kaoma,23.75,-14.75,ZMB,1720.0,Western,168.0,Zambia,106632.0,Kaoma,both,identical +108409,24.25,-14.75,ZMB,1720.0,Western,168.0,Zambia,106632.0,Kaoma,24.25,-14.75,ZMB,1720.0,Western,168.0,Zambia,106632.0,Kaoma,both,identical +108410,24.75,-14.75,ZMB,1720.0,Western,168.0,Zambia,106632.0,Kaoma,24.75,-14.75,ZMB,1720.0,Western,168.0,Zambia,106632.0,Kaoma,both,identical +108411,25.25,-14.75,ZMB,1720.0,Western,168.0,Zambia,106641.0,Nkeyema,25.25,-14.75,ZMB,1720.0,Western,168.0,Zambia,106641.0,Nkeyema,both,identical +108412,25.75,-14.75,ZMB,1711.0,Central,168.0,Zambia,106539.0,Mumbwa,25.75,-14.75,ZMB,1711.0,Central,168.0,Zambia,106539.0,Mumbwa,both,identical +108413,26.25,-14.75,ZMB,1711.0,Central,168.0,Zambia,106539.0,Mumbwa,26.25,-14.75,ZMB,1711.0,Central,168.0,Zambia,106539.0,Mumbwa,both,identical +108414,26.75,-14.75,ZMB,1711.0,Central,168.0,Zambia,106539.0,Mumbwa,26.75,-14.75,ZMB,1711.0,Central,168.0,Zambia,106539.0,Mumbwa,both,identical +108415,27.25,-14.75,ZMB,1711.0,Central,168.0,Zambia,106531.0,Chibombo,27.25,-14.75,ZMB,1711.0,Central,168.0,Zambia,106531.0,Chibombo,both,identical +108416,27.75,-14.75,ZMB,1711.0,Central,168.0,Zambia,106531.0,Chibombo,27.75,-14.75,ZMB,1711.0,Central,168.0,Zambia,106531.0,Chibombo,both,identical +108417,28.25,-14.75,ZMB,1711.0,Central,168.0,Zambia,106532.0,Chisamba,28.25,-14.75,ZMB,1711.0,Central,168.0,Zambia,106532.0,Chisamba,both,identical +108418,28.75,-14.75,ZMB,1711.0,Central,168.0,Zambia,106532.0,Chisamba,28.75,-14.75,ZMB,1711.0,Central,168.0,Zambia,106532.0,Chisamba,both,identical +108419,29.25,-14.75,ZMB,1711.0,Central,168.0,Zambia,106537.0,Luano,29.25,-14.75,ZMB,1711.0,Central,168.0,Zambia,106537.0,Luano,both,identical +108420,29.75,-14.75,ZMB,1715.0,Lusaka,168.0,Zambia,106585.0,Rufunsa,29.75,-14.75,ZMB,1715.0,Lusaka,168.0,Zambia,106585.0,Rufunsa,both,identical +108421,30.25,-14.75,ZMB,1713.0,Eastern,168.0,Zambia,106563.0,Nyimba,30.25,-14.75,ZMB,1713.0,Eastern,168.0,Zambia,106563.0,Nyimba,both,identical +108422,30.75,-14.75,ZMB,1713.0,Eastern,168.0,Zambia,106563.0,Nyimba,30.75,-14.75,ZMB,1713.0,Eastern,168.0,Zambia,106563.0,Nyimba,both,identical +108423,31.25,-14.75,MOZ,1493.0,Tete,148.0,Mozambique,104437.0,Zumbo,31.25,-14.75,MOZ,1493.0,Tete,148.0,Mozambique,104437.0,Zumbo,both,identical +108424,31.75,-14.75,MOZ,1493.0,Tete,148.0,Mozambique,104431.0,Marávia,31.75,-14.75,MOZ,1493.0,Tete,148.0,Mozambique,104431.0,Marávia,both,identical +108425,32.25,-14.75,MOZ,1493.0,Tete,148.0,Mozambique,104431.0,Marávia,32.25,-14.75,MOZ,1493.0,Tete,148.0,Mozambique,104431.0,Marávia,both,identical +108426,32.75,-14.75,MOZ,1493.0,Tete,148.0,Mozambique,104426.0,Chifunde,32.75,-14.75,MOZ,1493.0,Tete,148.0,Mozambique,104426.0,Chifunde,both,identical +108427,33.25,-14.75,MOZ,1493.0,Tete,148.0,Mozambique,104429.0,Macanga,33.25,-14.75,MOZ,1493.0,Tete,148.0,Mozambique,104429.0,Macanga,both,identical +108428,33.75,-14.75,MOZ,1493.0,Tete,148.0,Mozambique,104429.0,Macanga,33.75,-14.75,MOZ,1493.0,Tete,148.0,Mozambique,104429.0,Macanga,both,identical +108429,34.25,-14.75,MOZ,1493.0,Tete,148.0,Mozambique,104423.0,Angónia,34.25,-14.75,MOZ,1493.0,Tete,148.0,Mozambique,104423.0,Angónia,both,identical +108430,34.75,-14.75,MWI,1434.0,Central Region,142.0,Malawi,104083.0,Ntcheu,34.75,-14.75,MWI,1434.0,Central Region,142.0,Malawi,104083.0,Ntcheu,both,identical +108431,35.25,-14.75,MWI,1436.0,Southern Region,142.0,Malawi,104097.0,Mangochi,35.25,-14.75,MWI,1436.0,Southern Region,142.0,Malawi,104097.0,Mangochi,both,identical +108432,35.75,-14.75,MWI,1436.0,Southern Region,142.0,Malawi,104096.0,Machinga,35.75,-14.75,MWI,1436.0,Southern Region,142.0,Malawi,104096.0,Machinga,both,identical +108433,36.25,-14.75,MOZ,1491.0,Niassa,148.0,Mozambique,104403.0,Mecanhelas,36.25,-14.75,MOZ,1491.0,Niassa,148.0,Mozambique,104403.0,Mecanhelas,both,identical +108434,36.75,-14.75,MOZ,1491.0,Niassa,148.0,Mozambique,104395.0,Cuamba,36.75,-14.75,MOZ,1491.0,Niassa,148.0,Mozambique,104395.0,Cuamba,both,identical +108435,37.25,-14.75,MOZ,1490.0,Nampula,148.0,Mozambique,104377.0,Malema,37.25,-14.75,MOZ,1490.0,Nampula,148.0,Mozambique,104377.0,Malema,both,identical +108436,37.75,-14.75,MOZ,1490.0,Nampula,148.0,Mozambique,104377.0,Malema,37.75,-14.75,MOZ,1490.0,Nampula,148.0,Mozambique,104377.0,Malema,both,identical +108437,38.25,-14.75,MOZ,1490.0,Nampula,148.0,Mozambique,104393.0,Ribáuè,38.25,-14.75,MOZ,1490.0,Nampula,148.0,Mozambique,104393.0,Ribáuè,both,identical +108438,38.75,-14.75,MOZ,1490.0,Nampula,148.0,Mozambique,104379.0,Mecubúri,38.75,-14.75,MOZ,1490.0,Nampula,148.0,Mozambique,104379.0,Mecubúri,both,identical +108439,39.25,-14.75,MOZ,1490.0,Nampula,148.0,Mozambique,104386.0,Muecate,39.25,-14.75,MOZ,1490.0,Nampula,148.0,Mozambique,104386.0,Muecate,both,identical +108440,39.75,-14.75,MOZ,1490.0,Nampula,148.0,Mozambique,104386.0,Muecate,39.75,-14.75,MOZ,1490.0,Nampula,148.0,Mozambique,104386.0,Muecate,both,identical +108441,40.25,-14.75,MOZ,1490.0,Nampula,148.0,Mozambique,104384.0,Monapo,40.25,-14.75,MOZ,1490.0,Nampula,148.0,Mozambique,104384.0,Monapo,both,identical +108442,40.75,-14.75,MOZ,1490.0,Nampula,148.0,Mozambique,104385.0,Mossuril,40.75,-14.75,MOZ,1490.0,Nampula,148.0,Mozambique,104385.0,Mossuril,both,identical +108455,47.25,-14.75,MDG,1431.0,Mahajanga,141.0,Madagascar,104069.0,Sofia,47.25,-14.75,MDG,1431.0,Mahajanga,141.0,Madagascar,104069.0,Sofia,both,identical +108456,47.75,-14.75,MDG,1431.0,Mahajanga,141.0,Madagascar,104069.0,Sofia,47.75,-14.75,MDG,1431.0,Mahajanga,141.0,Madagascar,104069.0,Sofia,both,identical +108457,48.25,-14.75,MDG,1431.0,Mahajanga,141.0,Madagascar,104069.0,Sofia,48.25,-14.75,MDG,1431.0,Mahajanga,141.0,Madagascar,104069.0,Sofia,both,identical +108458,48.75,-14.75,MDG,1431.0,Mahajanga,141.0,Madagascar,104069.0,Sofia,48.75,-14.75,MDG,1431.0,Mahajanga,141.0,Madagascar,104069.0,Sofia,both,identical +108459,49.25,-14.75,MDG,1431.0,Mahajanga,141.0,Madagascar,104069.0,Sofia,49.25,-14.75,MDG,1431.0,Mahajanga,141.0,Madagascar,104069.0,Sofia,both,identical +108460,49.75,-14.75,MDG,1429.0,Antsiranana,141.0,Madagascar,104059.0,Sava,49.75,-14.75,MDG,1429.0,Antsiranana,141.0,Madagascar,104059.0,Sava,both,identical +108461,50.25,-14.75,MDG,1429.0,Antsiranana,141.0,Madagascar,104059.0,Sava,50.25,-14.75,MDG,1429.0,Antsiranana,141.0,Madagascar,104059.0,Sava,both,identical +109105,12.25,-14.25,AGO,1064.0,Namibe,102.0,Angola,101678.0,Namibe,12.25,-14.25,AGO,1064.0,Namibe,102.0,Angola,101678.0,Namibe,both,identical +109106,12.75,-14.25,AGO,1064.0,Namibe,102.0,Angola,101677.0,Camucuio,12.75,-14.25,AGO,1064.0,Namibe,102.0,Angola,101677.0,Camucuio,both,identical +109107,13.25,-14.25,AGO,1064.0,Namibe,102.0,Angola,101676.0,Bibala,13.25,-14.25,AGO,1064.0,Namibe,102.0,Angola,101676.0,Bibala,both,identical +109108,13.75,-14.25,AGO,1058.0,Huíla,102.0,Angola,101631.0,Quilengues,13.75,-14.25,AGO,1058.0,Huíla,102.0,Angola,101631.0,Quilengues,both,identical +109109,14.25,-14.25,AGO,1058.0,Huíla,102.0,Angola,101620.0,Cacula,14.25,-14.25,AGO,1058.0,Huíla,102.0,Angola,101620.0,Cacula,both,identical +109110,14.75,-14.25,AGO,1058.0,Huíla,102.0,Angola,101623.0,Chicomba,14.75,-14.25,AGO,1058.0,Huíla,102.0,Angola,101623.0,Chicomba,both,identical +109111,15.25,-14.25,AGO,1058.0,Huíla,102.0,Angola,101623.0,Chicomba,15.25,-14.25,AGO,1058.0,Huíla,102.0,Angola,101623.0,Chicomba,both,identical +109112,15.75,-14.25,AGO,1058.0,Huíla,102.0,Angola,101628.0,Jamba,15.75,-14.25,AGO,1058.0,Huíla,102.0,Angola,101628.0,Jamba,both,identical +109113,16.25,-14.25,AGO,1058.0,Huíla,102.0,Angola,101625.0,Cuvango (Kuvango),16.25,-14.25,AGO,1058.0,Huíla,102.0,Angola,101625.0,Cuvango (Kuvango),both,identical +109114,16.75,-14.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101573.0,Cuchi,16.75,-14.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101573.0,Cuchi,both,identical +109115,17.25,-14.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101562.0,Chitembo,17.25,-14.25,AGO,1051.0,Bié,102.0,Angola,101562.0,Chitembo,both,admin_reallocation +109116,17.75,-14.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101577.0,Menongue,17.75,-14.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101577.0,Menongue,both,identical +109117,18.25,-14.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101574.0,Cuito Cuanavale,18.25,-14.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101574.0,Cuito Cuanavale,both,identical +109118,18.75,-14.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101574.0,Cuito Cuanavale,18.75,-14.25,AGO,1053.0,Cuando Cubango,102.0,Angola,101574.0,Cuito Cuanavale,both,identical +109119,19.25,-14.25,AGO,1063.0,Moxico,102.0,Angola,101673.0,Luchazes,19.25,-14.25,AGO,1063.0,Moxico,102.0,Angola,101673.0,Luchazes,both,identical +109120,19.75,-14.25,AGO,1063.0,Moxico,102.0,Angola,101673.0,Luchazes,19.75,-14.25,AGO,1063.0,Moxico,102.0,Angola,101673.0,Luchazes,both,identical +109121,20.25,-14.25,AGO,1063.0,Moxico,102.0,Angola,101673.0,Luchazes,20.25,-14.25,AGO,1063.0,Moxico,102.0,Angola,101673.0,Luchazes,both,identical +109122,20.75,-14.25,AGO,1063.0,Moxico,102.0,Angola,101668.0,Bundas (Lumbala-Nguimbo),20.75,-14.25,AGO,1063.0,Moxico,102.0,Angola,101668.0,Bundas (Lumbala-Nguimbo),both,identical +109123,21.25,-14.25,AGO,1063.0,Moxico,102.0,Angola,101668.0,Bundas (Lumbala-Nguimbo),21.25,-14.25,AGO,1063.0,Moxico,102.0,Angola,101668.0,Bundas (Lumbala-Nguimbo),both,identical +109124,21.75,-14.25,AGO,1063.0,Moxico,102.0,Angola,101668.0,Bundas (Lumbala-Nguimbo),21.75,-14.25,AGO,1063.0,Moxico,102.0,Angola,101668.0,Bundas (Lumbala-Nguimbo),both,identical +109125,22.25,-14.25,ZMB,1720.0,Western,168.0,Zambia,106631.0,Kalabo,22.25,-14.25,ZMB,1720.0,Western,168.0,Zambia,106631.0,Kalabo,both,identical +109126,22.75,-14.25,ZMB,1720.0,Western,168.0,Zambia,106636.0,Mitete,22.75,-14.25,ZMB,1720.0,Western,168.0,Zambia,106636.0,Mitete,both,identical +109127,23.25,-14.25,ZMB,1720.0,Western,168.0,Zambia,106635.0,Lukulu,23.25,-14.25,ZMB,1720.0,Western,168.0,Zambia,106635.0,Lukulu,both,identical +109128,23.75,-14.25,ZMB,1720.0,Western,168.0,Zambia,106635.0,Lukulu,23.75,-14.25,ZMB,1720.0,Western,168.0,Zambia,106635.0,Lukulu,both,identical +109129,24.25,-14.25,ZMB,1720.0,Western,168.0,Zambia,106635.0,Lukulu,24.25,-14.25,ZMB,1720.0,Western,168.0,Zambia,106635.0,Lukulu,both,identical +109130,24.75,-14.25,ZMB,1720.0,Western,168.0,Zambia,106632.0,Kaoma,24.75,-14.25,ZMB,1720.0,Western,168.0,Zambia,106632.0,Kaoma,both,identical +109131,25.25,-14.25,ZMB,1717.0,North-Western,168.0,Zambia,106601.0,Mufumbwe,25.25,-14.25,ZMB,1717.0,North-Western,168.0,Zambia,106601.0,Mufumbwe,both,identical +109132,25.75,-14.25,ZMB,1717.0,North-Western,168.0,Zambia,106601.0,Mufumbwe,25.75,-14.25,ZMB,1717.0,North-Western,168.0,Zambia,106601.0,Mufumbwe,both,identical +109133,26.25,-14.25,ZMB,1717.0,North-Western,168.0,Zambia,106599.0,Kasempa,26.25,-14.25,ZMB,1717.0,North-Western,168.0,Zambia,106599.0,Kasempa,both,identical +109134,26.75,-14.25,ZMB,1717.0,North-Western,168.0,Zambia,106599.0,Kasempa,26.75,-14.25,ZMB,1717.0,North-Western,168.0,Zambia,106599.0,Kasempa,both,identical +109135,27.25,-14.25,ZMB,1711.0,Central,168.0,Zambia,106540.0,Ngabwe,27.25,-14.25,ZMB,1711.0,Central,168.0,Zambia,106540.0,Ngabwe,both,identical +109136,27.75,-14.25,ZMB,1711.0,Central,168.0,Zambia,106540.0,Ngabwe,27.75,-14.25,ZMB,1711.0,Central,168.0,Zambia,106540.0,Ngabwe,both,identical +109137,28.25,-14.25,ZMB,1711.0,Central,168.0,Zambia,106536.0,Kapiri Mposhi,28.25,-14.25,ZMB,1711.0,Central,168.0,Zambia,106536.0,Kapiri Mposhi,both,identical +109138,28.75,-14.25,ZMB,1711.0,Central,168.0,Zambia,106536.0,Kapiri Mposhi,28.75,-14.25,ZMB,1711.0,Central,168.0,Zambia,106536.0,Kapiri Mposhi,both,identical +109139,29.25,-14.25,ZMB,1711.0,Central,168.0,Zambia,106537.0,Luano,29.25,-14.25,ZMB,1711.0,Central,168.0,Zambia,106537.0,Luano,both,identical +109140,29.75,-14.25,ZMB,1711.0,Central,168.0,Zambia,106537.0,Luano,29.75,-14.25,ZMB,1711.0,Central,168.0,Zambia,106537.0,Luano,both,identical +109141,30.25,-14.25,ZMB,1713.0,Eastern,168.0,Zambia,106563.0,Nyimba,30.25,-14.25,ZMB,1713.0,Eastern,168.0,Zambia,106563.0,Nyimba,both,identical +109142,30.75,-14.25,ZMB,1713.0,Eastern,168.0,Zambia,106563.0,Nyimba,30.75,-14.25,ZMB,1713.0,Eastern,168.0,Zambia,106563.0,Nyimba,both,identical +109143,31.25,-14.25,ZMB,1713.0,Eastern,168.0,Zambia,106564.0,Petauke,31.25,-14.25,ZMB,1713.0,Eastern,168.0,Zambia,106564.0,Petauke,both,identical +109144,31.75,-14.25,ZMB,1713.0,Eastern,168.0,Zambia,106565.0,Sinda,31.75,-14.25,ZMB,1713.0,Eastern,168.0,Zambia,106565.0,Sinda,both,identical +109145,32.25,-14.25,ZMB,1713.0,Eastern,168.0,Zambia,106558.0,Katete,32.25,-14.25,ZMB,1713.0,Eastern,168.0,Zambia,106558.0,Katete,both,identical +109146,32.75,-14.25,MOZ,1493.0,Tete,148.0,Mozambique,104426.0,Chifunde,32.75,-14.25,MOZ,1493.0,Tete,148.0,Mozambique,104426.0,Chifunde,both,identical +109147,33.25,-14.25,MOZ,1493.0,Tete,148.0,Mozambique,104426.0,Chifunde,33.25,-14.25,MOZ,1493.0,Tete,148.0,Mozambique,104426.0,Chifunde,both,identical +109148,33.75,-14.25,MWI,1434.0,Central Region,142.0,Malawi,104080.0,Lilongwe,33.75,-14.25,MWI,1434.0,Central Region,142.0,Malawi,104080.0,Lilongwe,both,identical +109149,34.25,-14.25,MWI,1434.0,Central Region,142.0,Malawi,104077.0,Dedza,34.25,-14.25,MWI,1434.0,Central Region,142.0,Malawi,104077.0,Dedza,both,identical +109150,34.75,-14.25,MWI,1436.0,Southern Region,142.0,Malawi,104097.0,Mangochi,34.75,-14.25,MWI,1436.0,Southern Region,142.0,Malawi,104097.0,Mangochi,both,identical +109151,35.25,-14.25,MWI,1436.0,Southern Region,142.0,Malawi,104097.0,Mangochi,35.25,-14.25,MWI,1436.0,Southern Region,142.0,Malawi,104097.0,Mangochi,both,identical +109152,35.75,-14.25,MOZ,1491.0,Niassa,148.0,Mozambique,104399.0,Mandimba,35.75,-14.25,MOZ,1491.0,Niassa,148.0,Mozambique,104399.0,Mandimba,both,identical +109153,36.25,-14.25,MOZ,1491.0,Niassa,148.0,Mozambique,104399.0,Mandimba,36.25,-14.25,MOZ,1491.0,Niassa,148.0,Mozambique,104399.0,Mandimba,both,identical +109154,36.75,-14.25,MOZ,1491.0,Niassa,148.0,Mozambique,104405.0,Metarica,36.75,-14.25,MOZ,1491.0,Niassa,148.0,Mozambique,104405.0,Metarica,both,identical +109155,37.25,-14.25,MOZ,1491.0,Niassa,148.0,Mozambique,104402.0,Maúa,37.25,-14.25,MOZ,1491.0,Niassa,148.0,Mozambique,104402.0,Maúa,both,identical +109156,37.75,-14.25,MOZ,1491.0,Niassa,148.0,Mozambique,104408.0,Nipepe,37.75,-14.25,MOZ,1491.0,Niassa,148.0,Mozambique,104408.0,Nipepe,both,identical +109157,38.25,-14.25,MOZ,1490.0,Nampula,148.0,Mozambique,104374.0,Lalaua,38.25,-14.25,MOZ,1490.0,Nampula,148.0,Mozambique,104374.0,Lalaua,both,identical +109158,38.75,-14.25,MOZ,1490.0,Nampula,148.0,Mozambique,104379.0,Mecubúri,38.75,-14.25,MOZ,1490.0,Nampula,148.0,Mozambique,104379.0,Mecubúri,both,identical +109159,39.25,-14.25,MOZ,1490.0,Nampula,148.0,Mozambique,104379.0,Mecubúri,39.25,-14.25,MOZ,1490.0,Nampula,148.0,Mozambique,104379.0,Mecubúri,both,identical +109160,39.75,-14.25,MOZ,1490.0,Nampula,148.0,Mozambique,104390.0,Nacarôa,39.75,-14.25,MOZ,1490.0,Nampula,148.0,Mozambique,104390.0,Nacarôa,both,identical +109161,40.25,-14.25,MOZ,1490.0,Nampula,148.0,Mozambique,104380.0,Memba,40.25,-14.25,MOZ,1490.0,Nampula,148.0,Mozambique,104380.0,Memba,both,identical +109162,40.75,-14.25,MOZ,1490.0,Nampula,148.0,Mozambique,104380.0,Memba,40.75,-14.25,MOZ,1490.0,Nampula,148.0,Mozambique,104380.0,Memba,both,identical +109176,47.75,-14.25,MDG,1431.0,Mahajanga,141.0,Madagascar,104069.0,Sofia,47.75,-14.25,MDG,1431.0,Mahajanga,141.0,Madagascar,104069.0,Sofia,both,identical +109177,48.25,-14.25,MDG,1431.0,Mahajanga,141.0,Madagascar,104069.0,Sofia,48.25,-14.25,MDG,1431.0,Mahajanga,141.0,Madagascar,104069.0,Sofia,both,identical +109178,48.75,-14.25,MDG,1431.0,Mahajanga,141.0,Madagascar,104069.0,Sofia,48.75,-14.25,MDG,1431.0,Mahajanga,141.0,Madagascar,104069.0,Sofia,both,identical +109179,49.25,-14.25,MDG,1429.0,Antsiranana,141.0,Madagascar,104059.0,Sava,49.25,-14.25,MDG,1429.0,Antsiranana,141.0,Madagascar,104059.0,Sava,both,identical +109180,49.75,-14.25,MDG,1429.0,Antsiranana,141.0,Madagascar,104059.0,Sava,49.75,-14.25,MDG,1429.0,Antsiranana,141.0,Madagascar,104059.0,Sava,both,identical +109181,50.25,-14.25,MDG,1429.0,Antsiranana,141.0,Madagascar,104059.0,Sava,50.25,-14.25,MDG,1429.0,Antsiranana,141.0,Madagascar,104059.0,Sava,both,identical +109825,12.25,-13.75,AGO,1064.0,Namibe,102.0,Angola,101678.0,Namibe,12.25,-13.75,AGO,1064.0,Namibe,102.0,Angola,101678.0,Namibe,both,identical +109826,12.75,-13.75,AGO,1064.0,Namibe,102.0,Angola,101678.0,Namibe,12.75,-13.75,AGO,1064.0,Namibe,102.0,Angola,101678.0,Namibe,both,identical +109827,13.25,-13.75,AGO,1064.0,Namibe,102.0,Angola,101677.0,Camucuio,13.25,-13.75,AGO,1064.0,Namibe,102.0,Angola,101677.0,Camucuio,both,identical +109828,13.75,-13.75,AGO,1050.0,Benguela,102.0,Angola,101554.0,Chongoroi,13.75,-13.75,AGO,1050.0,Benguela,102.0,Angola,101554.0,Chongoroi,both,identical +109829,14.25,-13.75,AGO,1050.0,Benguela,102.0,Angola,101554.0,Chongoroi,14.25,-13.75,AGO,1050.0,Benguela,102.0,Angola,101554.0,Chongoroi,both,identical +109830,14.75,-13.75,AGO,1058.0,Huíla,102.0,Angola,101621.0,Caluquembe,14.75,-13.75,AGO,1058.0,Huíla,102.0,Angola,101621.0,Caluquembe,both,identical +109831,15.25,-13.75,AGO,1058.0,Huíla,102.0,Angola,101619.0,Caconda,15.25,-13.75,AGO,1058.0,Huíla,102.0,Angola,101619.0,Caconda,both,identical +109832,15.75,-13.75,AGO,1058.0,Huíla,102.0,Angola,101624.0,Chipindo,15.75,-13.75,AGO,1058.0,Huíla,102.0,Angola,101624.0,Chipindo,both,identical +109833,16.25,-13.75,AGO,1058.0,Huíla,102.0,Angola,101625.0,Cuvango (Kuvango),16.25,-13.75,AGO,1058.0,Huíla,102.0,Angola,101625.0,Cuvango (Kuvango),both,identical +109834,16.75,-13.75,AGO,1051.0,Bié,102.0,Angola,101562.0,Chitembo,16.75,-13.75,AGO,1051.0,Bié,102.0,Angola,101562.0,Chitembo,both,identical +109835,17.25,-13.75,AGO,1051.0,Bié,102.0,Angola,101562.0,Chitembo,17.25,-13.75,AGO,1051.0,Bié,102.0,Angola,101562.0,Chitembo,both,identical +109836,17.75,-13.75,AGO,1051.0,Bié,102.0,Angola,101562.0,Chitembo,17.75,-13.75,AGO,1051.0,Bié,102.0,Angola,101562.0,Chitembo,both,identical +109837,18.25,-13.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101574.0,Cuito Cuanavale,18.25,-13.75,AGO,1053.0,Cuando Cubango,102.0,Angola,101574.0,Cuito Cuanavale,both,identical +109838,18.75,-13.75,AGO,1063.0,Moxico,102.0,Angola,101673.0,Luchazes,18.75,-13.75,AGO,1063.0,Moxico,102.0,Angola,101673.0,Luchazes,both,identical +109839,19.25,-13.75,AGO,1063.0,Moxico,102.0,Angola,101673.0,Luchazes,19.25,-13.75,AGO,1063.0,Moxico,102.0,Angola,101673.0,Luchazes,both,identical +109840,19.75,-13.75,AGO,1063.0,Moxico,102.0,Angola,101673.0,Luchazes,19.75,-13.75,AGO,1063.0,Moxico,102.0,Angola,101673.0,Luchazes,both,identical +109841,20.25,-13.75,AGO,1063.0,Moxico,102.0,Angola,101673.0,Luchazes,20.25,-13.75,AGO,1063.0,Moxico,102.0,Angola,101673.0,Luchazes,both,identical +109842,20.75,-13.75,AGO,1063.0,Moxico,102.0,Angola,101668.0,Bundas (Lumbala-Nguimbo),20.75,-13.75,AGO,1063.0,Moxico,102.0,Angola,101668.0,Bundas (Lumbala-Nguimbo),both,identical +109843,21.25,-13.75,AGO,1063.0,Moxico,102.0,Angola,101668.0,Bundas (Lumbala-Nguimbo),21.25,-13.75,AGO,1063.0,Moxico,102.0,Angola,101668.0,Bundas (Lumbala-Nguimbo),both,identical +109844,21.75,-13.75,AGO,1063.0,Moxico,102.0,Angola,101668.0,Bundas (Lumbala-Nguimbo),21.75,-13.75,AGO,1063.0,Moxico,102.0,Angola,101668.0,Bundas (Lumbala-Nguimbo),both,identical +109845,22.25,-13.75,ZMB,1717.0,North-Western,168.0,Zambia,106605.0,Zambezi,22.25,-13.75,ZMB,1717.0,North-Western,168.0,Zambia,106605.0,Zambezi,both,identical +109846,22.75,-13.75,ZMB,1717.0,North-Western,168.0,Zambia,106605.0,Zambezi,22.75,-13.75,ZMB,1717.0,North-Western,168.0,Zambia,106605.0,Zambezi,both,identical +109847,23.25,-13.75,ZMB,1717.0,North-Western,168.0,Zambia,106605.0,Zambezi,23.25,-13.75,ZMB,1717.0,North-Western,168.0,Zambia,106605.0,Zambezi,both,identical +109848,23.75,-13.75,ZMB,1717.0,North-Western,168.0,Zambia,106597.0,Kabompo,23.75,-13.75,ZMB,1717.0,North-Western,168.0,Zambia,106597.0,Kabompo,both,identical +109849,24.25,-13.75,ZMB,1717.0,North-Western,168.0,Zambia,106597.0,Kabompo,24.25,-13.75,ZMB,1717.0,North-Western,168.0,Zambia,106597.0,Kabompo,both,identical +109850,24.75,-13.75,ZMB,1717.0,North-Western,168.0,Zambia,106601.0,Mufumbwe,24.75,-13.75,ZMB,1717.0,North-Western,168.0,Zambia,106601.0,Mufumbwe,both,identical +109851,25.25,-13.75,ZMB,1717.0,North-Western,168.0,Zambia,106601.0,Mufumbwe,25.25,-13.75,ZMB,1717.0,North-Western,168.0,Zambia,106601.0,Mufumbwe,both,identical +109852,25.75,-13.75,ZMB,1717.0,North-Western,168.0,Zambia,106599.0,Kasempa,25.75,-13.75,ZMB,1717.0,North-Western,168.0,Zambia,106599.0,Kasempa,both,identical +109853,26.25,-13.75,ZMB,1717.0,North-Western,168.0,Zambia,106599.0,Kasempa,26.25,-13.75,ZMB,1717.0,North-Western,168.0,Zambia,106599.0,Kasempa,both,identical +109854,26.75,-13.75,ZMB,1717.0,North-Western,168.0,Zambia,106599.0,Kasempa,26.75,-13.75,ZMB,1717.0,North-Western,168.0,Zambia,106599.0,Kasempa,both,identical +109855,27.25,-13.75,ZMB,1712.0,Copperbelt,168.0,Zambia,106550.0,Mpongwe,27.25,-13.75,ZMB,1712.0,Copperbelt,168.0,Zambia,106550.0,Mpongwe,both,identical +109856,27.75,-13.75,ZMB,1711.0,Central,168.0,Zambia,106550.0,Mpongwe,27.75,-13.75,ZMB,1712.0,Copperbelt,168.0,Zambia,106550.0,Mpongwe,both,admin_reallocation +109857,28.25,-13.75,ZMB,1712.0,Copperbelt,168.0,Zambia,106550.0,Mpongwe,28.25,-13.75,ZMB,1712.0,Copperbelt,168.0,Zambia,106550.0,Mpongwe,both,identical +109858,28.75,-13.75,ZMB,1711.0,Central,168.0,Zambia,106536.0,Kapiri Mposhi,28.75,-13.75,ZMB,1711.0,Central,168.0,Zambia,106536.0,Kapiri Mposhi,both,identical +109859,29.25,-13.75,ZMB,1711.0,Central,168.0,Zambia,106538.0,Mkushi,29.25,-13.75,ZMB,1711.0,Central,168.0,Zambia,106538.0,Mkushi,both,identical +109860,29.75,-13.75,ZMB,1711.0,Central,168.0,Zambia,106538.0,Mkushi,29.75,-13.75,ZMB,1711.0,Central,168.0,Zambia,106538.0,Mkushi,both,identical +109861,30.25,-13.75,ZMB,1711.0,Central,168.0,Zambia,106541.0,Serenje,30.25,-13.75,ZMB,1711.0,Central,168.0,Zambia,106541.0,Serenje,both,identical +109862,30.75,-13.75,ZMB,1711.0,Central,168.0,Zambia,106541.0,Serenje,30.75,-13.75,ZMB,1711.0,Central,168.0,Zambia,106541.0,Serenje,both,identical +109863,31.25,-13.75,ZMB,1713.0,Eastern,168.0,Zambia,106561.0,Lusangazi,31.25,-13.75,ZMB,1713.0,Eastern,168.0,Zambia,106561.0,Lusangazi,both,identical +109864,31.75,-13.75,ZMB,1713.0,Eastern,168.0,Zambia,106561.0,Lusangazi,31.75,-13.75,ZMB,1713.0,Eastern,168.0,Zambia,106561.0,Lusangazi,both,identical +109865,32.25,-13.75,ZMB,1713.0,Eastern,168.0,Zambia,106557.0,Kasenengwa,32.25,-13.75,ZMB,1713.0,Eastern,168.0,Zambia,106557.0,Kasenengwa,both,identical +109866,32.75,-13.75,ZMB,1713.0,Eastern,168.0,Zambia,106556.0,Chipata,32.75,-13.75,ZMB,1713.0,Eastern,168.0,Zambia,106556.0,Chipata,both,identical +109867,33.25,-13.75,MWI,1434.0,Central Region,142.0,Malawi,104081.0,Mchinji,33.25,-13.75,MWI,1434.0,Central Region,142.0,Malawi,104081.0,Mchinji,both,identical +109868,33.75,-13.75,MWI,1434.0,Central Region,142.0,Malawi,104080.0,Lilongwe,33.75,-13.75,MWI,1434.0,Central Region,142.0,Malawi,104080.0,Lilongwe,both,identical +109869,34.25,-13.75,MWI,1434.0,Central Region,142.0,Malawi,104085.0,Salima,34.25,-13.75,MWI,1434.0,Central Region,142.0,Malawi,104085.0,Salima,both,identical +109870,34.75,-13.75,MWI,1436.0,Southern Region,142.0,Malawi,900012.0,Waterbody,34.75,-13.75,MWI,1436.0,Southern Region,142.0,Malawi,900012.0,Waterbody,both,identical +109871,35.25,-13.75,MOZ,1491.0,Niassa,148.0,Mozambique,104394.0,Chimbonila,35.25,-13.75,MOZ,1491.0,Niassa,148.0,Mozambique,104394.0,Chimbonila,both,identical +109872,35.75,-13.75,MOZ,1491.0,Niassa,148.0,Mozambique,104407.0,Ngaúma,35.75,-13.75,MOZ,1491.0,Niassa,148.0,Mozambique,104407.0,Ngaúma,both,identical +109873,36.25,-13.75,MOZ,1491.0,Niassa,148.0,Mozambique,104398.0,Majune,36.25,-13.75,MOZ,1491.0,Niassa,148.0,Mozambique,104398.0,Majune,both,identical +109874,36.75,-13.75,MOZ,1491.0,Niassa,148.0,Mozambique,104402.0,Maúa,36.75,-13.75,MOZ,1491.0,Niassa,148.0,Mozambique,104402.0,Maúa,both,identical +109875,37.25,-13.75,MOZ,1491.0,Niassa,148.0,Mozambique,104402.0,Maúa,37.25,-13.75,MOZ,1491.0,Niassa,148.0,Mozambique,104402.0,Maúa,both,identical +109876,37.75,-13.75,MOZ,1491.0,Niassa,148.0,Mozambique,104400.0,Marrupa,37.75,-13.75,MOZ,1491.0,Niassa,148.0,Mozambique,104400.0,Marrupa,both,identical +109877,38.25,-13.75,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104306.0,Balama,38.25,-13.75,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104306.0,Balama,both,identical +109878,38.75,-13.75,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104317.0,Namuno,38.75,-13.75,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104317.0,Namuno,both,identical +109879,39.25,-13.75,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104317.0,Namuno,39.25,-13.75,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104317.0,Namuno,both,identical +109880,39.75,-13.75,MOZ,1490.0,Nampula,148.0,Mozambique,104372.0,Eráti,39.75,-13.75,MOZ,1490.0,Nampula,148.0,Mozambique,104372.0,Eráti,both,identical +109881,40.25,-13.75,MOZ,1490.0,Nampula,148.0,Mozambique,104380.0,Memba,40.25,-13.75,MOZ,1490.0,Nampula,148.0,Mozambique,104380.0,Memba,both,identical +109882,40.75,-13.75,MOZ,1490.0,Nampula,148.0,Mozambique,104380.0,Memba,40.75,-13.75,MOZ,1490.0,Nampula,148.0,Mozambique,104380.0,Memba,both,identical +109896,47.75,-13.75,MDG,1429.0,Antsiranana,141.0,Madagascar,104058.0,Diana,47.75,-13.75,MDG,1429.0,Antsiranana,141.0,Madagascar,104058.0,Diana,both,identical +109897,48.25,-13.75,MDG,1429.0,Antsiranana,141.0,Madagascar,104058.0,Diana,48.25,-13.75,MDG,1429.0,Antsiranana,141.0,Madagascar,104058.0,Diana,both,identical +109898,48.75,-13.75,MDG,1429.0,Antsiranana,141.0,Madagascar,104058.0,Diana,48.75,-13.75,MDG,1429.0,Antsiranana,141.0,Madagascar,104058.0,Diana,both,identical +109899,49.25,-13.75,MDG,1429.0,Antsiranana,141.0,Madagascar,104058.0,Diana,49.25,-13.75,MDG,1429.0,Antsiranana,141.0,Madagascar,104058.0,Diana,both,identical +109900,49.75,-13.75,MDG,1429.0,Antsiranana,141.0,Madagascar,104059.0,Sava,49.75,-13.75,MDG,1429.0,Antsiranana,141.0,Madagascar,104059.0,Sava,both,identical +109901,50.25,-13.75,MDG,1429.0,Antsiranana,141.0,Madagascar,104059.0,Sava,50.25,-13.75,MDG,1429.0,Antsiranana,141.0,Madagascar,104059.0,Sava,both,identical +110546,12.75,-13.25,AGO,1050.0,Benguela,102.0,Angola,101549.0,Baía Farta,12.75,-13.25,AGO,1050.0,Benguela,102.0,Angola,101549.0,Baía Farta,both,identical +110547,13.25,-13.25,AGO,1050.0,Benguela,102.0,Angola,101549.0,Baía Farta,13.25,-13.25,AGO,1050.0,Benguela,102.0,Angola,101549.0,Baía Farta,both,identical +110548,13.75,-13.25,AGO,1050.0,Benguela,102.0,Angola,101552.0,Caimbambo,13.75,-13.25,AGO,1050.0,Benguela,102.0,Angola,101552.0,Caimbambo,both,identical +110549,14.25,-13.25,AGO,1050.0,Benguela,102.0,Angola,101555.0,Cubal,14.25,-13.25,AGO,1050.0,Benguela,102.0,Angola,101555.0,Cubal,both,identical +110550,14.75,-13.25,AGO,1050.0,Benguela,102.0,Angola,101556.0,Ganda,14.75,-13.25,AGO,1050.0,Benguela,102.0,Angola,101556.0,Ganda,both,identical +110551,15.25,-13.25,AGO,1057.0,Huambo,102.0,Angola,101614.0,Longonjo,15.25,-13.25,AGO,1057.0,Huambo,102.0,Angola,101614.0,Longonjo,both,identical +110552,15.75,-13.25,AGO,1057.0,Huambo,102.0,Angola,101610.0,Caála,15.75,-13.25,AGO,1057.0,Huambo,102.0,Angola,101610.0,Caála,both,identical +110553,16.25,-13.25,AGO,1057.0,Huambo,102.0,Angola,101616.0,Tchikala-Tcholohanga,16.25,-13.25,AGO,1057.0,Huambo,102.0,Angola,101616.0,Tchikala-Tcholohanga,both,identical +110554,16.75,-13.25,AGO,1051.0,Bié,102.0,Angola,101562.0,Chitembo,16.75,-13.25,AGO,1051.0,Bié,102.0,Angola,101562.0,Chitembo,both,identical +110555,17.25,-13.25,AGO,1051.0,Bié,102.0,Angola,101562.0,Chitembo,17.25,-13.25,AGO,1051.0,Bié,102.0,Angola,101562.0,Chitembo,both,identical +110556,17.75,-13.25,AGO,1051.0,Bié,102.0,Angola,101562.0,Chitembo,17.75,-13.25,AGO,1051.0,Bié,102.0,Angola,101562.0,Chitembo,both,identical +110557,18.25,-13.25,AGO,1063.0,Moxico,102.0,Angola,101673.0,Luchazes,18.25,-13.25,AGO,1063.0,Moxico,102.0,Angola,101673.0,Luchazes,both,identical +110558,18.75,-13.25,AGO,1063.0,Moxico,102.0,Angola,101673.0,Luchazes,18.75,-13.25,AGO,1063.0,Moxico,102.0,Angola,101673.0,Luchazes,both,identical +110559,19.25,-13.25,AGO,1063.0,Moxico,102.0,Angola,101673.0,Luchazes,19.25,-13.25,AGO,1063.0,Moxico,102.0,Angola,101673.0,Luchazes,both,identical +110560,19.75,-13.25,AGO,1063.0,Moxico,102.0,Angola,101673.0,Luchazes,19.75,-13.25,AGO,1063.0,Moxico,102.0,Angola,101673.0,Luchazes,both,identical +110561,20.25,-13.25,AGO,1063.0,Moxico,102.0,Angola,101673.0,Luchazes,20.25,-13.25,AGO,1063.0,Moxico,102.0,Angola,101673.0,Luchazes,both,identical +110562,20.75,-13.25,AGO,1063.0,Moxico,102.0,Angola,101668.0,Bundas (Lumbala-Nguimbo),20.75,-13.25,AGO,1063.0,Moxico,102.0,Angola,101668.0,Bundas (Lumbala-Nguimbo),both,identical +110563,21.25,-13.25,AGO,1063.0,Moxico,102.0,Angola,101668.0,Bundas (Lumbala-Nguimbo),21.25,-13.25,AGO,1063.0,Moxico,102.0,Angola,101668.0,Bundas (Lumbala-Nguimbo),both,identical +110564,21.75,-13.25,AGO,1063.0,Moxico,102.0,Angola,101667.0,Alto Zambeze,21.75,-13.25,AGO,1063.0,Moxico,102.0,Angola,101667.0,Alto Zambeze,both,identical +110565,22.25,-13.25,ZMB,1717.0,North-Western,168.0,Zambia,106595.0,Chavuma,22.25,-13.25,ZMB,1717.0,North-Western,168.0,Zambia,106595.0,Chavuma,both,identical +110566,22.75,-13.25,ZMB,1717.0,North-Western,168.0,Zambia,106595.0,Chavuma,22.75,-13.25,ZMB,1717.0,North-Western,168.0,Zambia,106595.0,Chavuma,both,identical +110567,23.25,-13.25,ZMB,1717.0,North-Western,168.0,Zambia,106605.0,Zambezi,23.25,-13.25,ZMB,1717.0,North-Western,168.0,Zambia,106605.0,Zambezi,both,identical +110568,23.75,-13.25,ZMB,1717.0,North-Western,168.0,Zambia,106597.0,Kabompo,23.75,-13.25,ZMB,1717.0,North-Western,168.0,Zambia,106597.0,Kabompo,both,identical +110569,24.25,-13.25,ZMB,1717.0,North-Western,168.0,Zambia,106600.0,Manyinga,24.25,-13.25,ZMB,1717.0,North-Western,168.0,Zambia,106600.0,Manyinga,both,identical +110570,24.75,-13.25,ZMB,1717.0,North-Western,168.0,Zambia,106601.0,Mufumbwe,24.75,-13.25,ZMB,1717.0,North-Western,168.0,Zambia,106601.0,Mufumbwe,both,identical +110571,25.25,-13.25,ZMB,1717.0,North-Western,168.0,Zambia,106601.0,Mufumbwe,25.25,-13.25,ZMB,1717.0,North-Western,168.0,Zambia,106601.0,Mufumbwe,both,identical +110572,25.75,-13.25,ZMB,1717.0,North-Western,168.0,Zambia,106599.0,Kasempa,25.75,-13.25,ZMB,1717.0,North-Western,168.0,Zambia,106599.0,Kasempa,both,identical +110573,26.25,-13.25,ZMB,1717.0,North-Western,168.0,Zambia,106599.0,Kasempa,26.25,-13.25,ZMB,1717.0,North-Western,168.0,Zambia,106599.0,Kasempa,both,identical +110574,26.75,-13.25,ZMB,1717.0,North-Western,168.0,Zambia,106602.0,Mushindano,26.75,-13.25,ZMB,1717.0,North-Western,168.0,Zambia,106602.0,Mushindano,both,identical +110575,27.25,-13.25,ZMB,1712.0,Copperbelt,168.0,Zambia,106548.0,Lufwanyama,27.25,-13.25,ZMB,1712.0,Copperbelt,168.0,Zambia,106548.0,Lufwanyama,both,identical +110576,27.75,-13.25,ZMB,1712.0,Copperbelt,168.0,Zambia,106548.0,Lufwanyama,27.75,-13.25,ZMB,1712.0,Copperbelt,168.0,Zambia,106548.0,Lufwanyama,both,identical +110577,28.25,-13.25,ZMB,1712.0,Copperbelt,168.0,Zambia,106550.0,Mpongwe,28.25,-13.25,ZMB,1712.0,Copperbelt,168.0,Zambia,106550.0,Mpongwe,both,identical +110578,28.75,-13.25,ZMB,1712.0,Copperbelt,168.0,Zambia,106549.0,Masaiti,28.75,-13.25,ZMB,1712.0,Copperbelt,168.0,Zambia,106549.0,Masaiti,both,identical +110579,29.25,-13.25,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102306.0,Sakania,29.25,-13.25,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102306.0,Sakania,both,identical +110580,29.75,-13.25,ZMB,1711.0,Central,168.0,Zambia,106541.0,Serenje,29.75,-13.25,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102306.0,Sakania,both,country_reassignment +110581,30.25,-13.25,ZMB,1711.0,Central,168.0,Zambia,106541.0,Serenje,30.25,-13.25,ZMB,1711.0,Central,168.0,Zambia,106541.0,Serenje,both,identical +110582,30.75,-13.25,ZMB,1711.0,Central,168.0,Zambia,106533.0,Chitambo,30.75,-13.25,ZMB,1711.0,Central,168.0,Zambia,106533.0,Chitambo,both,identical +110583,31.25,-13.25,ZMB,1711.0,Central,168.0,Zambia,106533.0,Chitambo,31.25,-13.25,ZMB,1711.0,Central,168.0,Zambia,106533.0,Chitambo,both,identical +110584,31.75,-13.25,ZMB,1713.0,Eastern,168.0,Zambia,106562.0,Mambwe,31.75,-13.25,ZMB,1713.0,Eastern,168.0,Zambia,106562.0,Mambwe,both,identical +110585,32.25,-13.25,ZMB,1713.0,Eastern,168.0,Zambia,106562.0,Mambwe,32.25,-13.25,ZMB,1713.0,Eastern,168.0,Zambia,106562.0,Mambwe,both,identical +110586,32.75,-13.25,ZMB,1713.0,Eastern,168.0,Zambia,106555.0,Chipangali,32.75,-13.25,ZMB,1713.0,Eastern,168.0,Zambia,106555.0,Chipangali,both,identical +110587,33.25,-13.25,MWI,1434.0,Central Region,142.0,Malawi,104079.0,Kasungu,33.25,-13.25,MWI,1434.0,Central Region,142.0,Malawi,104079.0,Kasungu,both,identical +110588,33.75,-13.25,MWI,1434.0,Central Region,142.0,Malawi,104084.0,Ntchisi,33.75,-13.25,MWI,1434.0,Central Region,142.0,Malawi,104084.0,Ntchisi,both,identical +110589,34.25,-13.25,MWI,1434.0,Central Region,142.0,Malawi,104082.0,Nkhotakota,34.25,-13.25,MWI,1434.0,Central Region,142.0,Malawi,104082.0,Nkhotakota,both,identical +110590,34.75,-13.25,MOZ,1491.0,Niassa,148.0,Mozambique,900013.0,Waterbody,34.75,-13.25,MOZ,1491.0,Niassa,148.0,Mozambique,900013.0,Waterbody,both,identical +110591,35.25,-13.25,MOZ,1491.0,Niassa,148.0,Mozambique,104394.0,Chimbonila,35.25,-13.25,MOZ,1491.0,Niassa,148.0,Mozambique,104394.0,Chimbonila,both,identical +110592,35.75,-13.25,MOZ,1491.0,Niassa,148.0,Mozambique,104406.0,Muembe,35.75,-13.25,MOZ,1491.0,Niassa,148.0,Mozambique,104406.0,Muembe,both,identical +110593,36.25,-13.25,MOZ,1491.0,Niassa,148.0,Mozambique,104398.0,Majune,36.25,-13.25,MOZ,1491.0,Niassa,148.0,Mozambique,104398.0,Majune,both,identical +110594,36.75,-13.25,MOZ,1491.0,Niassa,148.0,Mozambique,104398.0,Majune,36.75,-13.25,MOZ,1491.0,Niassa,148.0,Mozambique,104398.0,Majune,both,identical +110595,37.25,-13.25,MOZ,1491.0,Niassa,148.0,Mozambique,104400.0,Marrupa,37.25,-13.25,MOZ,1491.0,Niassa,148.0,Mozambique,104400.0,Marrupa,both,identical +110596,37.75,-13.25,MOZ,1491.0,Niassa,148.0,Mozambique,104400.0,Marrupa,37.75,-13.25,MOZ,1491.0,Niassa,148.0,Mozambique,104400.0,Marrupa,both,identical +110597,38.25,-13.25,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104306.0,Balama,38.25,-13.25,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104306.0,Balama,both,identical +110598,38.75,-13.25,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104314.0,Montepuez,38.75,-13.25,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104314.0,Montepuez,both,identical +110599,39.25,-13.25,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104314.0,Montepuez,39.25,-13.25,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104314.0,Montepuez,both,identical +110600,39.75,-13.25,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104307.0,Chiúre,39.75,-13.25,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104307.0,Chiúre,both,identical +110601,40.25,-13.25,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104310.0,Mecúfi,40.25,-13.25,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104310.0,Mecúfi,both,identical +110602,40.75,-13.25,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104310.0,Mecúfi,40.75,-13.25,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104310.0,Mecúfi,both,identical +110617,48.25,-13.25,MDG,1429.0,Antsiranana,141.0,Madagascar,104058.0,Diana,48.25,-13.25,MDG,1429.0,Antsiranana,141.0,Madagascar,104058.0,Diana,both,identical +110618,48.75,-13.25,MDG,1429.0,Antsiranana,141.0,Madagascar,104058.0,Diana,48.75,-13.25,MDG,1429.0,Antsiranana,141.0,Madagascar,104058.0,Diana,both,identical +110619,49.25,-13.25,MDG,1429.0,Antsiranana,141.0,Madagascar,104058.0,Diana,49.25,-13.25,MDG,1429.0,Antsiranana,141.0,Madagascar,104058.0,Diana,both,identical +110620,49.75,-13.25,MDG,1429.0,Antsiranana,141.0,Madagascar,104059.0,Sava,49.75,-13.25,MDG,1429.0,Antsiranana,141.0,Madagascar,104059.0,Sava,both,identical +110621,50.25,-13.25,MDG,1429.0,Antsiranana,141.0,Madagascar,104059.0,Sava,50.25,-13.25,MDG,1429.0,Antsiranana,141.0,Madagascar,104059.0,Sava,both,identical +111266,12.75,-12.75,AGO,1050.0,Benguela,102.0,Angola,101549.0,Baía Farta,12.75,-12.75,AGO,1050.0,Benguela,102.0,Angola,101549.0,Baía Farta,both,identical +111267,13.25,-12.75,AGO,1050.0,Benguela,102.0,Angola,101549.0,Baía Farta,13.25,-12.75,AGO,1050.0,Benguela,102.0,Angola,101549.0,Baía Farta,both,identical +111268,13.75,-12.75,AGO,1050.0,Benguela,102.0,Angola,101550.0,Benguela,13.75,-12.75,AGO,1050.0,Benguela,102.0,Angola,101550.0,Benguela,both,identical +111269,14.25,-12.75,AGO,1050.0,Benguela,102.0,Angola,101555.0,Cubal,14.25,-12.75,AGO,1050.0,Benguela,102.0,Angola,101555.0,Cubal,both,identical +111270,14.75,-12.75,AGO,1050.0,Benguela,102.0,Angola,101556.0,Ganda,14.75,-12.75,AGO,1050.0,Benguela,102.0,Angola,101556.0,Ganda,both,identical +111271,15.25,-12.75,AGO,1057.0,Huambo,102.0,Angola,101618.0,Ukuma,15.25,-12.75,AGO,1057.0,Huambo,102.0,Angola,101618.0,Ukuma,both,identical +111272,15.75,-12.75,AGO,1057.0,Huambo,102.0,Angola,101612.0,Huambo,15.75,-12.75,AGO,1057.0,Huambo,102.0,Angola,101612.0,Huambo,both,identical +111273,16.25,-12.75,AGO,1057.0,Huambo,102.0,Angola,101609.0,Catchiungo,16.25,-12.75,AGO,1057.0,Huambo,102.0,Angola,101609.0,Catchiungo,both,identical +111274,16.75,-12.75,AGO,1051.0,Bié,102.0,Angola,101561.0,Chinguar,16.75,-12.75,AGO,1051.0,Bié,102.0,Angola,101561.0,Chinguar,both,identical +111275,17.25,-12.75,AGO,1051.0,Bié,102.0,Angola,101564.0,Cuito (Kuito),17.25,-12.75,AGO,1051.0,Bié,102.0,Angola,101564.0,Cuito (Kuito),both,identical +111276,17.75,-12.75,AGO,1051.0,Bié,102.0,Angola,101559.0,Camacupa,17.75,-12.75,AGO,1051.0,Bié,102.0,Angola,101559.0,Camacupa,both,identical +111277,18.25,-12.75,AGO,1051.0,Bié,102.0,Angola,101559.0,Camacupa,18.25,-12.75,AGO,1051.0,Bié,102.0,Angola,101559.0,Camacupa,both,identical +111278,18.75,-12.75,AGO,1063.0,Moxico,102.0,Angola,101674.0,Luena,18.75,-12.75,AGO,1063.0,Moxico,102.0,Angola,101674.0,Luena,both,identical +111279,19.25,-12.75,AGO,1063.0,Moxico,102.0,Angola,101674.0,Luena,19.25,-12.75,AGO,1063.0,Moxico,102.0,Angola,101674.0,Luena,both,identical +111280,19.75,-12.75,AGO,1063.0,Moxico,102.0,Angola,101674.0,Luena,19.75,-12.75,AGO,1063.0,Moxico,102.0,Angola,101674.0,Luena,both,identical +111281,20.25,-12.75,AGO,1063.0,Moxico,102.0,Angola,101674.0,Luena,20.25,-12.75,AGO,1063.0,Moxico,102.0,Angola,101674.0,Luena,both,identical +111282,20.75,-12.75,AGO,1063.0,Moxico,102.0,Angola,101674.0,Luena,20.75,-12.75,AGO,1063.0,Moxico,102.0,Angola,101674.0,Luena,both,identical +111283,21.25,-12.75,AGO,1063.0,Moxico,102.0,Angola,101667.0,Alto Zambeze,21.25,-12.75,AGO,1063.0,Moxico,102.0,Angola,101667.0,Alto Zambeze,both,identical +111284,21.75,-12.75,AGO,1063.0,Moxico,102.0,Angola,101667.0,Alto Zambeze,21.75,-12.75,AGO,1063.0,Moxico,102.0,Angola,101667.0,Alto Zambeze,both,identical +111285,22.25,-12.75,AGO,1063.0,Moxico,102.0,Angola,101667.0,Alto Zambeze,22.25,-12.75,AGO,1063.0,Moxico,102.0,Angola,101667.0,Alto Zambeze,both,identical +111286,22.75,-12.75,AGO,1063.0,Moxico,102.0,Angola,101667.0,Alto Zambeze,22.75,-12.75,AGO,1063.0,Moxico,102.0,Angola,101667.0,Alto Zambeze,both,identical +111287,23.25,-12.75,AGO,1063.0,Moxico,102.0,Angola,101667.0,Alto Zambeze,23.25,-12.75,AGO,1063.0,Moxico,102.0,Angola,101667.0,Alto Zambeze,both,identical +111288,23.75,-12.75,AGO,1063.0,Moxico,102.0,Angola,101667.0,Alto Zambeze,23.75,-12.75,AGO,1063.0,Moxico,102.0,Angola,101667.0,Alto Zambeze,both,identical +111289,24.25,-12.75,ZMB,1717.0,North-Western,168.0,Zambia,106600.0,Manyinga,24.25,-12.75,ZMB,1717.0,North-Western,168.0,Zambia,106600.0,Manyinga,both,identical +111290,24.75,-12.75,ZMB,1717.0,North-Western,168.0,Zambia,106603.0,Mwinilunga,24.75,-12.75,ZMB,1717.0,North-Western,168.0,Zambia,106603.0,Mwinilunga,both,identical +111291,25.25,-12.75,ZMB,1717.0,North-Western,168.0,Zambia,106598.0,Kalumbila,25.25,-12.75,ZMB,1717.0,North-Western,168.0,Zambia,106598.0,Kalumbila,both,identical +111292,25.75,-12.75,ZMB,1717.0,North-Western,168.0,Zambia,106598.0,Kalumbila,25.75,-12.75,ZMB,1717.0,North-Western,168.0,Zambia,106598.0,Kalumbila,both,identical +111293,26.25,-12.75,ZMB,1717.0,North-Western,168.0,Zambia,106598.0,Kalumbila,26.25,-12.75,ZMB,1717.0,North-Western,168.0,Zambia,106598.0,Kalumbila,both,identical +111294,26.75,-12.75,ZMB,1717.0,North-Western,168.0,Zambia,106602.0,Mushindano,26.75,-12.75,ZMB,1717.0,North-Western,168.0,Zambia,106602.0,Mushindano,both,identical +111295,27.25,-12.75,ZMB,1712.0,Copperbelt,168.0,Zambia,106548.0,Lufwanyama,27.25,-12.75,ZMB,1712.0,Copperbelt,168.0,Zambia,106548.0,Lufwanyama,both,identical +111296,27.75,-12.75,ZMB,1712.0,Copperbelt,168.0,Zambia,106548.0,Lufwanyama,27.75,-12.75,ZMB,1712.0,Copperbelt,168.0,Zambia,106548.0,Lufwanyama,both,identical +111297,28.25,-12.75,ZMB,1712.0,Copperbelt,168.0,Zambia,106551.0,Mufulira,28.25,-12.75,ZMB,1712.0,Copperbelt,168.0,Zambia,106551.0,Mufulira,both,identical +111298,28.75,-12.75,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102306.0,Sakania,28.75,-12.75,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102306.0,Sakania,both,identical +111299,29.25,-12.75,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102306.0,Sakania,29.25,-12.75,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102306.0,Sakania,both,identical +111300,29.75,-12.75,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102306.0,Sakania,29.75,-12.75,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102306.0,Sakania,both,identical +111301,30.25,-12.75,ZMB,1711.0,Central,168.0,Zambia,106533.0,Chitambo,30.25,-12.75,ZMB,1711.0,Central,168.0,Zambia,106533.0,Chitambo,both,identical +111302,30.75,-12.75,ZMB,1716.0,Muchiga,168.0,Zambia,106590.0,Lavushimanda,30.75,-12.75,ZMB,1716.0,Muchiga,168.0,Zambia,106590.0,Lavushimanda,both,identical +111303,31.25,-12.75,ZMB,1716.0,Muchiga,168.0,Zambia,106590.0,Lavushimanda,31.25,-12.75,ZMB,1716.0,Muchiga,168.0,Zambia,106590.0,Lavushimanda,both,identical +111304,31.75,-12.75,ZMB,1716.0,Muchiga,168.0,Zambia,106592.0,Mpika,31.75,-12.75,ZMB,1716.0,Muchiga,168.0,Zambia,106592.0,Mpika,both,identical +111305,32.25,-12.75,ZMB,1713.0,Eastern,168.0,Zambia,106559.0,Lumezi,32.25,-12.75,ZMB,1713.0,Eastern,168.0,Zambia,106559.0,Lumezi,both,identical +111306,32.75,-12.75,ZMB,1713.0,Eastern,168.0,Zambia,106559.0,Lumezi,32.75,-12.75,ZMB,1713.0,Eastern,168.0,Zambia,106559.0,Lumezi,both,identical +111307,33.25,-12.75,MWI,1434.0,Central Region,142.0,Malawi,104079.0,Kasungu,33.25,-12.75,MWI,1434.0,Central Region,142.0,Malawi,104079.0,Kasungu,both,identical +111308,33.75,-12.75,MWI,1434.0,Central Region,142.0,Malawi,104079.0,Kasungu,33.75,-12.75,MWI,1434.0,Central Region,142.0,Malawi,104079.0,Kasungu,both,identical +111309,34.25,-12.75,MWI,1434.0,Central Region,142.0,Malawi,900010.0,Waterbody,34.25,-12.75,MWI,1434.0,Central Region,142.0,Malawi,900010.0,Waterbody,both,identical +111310,34.75,-12.75,MOZ,1491.0,Niassa,148.0,Mozambique,900013.0,Waterbody,34.75,-12.75,MOZ,1491.0,Niassa,148.0,Mozambique,900013.0,Waterbody,both,identical +111311,35.25,-12.75,MOZ,1491.0,Niassa,148.0,Mozambique,104409.0,Sanga,35.25,-12.75,MOZ,1491.0,Niassa,148.0,Mozambique,104409.0,Sanga,both,identical +111312,35.75,-12.75,MOZ,1491.0,Niassa,148.0,Mozambique,104406.0,Muembe,35.75,-12.75,MOZ,1491.0,Niassa,148.0,Mozambique,104406.0,Muembe,both,identical +111313,36.25,-12.75,MOZ,1491.0,Niassa,148.0,Mozambique,104398.0,Majune,36.25,-12.75,MOZ,1491.0,Niassa,148.0,Mozambique,104398.0,Majune,both,identical +111314,36.75,-12.75,MOZ,1491.0,Niassa,148.0,Mozambique,104398.0,Majune,36.75,-12.75,MOZ,1491.0,Niassa,148.0,Mozambique,104398.0,Majune,both,identical +111315,37.25,-12.75,MOZ,1491.0,Niassa,148.0,Mozambique,104400.0,Marrupa,37.25,-12.75,MOZ,1491.0,Niassa,148.0,Mozambique,104400.0,Marrupa,both,identical +111316,37.75,-12.75,MOZ,1491.0,Niassa,148.0,Mozambique,104400.0,Marrupa,37.75,-12.75,MOZ,1491.0,Niassa,148.0,Mozambique,104400.0,Marrupa,both,identical +111317,38.25,-12.75,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104314.0,Montepuez,38.25,-12.75,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104314.0,Montepuez,both,identical +111318,38.75,-12.75,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104314.0,Montepuez,38.75,-12.75,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104314.0,Montepuez,both,identical +111319,39.25,-12.75,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104314.0,Montepuez,39.25,-12.75,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104314.0,Montepuez,both,identical +111320,39.75,-12.75,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104305.0,Ancuabe,39.75,-12.75,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104305.0,Ancuabe,both,identical +111321,40.25,-12.75,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104321.0,Quissanga,40.25,-12.75,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104321.0,Quissanga,both,identical +111322,40.75,-12.75,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104321.0,Quissanga,40.75,-12.75,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104321.0,Quissanga,both,identical +111338,48.75,-12.75,MDG,1429.0,Antsiranana,141.0,Madagascar,104058.0,Diana,48.75,-12.75,MDG,1429.0,Antsiranana,141.0,Madagascar,104058.0,Diana,both,identical +111339,49.25,-12.75,MDG,1429.0,Antsiranana,141.0,Madagascar,104058.0,Diana,49.25,-12.75,MDG,1429.0,Antsiranana,141.0,Madagascar,104058.0,Diana,both,identical +111340,49.75,-12.75,MDG,1429.0,Antsiranana,141.0,Madagascar,104059.0,Sava,49.75,-12.75,MDG,1429.0,Antsiranana,141.0,Madagascar,104059.0,Sava,both,identical +111987,13.25,-12.25,AGO,1050.0,Benguela,102.0,Angola,101553.0,Catumbela,13.25,-12.25,AGO,1050.0,Benguela,102.0,Angola,101553.0,Catumbela,both,identical +111988,13.75,-12.25,AGO,1050.0,Benguela,102.0,Angola,101557.0,Lobito,13.75,-12.25,AGO,1050.0,Benguela,102.0,Angola,101557.0,Lobito,both,identical +111989,14.25,-12.25,AGO,1050.0,Benguela,102.0,Angola,101551.0,Bocoio,14.25,-12.25,AGO,1050.0,Benguela,102.0,Angola,101551.0,Bocoio,both,identical +111990,14.75,-12.25,AGO,1050.0,Benguela,102.0,Angola,101548.0,Balombo,14.75,-12.25,AGO,1050.0,Benguela,102.0,Angola,101548.0,Balombo,both,identical +111991,15.25,-12.25,AGO,1057.0,Huambo,102.0,Angola,101613.0,Londuimbale,15.25,-12.25,AGO,1057.0,Huambo,102.0,Angola,101613.0,Londuimbale,both,identical +111992,15.75,-12.25,AGO,1057.0,Huambo,102.0,Angola,101608.0,Bailundo,15.75,-12.25,AGO,1057.0,Huambo,102.0,Angola,101608.0,Bailundo,both,identical +111993,16.25,-12.25,AGO,1057.0,Huambo,102.0,Angola,101608.0,Bailundo,16.25,-12.25,AGO,1057.0,Huambo,102.0,Angola,101608.0,Bailundo,both,identical +111994,16.75,-12.25,AGO,1051.0,Bié,102.0,Angola,101564.0,Cuito (Kuito),16.75,-12.25,AGO,1051.0,Bié,102.0,Angola,101564.0,Cuito (Kuito),both,identical +111995,17.25,-12.25,AGO,1051.0,Bié,102.0,Angola,101560.0,Catabola,17.25,-12.25,AGO,1051.0,Bié,102.0,Angola,101560.0,Catabola,both,identical +111996,17.75,-12.25,AGO,1051.0,Bié,102.0,Angola,101559.0,Camacupa,17.75,-12.25,AGO,1051.0,Bié,102.0,Angola,101559.0,Camacupa,both,identical +111997,18.25,-12.25,AGO,1051.0,Bié,102.0,Angola,101563.0,Cuemba,18.25,-12.25,AGO,1051.0,Bié,102.0,Angola,101563.0,Cuemba,both,identical +111998,18.75,-12.25,AGO,1063.0,Moxico,102.0,Angola,101674.0,Luena,18.75,-12.25,AGO,1063.0,Moxico,102.0,Angola,101674.0,Luena,both,identical +111999,19.25,-12.25,AGO,1063.0,Moxico,102.0,Angola,101674.0,Luena,19.25,-12.25,AGO,1063.0,Moxico,102.0,Angola,101674.0,Luena,both,identical +112000,19.75,-12.25,AGO,1063.0,Moxico,102.0,Angola,101674.0,Luena,19.75,-12.25,AGO,1063.0,Moxico,102.0,Angola,101674.0,Luena,both,identical +112001,20.25,-12.25,AGO,1063.0,Moxico,102.0,Angola,101674.0,Luena,20.25,-12.25,AGO,1063.0,Moxico,102.0,Angola,101674.0,Luena,both,identical +112002,20.75,-12.25,AGO,1063.0,Moxico,102.0,Angola,101674.0,Luena,20.75,-12.25,AGO,1063.0,Moxico,102.0,Angola,101674.0,Luena,both,identical +112003,21.25,-12.25,AGO,1063.0,Moxico,102.0,Angola,101670.0,Cameia (Lumeje),21.25,-12.25,AGO,1063.0,Moxico,102.0,Angola,101670.0,Cameia (Lumeje),both,identical +112004,21.75,-12.25,AGO,1063.0,Moxico,102.0,Angola,101671.0,Luacano,21.75,-12.25,AGO,1063.0,Moxico,102.0,Angola,101671.0,Luacano,both,identical +112005,22.25,-12.25,AGO,1063.0,Moxico,102.0,Angola,101671.0,Luacano,22.25,-12.25,AGO,1063.0,Moxico,102.0,Angola,101671.0,Luacano,both,identical +112006,22.75,-12.25,AGO,1063.0,Moxico,102.0,Angola,101667.0,Alto Zambeze,22.75,-12.25,AGO,1063.0,Moxico,102.0,Angola,101667.0,Alto Zambeze,both,identical +112007,23.25,-12.25,AGO,1063.0,Moxico,102.0,Angola,101667.0,Alto Zambeze,23.25,-12.25,AGO,1063.0,Moxico,102.0,Angola,101667.0,Alto Zambeze,both,identical +112008,23.75,-12.25,AGO,1063.0,Moxico,102.0,Angola,101667.0,Alto Zambeze,23.75,-12.25,AGO,1063.0,Moxico,102.0,Angola,101667.0,Alto Zambeze,both,identical +112009,24.25,-12.25,ZMB,1717.0,North-Western,168.0,Zambia,106603.0,Mwinilunga,24.25,-12.25,ZMB,1717.0,North-Western,168.0,Zambia,106603.0,Mwinilunga,both,identical +112010,24.75,-12.25,ZMB,1717.0,North-Western,168.0,Zambia,106603.0,Mwinilunga,24.75,-12.25,ZMB,1717.0,North-Western,168.0,Zambia,106603.0,Mwinilunga,both,identical +112011,25.25,-12.25,ZMB,1717.0,North-Western,168.0,Zambia,106598.0,Kalumbila,25.25,-12.25,ZMB,1717.0,North-Western,168.0,Zambia,106598.0,Kalumbila,both,identical +112012,25.75,-12.25,ZMB,1717.0,North-Western,168.0,Zambia,106598.0,Kalumbila,25.75,-12.25,ZMB,1717.0,North-Western,168.0,Zambia,106598.0,Kalumbila,both,identical +112013,26.25,-12.25,ZMB,1717.0,North-Western,168.0,Zambia,106598.0,Kalumbila,26.25,-12.25,ZMB,1717.0,North-Western,168.0,Zambia,106598.0,Kalumbila,both,identical +112014,26.75,-12.25,ZMB,1717.0,North-Western,168.0,Zambia,106602.0,Mushindano,26.75,-12.25,ZMB,1717.0,North-Western,168.0,Zambia,106602.0,Mushindano,both,identical +112015,27.25,-12.25,ZMB,1717.0,North-Western,168.0,Zambia,106602.0,Mushindano,27.25,-12.25,ZMB,1717.0,North-Western,168.0,Zambia,106602.0,Mushindano,both,identical +112016,27.75,-12.25,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102306.0,Sakania,27.75,-12.25,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102306.0,Sakania,both,identical +112017,28.25,-12.25,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102306.0,Sakania,28.25,-12.25,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102306.0,Sakania,both,identical +112018,28.75,-12.25,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102306.0,Sakania,28.75,-12.25,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102306.0,Sakania,both,identical +112019,29.25,-12.25,ZMB,1714.0,Luapula,168.0,Zambia,106574.0,Milengi,29.25,-12.25,ZMB,1714.0,Luapula,168.0,Zambia,106574.0,Milengi,both,identical +112020,29.75,-12.25,ZMB,1711.0,Central,168.0,Zambia,106533.0,Chitambo,29.75,-12.25,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102306.0,Sakania,both,country_reassignment +112021,30.25,-12.25,ZMB,1711.0,Central,168.0,Zambia,106533.0,Chitambo,30.25,-12.25,ZMB,1711.0,Central,168.0,Zambia,106533.0,Chitambo,both,identical +112022,30.75,-12.25,ZMB,1716.0,Muchiga,168.0,Zambia,106590.0,Lavushimanda,30.75,-12.25,ZMB,1716.0,Muchiga,168.0,Zambia,106590.0,Lavushimanda,both,identical +112023,31.25,-12.25,ZMB,1716.0,Muchiga,168.0,Zambia,106592.0,Mpika,31.25,-12.25,ZMB,1716.0,Muchiga,168.0,Zambia,106592.0,Mpika,both,identical +112024,31.75,-12.25,ZMB,1716.0,Muchiga,168.0,Zambia,106592.0,Mpika,31.75,-12.25,ZMB,1716.0,Muchiga,168.0,Zambia,106592.0,Mpika,both,identical +112025,32.25,-12.25,ZMB,1716.0,Muchiga,168.0,Zambia,106592.0,Mpika,32.25,-12.25,ZMB,1716.0,Muchiga,168.0,Zambia,106592.0,Mpika,both,identical +112026,32.75,-12.25,ZMB,1713.0,Eastern,168.0,Zambia,106559.0,Lumezi,32.75,-12.25,ZMB,1713.0,Eastern,168.0,Zambia,106559.0,Lumezi,both,identical +112027,33.25,-12.25,ZMB,1713.0,Eastern,168.0,Zambia,106560.0,Lundazi,33.25,-12.25,ZMB,1713.0,Eastern,168.0,Zambia,106560.0,Lundazi,both,identical +112028,33.75,-12.25,MWI,1435.0,Northern Region,142.0,Malawi,104089.0,Mzimba,33.75,-12.25,MWI,1435.0,Northern Region,142.0,Malawi,104089.0,Mzimba,both,identical +112029,34.25,-12.25,MWI,1434.0,Central Region,142.0,Malawi,900011.0,Waterbody,34.25,-12.25,MWI,1435.0,Northern Region,142.0,Malawi,900011.0,Waterbody,both,admin_reallocation +112030,34.75,-12.25,MOZ,1491.0,Niassa,148.0,Mozambique,104396.0,Lago,34.75,-12.25,MOZ,1491.0,Niassa,148.0,Mozambique,104396.0,Lago,both,identical +112031,35.25,-12.25,MOZ,1491.0,Niassa,148.0,Mozambique,104409.0,Sanga,35.25,-12.25,MOZ,1491.0,Niassa,148.0,Mozambique,104409.0,Sanga,both,identical +112032,35.75,-12.25,MOZ,1491.0,Niassa,148.0,Mozambique,104409.0,Sanga,35.75,-12.25,MOZ,1491.0,Niassa,148.0,Mozambique,104409.0,Sanga,both,identical +112033,36.25,-12.25,MOZ,1491.0,Niassa,148.0,Mozambique,104401.0,Mavago,36.25,-12.25,MOZ,1491.0,Niassa,148.0,Mozambique,104401.0,Mavago,both,identical +112034,36.75,-12.25,MOZ,1491.0,Niassa,148.0,Mozambique,104404.0,Mecula,36.75,-12.25,MOZ,1491.0,Niassa,148.0,Mozambique,104404.0,Mecula,both,identical +112035,37.25,-12.25,MOZ,1491.0,Niassa,148.0,Mozambique,104404.0,Mecula,37.25,-12.25,MOZ,1491.0,Niassa,148.0,Mozambique,104404.0,Mecula,both,identical +112036,37.75,-12.25,MOZ,1491.0,Niassa,148.0,Mozambique,104404.0,Mecula,37.75,-12.25,MOZ,1491.0,Niassa,148.0,Mozambique,104404.0,Mecula,both,identical +112037,38.25,-12.25,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104314.0,Montepuez,38.25,-12.25,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104314.0,Montepuez,both,identical +112038,38.75,-12.25,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104314.0,Montepuez,38.75,-12.25,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104314.0,Montepuez,both,identical +112039,39.25,-12.25,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104314.0,Montepuez,39.25,-12.25,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104314.0,Montepuez,both,identical +112040,39.75,-12.25,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104311.0,Meluco,39.75,-12.25,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104311.0,Meluco,both,identical +112041,40.25,-12.25,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104309.0,Macomia,40.25,-12.25,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104309.0,Macomia,both,identical +112042,40.75,-12.25,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104308.0,Ibo,40.75,-12.25,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104308.0,Ibo,both,identical +112048,43.75,-12.25,COM,1185.0,Mohéli (Mwali),115.0,Comoros,102168.0,Nioumachioi,43.75,-12.25,COM,1185.0,Mohéli (Mwali),115.0,Comoros,102168.0,Nioumachioi,both,identical +112049,44.25,-12.25,COM,1183.0,Anjouan (Ndzouani),115.0,Comoros,102156.0,Sima,44.25,-12.25,COM,1183.0,Anjouan (Ndzouani),115.0,Comoros,102156.0,Sima,both,identical +112050,44.75,-12.25,COM,1183.0,Anjouan (Ndzouani),115.0,Comoros,102153.0,Mrémani,44.75,-12.25,COM,1183.0,Anjouan (Ndzouani),115.0,Comoros,102153.0,Mrémani,both,identical +112058,48.75,-12.25,MDG,1429.0,Antsiranana,141.0,Madagascar,104058.0,Diana,48.75,-12.25,MDG,1429.0,Antsiranana,141.0,Madagascar,104058.0,Diana,both,identical +112059,49.25,-12.25,MDG,1429.0,Antsiranana,141.0,Madagascar,104058.0,Diana,49.25,-12.25,MDG,1429.0,Antsiranana,141.0,Madagascar,104058.0,Diana,both,identical +112060,49.75,-12.25,MDG,1429.0,Antsiranana,141.0,Madagascar,104058.0,Diana,49.75,-12.25,MDG,1429.0,Antsiranana,141.0,Madagascar,104058.0,Diana,both,identical +112708,13.75,-11.75,AGO,1055.0,Cuanza Sul,102.0,Angola,101601.0,Sumbe (Ngangula),13.75,-11.75,AGO,1055.0,Cuanza Sul,102.0,Angola,101601.0,Sumbe (Ngangula),both,identical +112709,14.25,-11.75,AGO,1055.0,Cuanza Sul,102.0,Angola,101601.0,Sumbe (Ngangula),14.25,-11.75,AGO,1055.0,Cuanza Sul,102.0,Angola,101601.0,Sumbe (Ngangula),both,identical +112710,14.75,-11.75,AGO,1055.0,Cuanza Sul,102.0,Angola,101591.0,Cassongue,14.75,-11.75,AGO,1055.0,Cuanza Sul,102.0,Angola,101591.0,Cassongue,both,identical +112711,15.25,-11.75,AGO,1055.0,Cuanza Sul,102.0,Angola,101591.0,Cassongue,15.25,-11.75,AGO,1055.0,Cuanza Sul,102.0,Angola,101591.0,Cassongue,both,identical +112712,15.75,-11.75,AGO,1057.0,Huambo,102.0,Angola,101608.0,Bailundo,15.75,-11.75,AGO,1057.0,Huambo,102.0,Angola,101608.0,Bailundo,both,identical +112713,16.25,-11.75,AGO,1057.0,Huambo,102.0,Angola,101615.0,Mungo,16.25,-11.75,AGO,1057.0,Huambo,102.0,Angola,101615.0,Mungo,both,identical +112714,16.75,-11.75,AGO,1051.0,Bié,102.0,Angola,101558.0,Andulo,16.75,-11.75,AGO,1051.0,Bié,102.0,Angola,101558.0,Andulo,both,identical +112715,17.25,-11.75,AGO,1051.0,Bié,102.0,Angola,101566.0,N'Harea,17.25,-11.75,AGO,1051.0,Bié,102.0,Angola,101566.0,N'Harea,both,identical +112716,17.75,-11.75,AGO,1051.0,Bié,102.0,Angola,101563.0,Cuemba,17.75,-11.75,AGO,1051.0,Bié,102.0,Angola,101563.0,Cuemba,both,identical +112717,18.25,-11.75,AGO,1051.0,Bié,102.0,Angola,101563.0,Cuemba,18.25,-11.75,AGO,1051.0,Bié,102.0,Angola,101563.0,Cuemba,both,identical +112718,18.75,-11.75,AGO,1051.0,Bié,102.0,Angola,101563.0,Cuemba,18.75,-11.75,AGO,1051.0,Bié,102.0,Angola,101563.0,Cuemba,both,identical +112719,19.25,-11.75,AGO,1063.0,Moxico,102.0,Angola,101674.0,Luena,19.25,-11.75,AGO,1063.0,Moxico,102.0,Angola,101674.0,Luena,both,identical +112720,19.75,-11.75,AGO,1063.0,Moxico,102.0,Angola,101674.0,Luena,19.75,-11.75,AGO,1063.0,Moxico,102.0,Angola,101674.0,Luena,both,identical +112721,20.25,-11.75,AGO,1063.0,Moxico,102.0,Angola,101674.0,Luena,20.25,-11.75,AGO,1063.0,Moxico,102.0,Angola,101674.0,Luena,both,identical +112722,20.75,-11.75,AGO,1063.0,Moxico,102.0,Angola,101675.0,Léua,20.75,-11.75,AGO,1063.0,Moxico,102.0,Angola,101675.0,Léua,both,identical +112723,21.25,-11.75,AGO,1063.0,Moxico,102.0,Angola,101670.0,Cameia (Lumeje),21.25,-11.75,AGO,1063.0,Moxico,102.0,Angola,101670.0,Cameia (Lumeje),both,identical +112724,21.75,-11.75,AGO,1063.0,Moxico,102.0,Angola,101671.0,Luacano,21.75,-11.75,AGO,1063.0,Moxico,102.0,Angola,101671.0,Luacano,both,identical +112725,22.25,-11.75,AGO,1063.0,Moxico,102.0,Angola,101671.0,Luacano,22.25,-11.75,AGO,1063.0,Moxico,102.0,Angola,101671.0,Luacano,both,identical +112726,22.75,-11.75,AGO,1063.0,Moxico,102.0,Angola,101667.0,Alto Zambeze,22.75,-11.75,AGO,1063.0,Moxico,102.0,Angola,101667.0,Alto Zambeze,both,identical +112727,23.25,-11.75,AGO,1063.0,Moxico,102.0,Angola,101667.0,Alto Zambeze,23.25,-11.75,AGO,1063.0,Moxico,102.0,Angola,101667.0,Alto Zambeze,both,identical +112728,23.75,-11.75,AGO,1063.0,Moxico,102.0,Angola,101667.0,Alto Zambeze,23.75,-11.75,AGO,1063.0,Moxico,102.0,Angola,101667.0,Alto Zambeze,both,identical +112729,24.25,-11.75,ZMB,1717.0,North-Western,168.0,Zambia,106603.0,Mwinilunga,24.25,-11.75,ZMB,1717.0,North-Western,168.0,Zambia,106603.0,Mwinilunga,both,identical +112730,24.75,-11.75,ZMB,1717.0,North-Western,168.0,Zambia,106603.0,Mwinilunga,24.75,-11.75,ZMB,1717.0,North-Western,168.0,Zambia,106603.0,Mwinilunga,both,identical +112731,25.25,-11.75,ZMB,1717.0,North-Western,168.0,Zambia,106603.0,Mwinilunga,25.25,-11.75,ZMB,1717.0,North-Western,168.0,Zambia,106603.0,Mwinilunga,both,identical +112732,25.75,-11.75,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102298.0,Kambove,25.75,-11.75,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102298.0,Kambove,both,identical +112733,26.25,-11.75,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102298.0,Kambove,26.25,-11.75,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102298.0,Kambove,both,identical +112734,26.75,-11.75,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102298.0,Kambove,26.75,-11.75,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102298.0,Kambove,both,identical +112735,27.25,-11.75,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102301.0,Kipushi,27.25,-11.75,ZMB,1717.0,North-Western,168.0,Zambia,106602.0,Mushindano,both,country_reassignment +112736,27.75,-11.75,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102301.0,Kipushi,27.75,-11.75,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102301.0,Kipushi,both,identical +112737,28.25,-11.75,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102301.0,Kipushi,28.25,-11.75,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102301.0,Kipushi,both,identical +112738,28.75,-11.75,ZMB,1714.0,Luapula,168.0,Zambia,106567.0,Chembe,28.75,-11.75,ZMB,1714.0,Luapula,168.0,Zambia,106567.0,Chembe,both,identical +112739,29.25,-11.75,ZMB,1714.0,Luapula,168.0,Zambia,106574.0,Milengi,29.25,-11.75,ZMB,1714.0,Luapula,168.0,Zambia,106574.0,Milengi,both,identical +112740,29.75,-11.75,ZMB,1714.0,Luapula,168.0,Zambia,106578.0,Samfya,29.75,-11.75,ZMB,1714.0,Luapula,168.0,Zambia,106578.0,Samfya,both,identical +112741,30.25,-11.75,ZMB,1714.0,Luapula,168.0,Zambia,106572.0,Lunga,30.25,-11.75,ZMB,1714.0,Luapula,168.0,Zambia,106572.0,Lunga,both,identical +112742,30.75,-11.75,ZMB,1716.0,Muchiga,168.0,Zambia,106589.0,Kanchibiya,30.75,-11.75,ZMB,1716.0,Muchiga,168.0,Zambia,106589.0,Kanchibiya,both,identical +112743,31.25,-11.75,ZMB,1716.0,Muchiga,168.0,Zambia,106589.0,Kanchibiya,31.25,-11.75,ZMB,1716.0,Muchiga,168.0,Zambia,106589.0,Kanchibiya,both,identical +112744,31.75,-11.75,ZMB,1716.0,Muchiga,168.0,Zambia,106592.0,Mpika,31.75,-11.75,ZMB,1716.0,Muchiga,168.0,Zambia,106592.0,Mpika,both,identical +112745,32.25,-11.75,ZMB,1716.0,Muchiga,168.0,Zambia,106592.0,Mpika,32.25,-11.75,ZMB,1716.0,Muchiga,168.0,Zambia,106592.0,Mpika,both,identical +112746,32.75,-11.75,ZMB,1716.0,Muchiga,168.0,Zambia,106586.0,Chama,32.75,-11.75,ZMB,1716.0,Muchiga,168.0,Zambia,106586.0,Chama,both,identical +112747,33.25,-11.75,ZMB,1713.0,Eastern,168.0,Zambia,106554.0,Chasefu,33.25,-11.75,MWI,1435.0,Northern Region,142.0,Malawi,104089.0,Mzimba,both,country_reassignment +112748,33.75,-11.75,MWI,1435.0,Northern Region,142.0,Malawi,104089.0,Mzimba,33.75,-11.75,MWI,1435.0,Northern Region,142.0,Malawi,104089.0,Mzimba,both,identical +112749,34.25,-11.75,MWI,1435.0,Northern Region,142.0,Malawi,900011.0,Waterbody,34.25,-11.75,MWI,1435.0,Northern Region,142.0,Malawi,900011.0,Waterbody,both,identical +112750,34.75,-11.75,MOZ,1491.0,Niassa,148.0,Mozambique,900013.0,Waterbody,34.75,-11.75,MOZ,1491.0,Niassa,148.0,Mozambique,900013.0,Waterbody,both,identical +112751,35.25,-11.75,MOZ,1491.0,Niassa,148.0,Mozambique,104396.0,Lago,35.25,-11.75,MOZ,1491.0,Niassa,148.0,Mozambique,104396.0,Lago,both,identical +112752,35.75,-11.75,MOZ,1491.0,Niassa,148.0,Mozambique,104409.0,Sanga,35.75,-11.75,MOZ,1491.0,Niassa,148.0,Mozambique,104409.0,Sanga,both,identical +112753,36.25,-11.75,MOZ,1491.0,Niassa,148.0,Mozambique,104401.0,Mavago,36.25,-11.75,MOZ,1491.0,Niassa,148.0,Mozambique,104401.0,Mavago,both,identical +112754,36.75,-11.75,MOZ,1491.0,Niassa,148.0,Mozambique,104401.0,Mavago,36.75,-11.75,MOZ,1491.0,Niassa,148.0,Mozambique,104401.0,Mavago,both,identical +112755,37.25,-11.75,MOZ,1491.0,Niassa,148.0,Mozambique,104404.0,Mecula,37.25,-11.75,MOZ,1491.0,Niassa,148.0,Mozambique,104404.0,Mecula,both,identical +112756,37.75,-11.75,MOZ,1491.0,Niassa,148.0,Mozambique,104404.0,Mecula,37.75,-11.75,MOZ,1491.0,Niassa,148.0,Mozambique,104404.0,Mecula,both,identical +112757,38.25,-11.75,MOZ,1491.0,Niassa,148.0,Mozambique,104404.0,Mecula,38.25,-11.75,MOZ,1491.0,Niassa,148.0,Mozambique,104404.0,Mecula,both,identical +112758,38.75,-11.75,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104315.0,Mueda,38.75,-11.75,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104315.0,Mueda,both,identical +112759,39.25,-11.75,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104315.0,Mueda,39.25,-11.75,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104315.0,Mueda,both,identical +112760,39.75,-11.75,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104316.0,Muidumbe,39.75,-11.75,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104316.0,Muidumbe,both,identical +112761,40.25,-11.75,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104309.0,Macomia,40.25,-11.75,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104309.0,Macomia,both,identical +112762,40.75,-11.75,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104309.0,Macomia,40.75,-11.75,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104309.0,Macomia,both,identical +112767,43.25,-11.75,COM,1184.0,Grande Comore (Ngazidja),115.0,Comoros,102165.0,Oichili-Dimani,43.25,-11.75,COM,1184.0,Grande Comore (Ngazidja),115.0,Comoros,102165.0,Oichili-Dimani,both,identical +112779,49.25,-11.75,MDG,1429.0,Antsiranana,141.0,Madagascar,104058.0,Diana,49.25,-11.75,MDG,1429.0,Antsiranana,141.0,Madagascar,104058.0,Diana,both,identical +113428,13.75,-11.25,AGO,1055.0,Cuanza Sul,102.0,Angola,101601.0,Sumbe (Ngangula),13.75,-11.25,AGO,1055.0,Cuanza Sul,102.0,Angola,101601.0,Sumbe (Ngangula),both,identical +113429,14.25,-11.25,AGO,1055.0,Cuanza Sul,102.0,Angola,101600.0,Seles (Uku Seles),14.25,-11.25,AGO,1055.0,Cuanza Sul,102.0,Angola,101600.0,Seles (Uku Seles),both,identical +113430,14.75,-11.25,AGO,1055.0,Cuanza Sul,102.0,Angola,101600.0,Seles (Uku Seles),14.75,-11.25,AGO,1055.0,Cuanza Sul,102.0,Angola,101600.0,Seles (Uku Seles),both,identical +113431,15.25,-11.25,AGO,1055.0,Cuanza Sul,102.0,Angola,101592.0,Cela (Waku Kungo),15.25,-11.25,AGO,1055.0,Cuanza Sul,102.0,Angola,101592.0,Cela (Waku Kungo),both,identical +113432,15.75,-11.25,AGO,1055.0,Cuanza Sul,102.0,Angola,101592.0,Cela (Waku Kungo),15.75,-11.25,AGO,1055.0,Cuanza Sul,102.0,Angola,101592.0,Cela (Waku Kungo),both,identical +113433,16.25,-11.25,AGO,1051.0,Bié,102.0,Angola,101558.0,Andulo,16.25,-11.25,AGO,1051.0,Bié,102.0,Angola,101558.0,Andulo,both,identical +113434,16.75,-11.25,AGO,1051.0,Bié,102.0,Angola,101558.0,Andulo,16.75,-11.25,AGO,1051.0,Bié,102.0,Angola,101558.0,Andulo,both,identical +113435,17.25,-11.25,AGO,1051.0,Bié,102.0,Angola,101566.0,N'Harea,17.25,-11.25,AGO,1051.0,Bié,102.0,Angola,101566.0,N'Harea,both,identical +113436,17.75,-11.25,AGO,1062.0,Malanje,102.0,Angola,101660.0,Luquembo,17.75,-11.25,AGO,1062.0,Malanje,102.0,Angola,101660.0,Luquembo,both,identical +113437,18.25,-11.25,AGO,1062.0,Malanje,102.0,Angola,101666.0,Quirima,18.25,-11.25,AGO,1062.0,Malanje,102.0,Angola,101666.0,Quirima,both,identical +113438,18.75,-11.25,AGO,1051.0,Bié,102.0,Angola,101563.0,Cuemba,18.75,-11.25,AGO,1051.0,Bié,102.0,Angola,101563.0,Cuemba,both,identical +113439,19.25,-11.25,AGO,1061.0,Lunda Sul,102.0,Angola,101649.0,Cacolo,19.25,-11.25,AGO,1061.0,Lunda Sul,102.0,Angola,101649.0,Cacolo,both,identical +113440,19.75,-11.25,AGO,1061.0,Lunda Sul,102.0,Angola,101650.0,Dala,19.75,-11.25,AGO,1061.0,Lunda Sul,102.0,Angola,101650.0,Dala,both,identical +113441,20.25,-11.25,AGO,1061.0,Lunda Sul,102.0,Angola,101650.0,Dala,20.25,-11.25,AGO,1061.0,Lunda Sul,102.0,Angola,101650.0,Dala,both,identical +113442,20.75,-11.25,AGO,1061.0,Lunda Sul,102.0,Angola,101650.0,Dala,20.75,-11.25,AGO,1061.0,Lunda Sul,102.0,Angola,101650.0,Dala,both,identical +113443,21.25,-11.25,AGO,1061.0,Lunda Sul,102.0,Angola,101651.0,Muconda,21.25,-11.25,AGO,1061.0,Lunda Sul,102.0,Angola,101651.0,Muconda,both,identical +113444,21.75,-11.25,AGO,1063.0,Moxico,102.0,Angola,101671.0,Luacano,21.75,-11.25,AGO,1063.0,Moxico,102.0,Angola,101671.0,Luacano,both,identical +113445,22.25,-11.25,AGO,1063.0,Moxico,102.0,Angola,101671.0,Luacano,22.25,-11.25,AGO,1063.0,Moxico,102.0,Angola,101671.0,Luacano,both,identical +113446,22.75,-11.25,AGO,1063.0,Moxico,102.0,Angola,101667.0,Alto Zambeze,22.75,-11.25,AGO,1063.0,Moxico,102.0,Angola,101667.0,Alto Zambeze,both,identical +113447,23.25,-11.25,AGO,1063.0,Moxico,102.0,Angola,101667.0,Alto Zambeze,23.25,-11.25,AGO,1063.0,Moxico,102.0,Angola,101667.0,Alto Zambeze,both,identical +113448,23.75,-11.25,AGO,1063.0,Moxico,102.0,Angola,101667.0,Alto Zambeze,23.75,-11.25,AGO,1063.0,Moxico,102.0,Angola,101667.0,Alto Zambeze,both,identical +113449,24.25,-11.25,ZMB,1717.0,North-Western,168.0,Zambia,106596.0,Ikelenge,24.25,-11.25,ZMB,1717.0,North-Western,168.0,Zambia,106596.0,Ikelenge,both,identical +113450,24.75,-11.25,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102414.0,Mutshatsha,24.75,-11.25,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102414.0,Mutshatsha,both,identical +113451,25.25,-11.25,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102414.0,Mutshatsha,25.25,-11.25,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102414.0,Mutshatsha,both,identical +113452,25.75,-11.25,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102414.0,Mutshatsha,25.75,-11.25,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102414.0,Mutshatsha,both,identical +113453,26.25,-11.25,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102298.0,Kambove,26.25,-11.25,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102298.0,Kambove,both,identical +113454,26.75,-11.25,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102298.0,Kambove,26.75,-11.25,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102298.0,Kambove,both,identical +113455,27.25,-11.25,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102298.0,Kambove,27.25,-11.25,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102298.0,Kambove,both,identical +113456,27.75,-11.25,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102299.0,Kasenga,27.75,-11.25,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102299.0,Kasenga,both,identical +113457,28.25,-11.25,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102301.0,Kipushi,28.25,-11.25,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102301.0,Kipushi,both,identical +113458,28.75,-11.25,ZMB,1714.0,Luapula,168.0,Zambia,106573.0,Mansa,28.75,-11.25,ZMB,1714.0,Luapula,168.0,Zambia,106573.0,Mansa,both,identical +113459,29.25,-11.25,ZMB,1714.0,Luapula,168.0,Zambia,106573.0,Mansa,29.25,-11.25,ZMB,1714.0,Luapula,168.0,Zambia,106573.0,Mansa,both,identical +113460,29.75,-11.25,ZMB,1714.0,Luapula,168.0,Zambia,106569.0,Chifunabuli,29.75,-11.25,ZMB,1714.0,Luapula,168.0,Zambia,106569.0,Chifunabuli,both,identical +113461,30.25,-11.25,ZMB,1718.0,Northern,168.0,Zambia,106606.0,Chilubi,30.25,-11.25,ZMB,1718.0,Northern,168.0,Zambia,106606.0,Chilubi,both,identical +113462,30.75,-11.25,ZMB,1716.0,Muchiga,168.0,Zambia,106589.0,Kanchibiya,30.75,-11.25,ZMB,1716.0,Muchiga,168.0,Zambia,106589.0,Kanchibiya,both,identical +113463,31.25,-11.25,ZMB,1716.0,Muchiga,168.0,Zambia,106589.0,Kanchibiya,31.25,-11.25,ZMB,1716.0,Muchiga,168.0,Zambia,106589.0,Kanchibiya,both,identical +113464,31.75,-11.25,ZMB,1716.0,Muchiga,168.0,Zambia,106594.0,Shiwang'Andu,31.75,-11.25,ZMB,1716.0,Muchiga,168.0,Zambia,106594.0,Shiwang'Andu,both,identical +113465,32.25,-11.25,ZMB,1716.0,Muchiga,168.0,Zambia,106586.0,Chama,32.25,-11.25,ZMB,1716.0,Muchiga,168.0,Zambia,106586.0,Chama,both,identical +113466,32.75,-11.25,ZMB,1716.0,Muchiga,168.0,Zambia,106586.0,Chama,32.75,-11.25,ZMB,1716.0,Muchiga,168.0,Zambia,106586.0,Chama,both,identical +113467,33.25,-11.25,ZMB,1716.0,Muchiga,168.0,Zambia,106586.0,Chama,33.25,-11.25,ZMB,1716.0,Muchiga,168.0,Zambia,106586.0,Chama,both,identical +113468,33.75,-11.25,MWI,1435.0,Northern Region,142.0,Malawi,104089.0,Mzimba,33.75,-11.25,MWI,1435.0,Northern Region,142.0,Malawi,104089.0,Mzimba,both,identical +113469,34.25,-11.25,MWI,1435.0,Northern Region,142.0,Malawi,900011.0,Waterbody,34.25,-11.25,MWI,1435.0,Northern Region,142.0,Malawi,900011.0,Waterbody,both,identical +113470,34.75,-11.25,TZA,1703.0,Ruvuma,166.0,United Republic of Tanzania,106495.0,Nyasa,34.75,-11.25,MWI,1435.0,Northern Region,142.0,Malawi,900011.0,Waterbody,both,country_reassignment +113471,35.25,-11.25,TZA,1703.0,Ruvuma,166.0,United Republic of Tanzania,106495.0,Nyasa,35.25,-11.25,TZA,1703.0,Ruvuma,166.0,United Republic of Tanzania,106495.0,Nyasa,both,identical +113472,35.75,-11.25,TZA,1703.0,Ruvuma,166.0,United Republic of Tanzania,106496.0,Songea,35.75,-11.25,TZA,1703.0,Ruvuma,166.0,United Republic of Tanzania,106496.0,Songea,both,identical +113473,36.25,-11.25,TZA,1703.0,Ruvuma,166.0,United Republic of Tanzania,106494.0,Namtumbo,36.25,-11.25,TZA,1703.0,Ruvuma,166.0,United Republic of Tanzania,106494.0,Namtumbo,both,identical +113474,36.75,-11.25,TZA,1703.0,Ruvuma,166.0,United Republic of Tanzania,106494.0,Namtumbo,36.75,-11.25,TZA,1703.0,Ruvuma,166.0,United Republic of Tanzania,106494.0,Namtumbo,both,identical +113475,37.25,-11.25,TZA,1703.0,Ruvuma,166.0,United Republic of Tanzania,106497.0,Tunduru,37.25,-11.25,TZA,1703.0,Ruvuma,166.0,United Republic of Tanzania,106497.0,Tunduru,both,identical +113476,37.75,-11.25,TZA,1703.0,Ruvuma,166.0,United Republic of Tanzania,106497.0,Tunduru,37.75,-11.25,TZA,1703.0,Ruvuma,166.0,United Republic of Tanzania,106497.0,Tunduru,both,identical +113477,38.25,-11.25,TZA,1698.0,Mtwara,166.0,United Republic of Tanzania,106469.0,Nanyumbu,38.25,-11.25,TZA,1698.0,Mtwara,166.0,United Republic of Tanzania,106469.0,Nanyumbu,both,identical +113478,38.75,-11.25,TZA,1698.0,Mtwara,166.0,United Republic of Tanzania,106469.0,Nanyumbu,38.75,-11.25,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104315.0,Mueda,both,country_reassignment +113479,39.25,-11.25,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104315.0,Mueda,39.25,-11.25,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104315.0,Mueda,both,identical +113480,39.75,-11.25,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104318.0,Nangade,39.75,-11.25,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104318.0,Nangade,both,identical +113481,40.25,-11.25,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104313.0,Mocímboa Da Praia,40.25,-11.25,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104313.0,Mocímboa Da Praia,both,identical +113482,40.75,-11.25,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104319.0,Palma,40.75,-11.25,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104319.0,Palma,both,identical +113487,43.25,-11.25,COM,1184.0,Grande Comore (Ngazidja),115.0,Comoros,102163.0,Mitsamiouli-Mboudé,43.25,-11.25,COM,1184.0,Grande Comore (Ngazidja),115.0,Comoros,102163.0,Mitsamiouli-Mboudé,both,identical +114148,13.75,-10.75,AGO,1055.0,Cuanza Sul,102.0,Angola,101597.0,Porto Amboim,13.75,-10.75,AGO,1055.0,Cuanza Sul,102.0,Angola,101597.0,Porto Amboim,both,identical +114149,14.25,-10.75,AGO,1055.0,Cuanza Sul,102.0,Angola,101597.0,Porto Amboim,14.25,-10.75,AGO,1055.0,Cuanza Sul,102.0,Angola,101597.0,Porto Amboim,both,identical +114150,14.75,-10.75,AGO,1055.0,Cuanza Sul,102.0,Angola,101598.0,Quibala,14.75,-10.75,AGO,1055.0,Cuanza Sul,102.0,Angola,101598.0,Quibala,both,identical +114151,15.25,-10.75,AGO,1055.0,Cuanza Sul,102.0,Angola,101598.0,Quibala,15.25,-10.75,AGO,1055.0,Cuanza Sul,102.0,Angola,101598.0,Quibala,both,identical +114152,15.75,-10.75,AGO,1055.0,Cuanza Sul,102.0,Angola,101598.0,Quibala,15.75,-10.75,AGO,1055.0,Cuanza Sul,102.0,Angola,101598.0,Quibala,both,identical +114153,16.25,-10.75,AGO,1055.0,Cuanza Sul,102.0,Angola,101596.0,Mussende,16.25,-10.75,AGO,1055.0,Cuanza Sul,102.0,Angola,101596.0,Mussende,both,identical +114154,16.75,-10.75,AGO,1051.0,Bié,102.0,Angola,101660.0,Luquembo,16.75,-10.75,AGO,1062.0,Malanje,102.0,Angola,101660.0,Luquembo,both,admin_reallocation +114155,17.25,-10.75,AGO,1062.0,Malanje,102.0,Angola,101660.0,Luquembo,17.25,-10.75,AGO,1062.0,Malanje,102.0,Angola,101660.0,Luquembo,both,identical +114156,17.75,-10.75,AGO,1062.0,Malanje,102.0,Angola,101660.0,Luquembo,17.75,-10.75,AGO,1062.0,Malanje,102.0,Angola,101660.0,Luquembo,both,identical +114157,18.25,-10.75,AGO,1062.0,Malanje,102.0,Angola,101666.0,Quirima,18.25,-10.75,AGO,1062.0,Malanje,102.0,Angola,101666.0,Quirima,both,identical +114158,18.75,-10.75,AGO,1061.0,Lunda Sul,102.0,Angola,101649.0,Cacolo,18.75,-10.75,AGO,1061.0,Lunda Sul,102.0,Angola,101649.0,Cacolo,both,identical +114159,19.25,-10.75,AGO,1061.0,Lunda Sul,102.0,Angola,101649.0,Cacolo,19.25,-10.75,AGO,1061.0,Lunda Sul,102.0,Angola,101649.0,Cacolo,both,identical +114160,19.75,-10.75,AGO,1061.0,Lunda Sul,102.0,Angola,101650.0,Dala,19.75,-10.75,AGO,1061.0,Lunda Sul,102.0,Angola,101650.0,Dala,both,identical +114161,20.25,-10.75,AGO,1061.0,Lunda Sul,102.0,Angola,101650.0,Dala,20.25,-10.75,AGO,1061.0,Lunda Sul,102.0,Angola,101650.0,Dala,both,identical +114162,20.75,-10.75,AGO,1061.0,Lunda Sul,102.0,Angola,101650.0,Dala,20.75,-10.75,AGO,1061.0,Lunda Sul,102.0,Angola,101650.0,Dala,both,identical +114163,21.25,-10.75,AGO,1061.0,Lunda Sul,102.0,Angola,101651.0,Muconda,21.25,-10.75,AGO,1061.0,Lunda Sul,102.0,Angola,101651.0,Muconda,both,identical +114164,21.75,-10.75,AGO,1061.0,Lunda Sul,102.0,Angola,101651.0,Muconda,21.75,-10.75,AGO,1061.0,Lunda Sul,102.0,Angola,101651.0,Muconda,both,identical +114165,22.25,-10.75,AGO,1063.0,Moxico,102.0,Angola,101672.0,Luau,22.25,-10.75,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102409.0,Dilolo,both,country_reassignment +114166,22.75,-10.75,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102409.0,Dilolo,22.75,-10.75,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102409.0,Dilolo,both,identical +114167,23.25,-10.75,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102409.0,Dilolo,23.25,-10.75,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102409.0,Dilolo,both,identical +114168,23.75,-10.75,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102409.0,Dilolo,23.75,-10.75,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102409.0,Dilolo,both,identical +114169,24.25,-10.75,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102409.0,Dilolo,24.25,-10.75,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102409.0,Dilolo,both,identical +114170,24.75,-10.75,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102414.0,Mutshatsha,24.75,-10.75,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102414.0,Mutshatsha,both,identical +114171,25.25,-10.75,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102414.0,Mutshatsha,25.25,-10.75,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102414.0,Mutshatsha,both,identical +114172,25.75,-10.75,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102414.0,Mutshatsha,25.75,-10.75,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102414.0,Mutshatsha,both,identical +114173,26.25,-10.75,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102413.0,Lubudi,26.25,-10.75,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102413.0,Lubudi,both,identical +114174,26.75,-10.75,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102298.0,Kambove,26.75,-10.75,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102298.0,Kambove,both,identical +114175,27.25,-10.75,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102298.0,Kambove,27.25,-10.75,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102298.0,Kambove,both,identical +114176,27.75,-10.75,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102299.0,Kasenga,27.75,-10.75,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102299.0,Kasenga,both,identical +114177,28.25,-10.75,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102299.0,Kasenga,28.25,-10.75,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102299.0,Kasenga,both,identical +114178,28.75,-10.75,ZMB,1714.0,Luapula,168.0,Zambia,106576.0,Mwense,28.75,-10.75,ZMB,1714.0,Luapula,168.0,Zambia,106576.0,Mwense,both,identical +114179,29.25,-10.75,ZMB,1714.0,Luapula,168.0,Zambia,106610.0,Lupososhi,29.25,-10.75,ZMB,1718.0,Northern,168.0,Zambia,106610.0,Lupososhi,both,admin_reallocation +114180,29.75,-10.75,ZMB,1718.0,Northern,168.0,Zambia,106610.0,Lupososhi,29.75,-10.75,ZMB,1718.0,Northern,168.0,Zambia,106610.0,Lupososhi,both,identical +114181,30.25,-10.75,ZMB,1718.0,Northern,168.0,Zambia,106611.0,Luwingu,30.25,-10.75,ZMB,1718.0,Northern,168.0,Zambia,106611.0,Luwingu,both,identical +114182,30.75,-10.75,ZMB,1718.0,Northern,168.0,Zambia,106608.0,Kasama,30.75,-10.75,ZMB,1718.0,Northern,168.0,Zambia,106608.0,Kasama,both,identical +114183,31.25,-10.75,ZMB,1718.0,Northern,168.0,Zambia,106608.0,Kasama,31.25,-10.75,ZMB,1718.0,Northern,168.0,Zambia,106608.0,Kasama,both,identical +114184,31.75,-10.75,ZMB,1716.0,Muchiga,168.0,Zambia,106594.0,Shiwang'Andu,31.75,-10.75,ZMB,1716.0,Muchiga,168.0,Zambia,106594.0,Shiwang'Andu,both,identical +114185,32.25,-10.75,ZMB,1716.0,Muchiga,168.0,Zambia,106587.0,Chinsali,32.25,-10.75,ZMB,1716.0,Muchiga,168.0,Zambia,106587.0,Chinsali,both,identical +114186,32.75,-10.75,ZMB,1716.0,Muchiga,168.0,Zambia,106586.0,Chama,32.75,-10.75,ZMB,1716.0,Muchiga,168.0,Zambia,106586.0,Chama,both,identical +114187,33.25,-10.75,ZMB,1716.0,Muchiga,168.0,Zambia,106586.0,Chama,33.25,-10.75,ZMB,1716.0,Muchiga,168.0,Zambia,106586.0,Chama,both,identical +114188,33.75,-10.75,MWI,1435.0,Northern Region,142.0,Malawi,104091.0,Rumphi,33.75,-10.75,MWI,1435.0,Northern Region,142.0,Malawi,104091.0,Rumphi,both,identical +114189,34.25,-10.75,MWI,1435.0,Northern Region,142.0,Malawi,900011.0,Waterbody,34.25,-10.75,MWI,1435.0,Northern Region,142.0,Malawi,900011.0,Waterbody,both,identical +114190,34.75,-10.75,TZA,1703.0,Ruvuma,166.0,United Republic of Tanzania,106493.0,Mbinga,34.75,-10.75,TZA,1703.0,Ruvuma,166.0,United Republic of Tanzania,106493.0,Mbinga,both,identical +114191,35.25,-10.75,TZA,1703.0,Ruvuma,166.0,United Republic of Tanzania,106496.0,Songea,35.25,-10.75,TZA,1703.0,Ruvuma,166.0,United Republic of Tanzania,106496.0,Songea,both,identical +114192,35.75,-10.75,TZA,1703.0,Ruvuma,166.0,United Republic of Tanzania,106496.0,Songea,35.75,-10.75,TZA,1703.0,Ruvuma,166.0,United Republic of Tanzania,106496.0,Songea,both,identical +114193,36.25,-10.75,TZA,1703.0,Ruvuma,166.0,United Republic of Tanzania,106494.0,Namtumbo,36.25,-10.75,TZA,1703.0,Ruvuma,166.0,United Republic of Tanzania,106494.0,Namtumbo,both,identical +114194,36.75,-10.75,TZA,1703.0,Ruvuma,166.0,United Republic of Tanzania,106497.0,Tunduru,36.75,-10.75,TZA,1703.0,Ruvuma,166.0,United Republic of Tanzania,106497.0,Tunduru,both,identical +114195,37.25,-10.75,TZA,1703.0,Ruvuma,166.0,United Republic of Tanzania,106497.0,Tunduru,37.25,-10.75,TZA,1703.0,Ruvuma,166.0,United Republic of Tanzania,106497.0,Tunduru,both,identical +114196,37.75,-10.75,TZA,1703.0,Ruvuma,166.0,United Republic of Tanzania,106497.0,Tunduru,37.75,-10.75,TZA,1703.0,Ruvuma,166.0,United Republic of Tanzania,106497.0,Tunduru,both,identical +114197,38.25,-10.75,TZA,1698.0,Mtwara,166.0,United Republic of Tanzania,106469.0,Nanyumbu,38.25,-10.75,TZA,1698.0,Mtwara,166.0,United Republic of Tanzania,106469.0,Nanyumbu,both,identical +114198,38.75,-10.75,TZA,1698.0,Mtwara,166.0,United Republic of Tanzania,106467.0,Masasi,38.75,-10.75,TZA,1698.0,Mtwara,166.0,United Republic of Tanzania,106467.0,Masasi,both,identical +114199,39.25,-10.75,TZA,1698.0,Mtwara,166.0,United Republic of Tanzania,106470.0,Newala,39.25,-10.75,TZA,1698.0,Mtwara,166.0,United Republic of Tanzania,106470.0,Newala,both,identical +114200,39.75,-10.75,TZA,1698.0,Mtwara,166.0,United Republic of Tanzania,106471.0,Tandahimba,39.75,-10.75,TZA,1698.0,Mtwara,166.0,United Republic of Tanzania,106471.0,Tandahimba,both,identical +114201,40.25,-10.75,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104319.0,Palma,40.25,-10.75,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104319.0,Palma,both,identical +114202,40.75,-10.75,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104319.0,Palma,40.75,-10.75,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104319.0,Palma,both,identical +114867,13.25,-10.25,AGO,1059.0,Luanda,102.0,Angola,101638.0,"Quissama (Muxima, Quiçama)",13.25,-10.25,AGO,1059.0,Luanda,102.0,Angola,101638.0,"Quissama (Muxima, Quiçama)",both,identical +114868,13.75,-10.25,AGO,1059.0,Luanda,102.0,Angola,101638.0,"Quissama (Muxima, Quiçama)",13.75,-10.25,AGO,1059.0,Luanda,102.0,Angola,101638.0,"Quissama (Muxima, Quiçama)",both,identical +114869,14.25,-10.25,AGO,1059.0,Luanda,102.0,Angola,101638.0,"Quissama (Muxima, Quiçama)",14.25,-10.25,AGO,1059.0,Luanda,102.0,Angola,101638.0,"Quissama (Muxima, Quiçama)",both,identical +114870,14.75,-10.25,AGO,1055.0,Cuanza Sul,102.0,Angola,101595.0,Libolo (Calulo),14.75,-10.25,AGO,1055.0,Cuanza Sul,102.0,Angola,101595.0,Libolo (Calulo),both,identical +114871,15.25,-10.25,AGO,1055.0,Cuanza Sul,102.0,Angola,101595.0,Libolo (Calulo),15.25,-10.25,AGO,1055.0,Cuanza Sul,102.0,Angola,101595.0,Libolo (Calulo),both,identical +114872,15.75,-10.25,AGO,1055.0,Cuanza Sul,102.0,Angola,101596.0,Mussende,15.75,-10.25,AGO,1055.0,Cuanza Sul,102.0,Angola,101596.0,Mussende,both,identical +114873,16.25,-10.25,AGO,1055.0,Cuanza Sul,102.0,Angola,101596.0,Mussende,16.25,-10.25,AGO,1055.0,Cuanza Sul,102.0,Angola,101596.0,Mussende,both,identical +114874,16.75,-10.25,AGO,1062.0,Malanje,102.0,Angola,101657.0,Cangandala,16.75,-10.25,AGO,1062.0,Malanje,102.0,Angola,101657.0,Cangandala,both,identical +114875,17.25,-10.25,AGO,1062.0,Malanje,102.0,Angola,101656.0,Cambundi-Catembo,17.25,-10.25,AGO,1062.0,Malanje,102.0,Angola,101656.0,Cambundi-Catembo,both,identical +114876,17.75,-10.25,AGO,1062.0,Malanje,102.0,Angola,101656.0,Cambundi-Catembo,17.75,-10.25,AGO,1062.0,Malanje,102.0,Angola,101656.0,Cambundi-Catembo,both,identical +114877,18.25,-10.25,AGO,1062.0,Malanje,102.0,Angola,101656.0,Cambundi-Catembo,18.25,-10.25,AGO,1062.0,Malanje,102.0,Angola,101656.0,Cambundi-Catembo,both,identical +114878,18.75,-10.25,AGO,1061.0,Lunda Sul,102.0,Angola,101649.0,Cacolo,18.75,-10.25,AGO,1061.0,Lunda Sul,102.0,Angola,101649.0,Cacolo,both,identical +114879,19.25,-10.25,AGO,1061.0,Lunda Sul,102.0,Angola,101649.0,Cacolo,19.25,-10.25,AGO,1061.0,Lunda Sul,102.0,Angola,101649.0,Cacolo,both,identical +114880,19.75,-10.25,AGO,1061.0,Lunda Sul,102.0,Angola,101652.0,Saurimo,19.75,-10.25,AGO,1061.0,Lunda Sul,102.0,Angola,101652.0,Saurimo,both,identical +114881,20.25,-10.25,AGO,1061.0,Lunda Sul,102.0,Angola,101652.0,Saurimo,20.25,-10.25,AGO,1061.0,Lunda Sul,102.0,Angola,101652.0,Saurimo,both,identical +114882,20.75,-10.25,AGO,1061.0,Lunda Sul,102.0,Angola,101651.0,Muconda,20.75,-10.25,AGO,1061.0,Lunda Sul,102.0,Angola,101651.0,Muconda,both,identical +114883,21.25,-10.25,AGO,1061.0,Lunda Sul,102.0,Angola,101651.0,Muconda,21.25,-10.25,AGO,1061.0,Lunda Sul,102.0,Angola,101651.0,Muconda,both,identical +114884,21.75,-10.25,AGO,1061.0,Lunda Sul,102.0,Angola,101651.0,Muconda,21.75,-10.25,AGO,1061.0,Lunda Sul,102.0,Angola,101651.0,Muconda,both,identical +114885,22.25,-10.25,AGO,1061.0,Lunda Sul,102.0,Angola,101651.0,Muconda,22.25,-10.25,AGO,1061.0,Lunda Sul,102.0,Angola,101651.0,Muconda,both,identical +114886,22.75,-10.25,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102409.0,Dilolo,22.75,-10.25,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102409.0,Dilolo,both,identical +114887,23.25,-10.25,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102409.0,Dilolo,23.25,-10.25,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102409.0,Dilolo,both,identical +114888,23.75,-10.25,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102409.0,Dilolo,23.75,-10.25,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102409.0,Dilolo,both,identical +114889,24.25,-10.25,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102414.0,Mutshatsha,24.25,-10.25,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102414.0,Mutshatsha,both,identical +114890,24.75,-10.25,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102414.0,Mutshatsha,24.75,-10.25,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102414.0,Mutshatsha,both,identical +114891,25.25,-10.25,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102414.0,Mutshatsha,25.25,-10.25,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102414.0,Mutshatsha,both,identical +114892,25.75,-10.25,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102413.0,Lubudi,25.75,-10.25,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102413.0,Lubudi,both,identical +114893,26.25,-10.25,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102413.0,Lubudi,26.25,-10.25,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102413.0,Lubudi,both,identical +114894,26.75,-10.25,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102413.0,Lubudi,26.75,-10.25,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102413.0,Lubudi,both,identical +114895,27.25,-10.25,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102299.0,Kasenga,27.25,-10.25,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102299.0,Kasenga,both,identical +114896,27.75,-10.25,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102299.0,Kasenga,27.75,-10.25,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102299.0,Kasenga,both,identical +114897,28.25,-10.25,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102299.0,Kasenga,28.25,-10.25,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102299.0,Kasenga,both,identical +114898,28.75,-10.25,ZMB,1714.0,Luapula,168.0,Zambia,106576.0,Mwense,28.75,-10.25,ZMB,1714.0,Luapula,168.0,Zambia,106576.0,Mwense,both,identical +114899,29.25,-10.25,ZMB,1714.0,Luapula,168.0,Zambia,106570.0,Chipili,29.25,-10.25,ZMB,1714.0,Luapula,168.0,Zambia,106570.0,Chipili,both,identical +114900,29.75,-10.25,ZMB,1718.0,Northern,168.0,Zambia,106571.0,Kawambwa,29.75,-10.25,ZMB,1714.0,Luapula,168.0,Zambia,106571.0,Kawambwa,both,admin_reallocation +114901,30.25,-10.25,ZMB,1718.0,Northern,168.0,Zambia,106609.0,Lunte,30.25,-10.25,ZMB,1718.0,Northern,168.0,Zambia,106609.0,Lunte,both,identical +114902,30.75,-10.25,ZMB,1718.0,Northern,168.0,Zambia,106608.0,Kasama,30.75,-10.25,ZMB,1718.0,Northern,168.0,Zambia,106608.0,Kasama,both,identical +114903,31.25,-10.25,ZMB,1718.0,Northern,168.0,Zambia,106608.0,Kasama,31.25,-10.25,ZMB,1718.0,Northern,168.0,Zambia,106608.0,Kasama,both,identical +114904,31.75,-10.25,ZMB,1718.0,Northern,168.0,Zambia,106615.0,Mungwi,31.75,-10.25,ZMB,1718.0,Northern,168.0,Zambia,106615.0,Mungwi,both,identical +114905,32.25,-10.25,ZMB,1716.0,Muchiga,168.0,Zambia,106587.0,Chinsali,32.25,-10.25,ZMB,1716.0,Muchiga,168.0,Zambia,106587.0,Chinsali,both,identical +114906,32.75,-10.25,ZMB,1716.0,Muchiga,168.0,Zambia,106588.0,Isoka,32.75,-10.25,ZMB,1716.0,Muchiga,168.0,Zambia,106588.0,Isoka,both,identical +114907,33.25,-10.25,ZMB,1716.0,Muchiga,168.0,Zambia,106591.0,Mafinga,33.25,-10.25,ZMB,1716.0,Muchiga,168.0,Zambia,106591.0,Mafinga,both,identical +114908,33.75,-10.25,MWI,1435.0,Northern Region,142.0,Malawi,104086.0,Chitipa,33.75,-10.25,MWI,1435.0,Northern Region,142.0,Malawi,104086.0,Chitipa,both,identical +114909,34.25,-10.25,MWI,1435.0,Northern Region,142.0,Malawi,900011.0,Waterbody,34.25,-10.25,MWI,1435.0,Northern Region,142.0,Malawi,900011.0,Waterbody,both,identical +114910,34.75,-10.25,TZA,1700.0,Njombe,166.0,United Republic of Tanzania,106479.0,Ludewa,34.75,-10.25,TZA,1700.0,Njombe,166.0,United Republic of Tanzania,106479.0,Ludewa,both,identical +114911,35.25,-10.25,TZA,1703.0,Ruvuma,166.0,United Republic of Tanzania,106496.0,Songea,35.25,-10.25,TZA,1703.0,Ruvuma,166.0,United Republic of Tanzania,106496.0,Songea,both,identical +114912,35.75,-10.25,TZA,1703.0,Ruvuma,166.0,United Republic of Tanzania,106496.0,Songea,35.75,-10.25,TZA,1703.0,Ruvuma,166.0,United Republic of Tanzania,106496.0,Songea,both,identical +114913,36.25,-10.25,TZA,1703.0,Ruvuma,166.0,United Republic of Tanzania,106494.0,Namtumbo,36.25,-10.25,TZA,1703.0,Ruvuma,166.0,United Republic of Tanzania,106494.0,Namtumbo,both,identical +114914,36.75,-10.25,TZA,1703.0,Ruvuma,166.0,United Republic of Tanzania,106494.0,Namtumbo,36.75,-10.25,TZA,1703.0,Ruvuma,166.0,United Republic of Tanzania,106494.0,Namtumbo,both,identical +114915,37.25,-10.25,TZA,1692.0,Lindi,166.0,United Republic of Tanzania,106438.0,Liwale,37.25,-10.25,TZA,1692.0,Lindi,166.0,United Republic of Tanzania,106438.0,Liwale,both,identical +114916,37.75,-10.25,TZA,1692.0,Lindi,166.0,United Republic of Tanzania,106438.0,Liwale,37.75,-10.25,TZA,1692.0,Lindi,166.0,United Republic of Tanzania,106438.0,Liwale,both,identical +114917,38.25,-10.25,TZA,1692.0,Lindi,166.0,United Republic of Tanzania,106439.0,Nachingwea,38.25,-10.25,TZA,1692.0,Lindi,166.0,United Republic of Tanzania,106439.0,Nachingwea,both,identical +114918,38.75,-10.25,TZA,1692.0,Lindi,166.0,United Republic of Tanzania,106439.0,Nachingwea,38.75,-10.25,TZA,1692.0,Lindi,166.0,United Republic of Tanzania,106439.0,Nachingwea,both,identical +114919,39.25,-10.25,TZA,1692.0,Lindi,166.0,United Republic of Tanzania,106437.0,Lindi,39.25,-10.25,TZA,1692.0,Lindi,166.0,United Republic of Tanzania,106437.0,Lindi,both,identical +114920,39.75,-10.25,TZA,1692.0,Lindi,166.0,United Republic of Tanzania,106437.0,Lindi,39.75,-10.25,TZA,1692.0,Lindi,166.0,United Republic of Tanzania,106437.0,Lindi,both,identical +114921,40.25,-10.25,TZA,1698.0,Mtwara,166.0,United Republic of Tanzania,106468.0,Mtwara,40.25,-10.25,TZA,1698.0,Mtwara,166.0,United Republic of Tanzania,106468.0,Mtwara,both,identical +114922,40.75,-10.25,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104319.0,Palma,40.75,-10.25,MOZ,1484.0,Cabo Delgado,148.0,Mozambique,104319.0,Palma,both,identical +115587,13.25,-9.75,AGO,1059.0,Luanda,102.0,Angola,101638.0,"Quissama (Muxima, Quiçama)",13.25,-9.75,AGO,1059.0,Luanda,102.0,Angola,101638.0,"Quissama (Muxima, Quiçama)",both,identical +115588,13.75,-9.75,AGO,1059.0,Luanda,102.0,Angola,101638.0,"Quissama (Muxima, Quiçama)",13.75,-9.75,AGO,1059.0,Luanda,102.0,Angola,101638.0,"Quissama (Muxima, Quiçama)",both,identical +115589,14.25,-9.75,AGO,1059.0,Luanda,102.0,Angola,101638.0,"Quissama (Muxima, Quiçama)",14.25,-9.75,AGO,1059.0,Luanda,102.0,Angola,101638.0,"Quissama (Muxima, Quiçama)",both,identical +115590,14.75,-9.75,AGO,1054.0,Cuanza Norte,102.0,Angola,101583.0,Cambambe (Kambambe),14.75,-9.75,AGO,1054.0,Cuanza Norte,102.0,Angola,101583.0,Cambambe (Kambambe),both,identical +115591,15.25,-9.75,AGO,1055.0,Cuanza Sul,102.0,Angola,101653.0,Cacuso,15.25,-9.75,AGO,1062.0,Malanje,102.0,Angola,101653.0,Cacuso,both,admin_reallocation +115592,15.75,-9.75,AGO,1062.0,Malanje,102.0,Angola,101653.0,Cacuso,15.75,-9.75,AGO,1062.0,Malanje,102.0,Angola,101653.0,Cacuso,both,identical +115593,16.25,-9.75,AGO,1062.0,Malanje,102.0,Angola,101661.0,Malanje,16.25,-9.75,AGO,1062.0,Malanje,102.0,Angola,101661.0,Malanje,both,identical +115594,16.75,-9.75,AGO,1062.0,Malanje,102.0,Angola,101657.0,Cangandala,16.75,-9.75,AGO,1062.0,Malanje,102.0,Angola,101657.0,Cangandala,both,identical +115595,17.25,-9.75,AGO,1062.0,Malanje,102.0,Angola,101656.0,Cambundi-Catembo,17.25,-9.75,AGO,1062.0,Malanje,102.0,Angola,101656.0,Cambundi-Catembo,both,identical +115596,17.75,-9.75,AGO,1060.0,Lunda Norte,102.0,Angola,101648.0,Xá-Muteba,17.75,-9.75,AGO,1060.0,Lunda Norte,102.0,Angola,101648.0,Xá-Muteba,both,identical +115597,18.25,-9.75,AGO,1060.0,Lunda Norte,102.0,Angola,101648.0,Xá-Muteba,18.25,-9.75,AGO,1060.0,Lunda Norte,102.0,Angola,101648.0,Xá-Muteba,both,identical +115598,18.75,-9.75,AGO,1060.0,Lunda Norte,102.0,Angola,101641.0,Capenda-Camulemba,18.75,-9.75,AGO,1060.0,Lunda Norte,102.0,Angola,101641.0,Capenda-Camulemba,both,identical +115599,19.25,-9.75,AGO,1060.0,Lunda Norte,102.0,Angola,101641.0,Capenda-Camulemba,19.25,-9.75,AGO,1060.0,Lunda Norte,102.0,Angola,101641.0,Capenda-Camulemba,both,identical +115600,19.75,-9.75,AGO,1060.0,Lunda Norte,102.0,Angola,101646.0,Lubalo,19.75,-9.75,AGO,1060.0,Lunda Norte,102.0,Angola,101646.0,Lubalo,both,identical +115601,20.25,-9.75,AGO,1061.0,Lunda Sul,102.0,Angola,101652.0,Saurimo,20.25,-9.75,AGO,1061.0,Lunda Sul,102.0,Angola,101652.0,Saurimo,both,identical +115602,20.75,-9.75,AGO,1061.0,Lunda Sul,102.0,Angola,101651.0,Muconda,20.75,-9.75,AGO,1061.0,Lunda Sul,102.0,Angola,101651.0,Muconda,both,identical +115603,21.25,-9.75,AGO,1061.0,Lunda Sul,102.0,Angola,101651.0,Muconda,21.25,-9.75,AGO,1061.0,Lunda Sul,102.0,Angola,101651.0,Muconda,both,identical +115604,21.75,-9.75,AGO,1061.0,Lunda Sul,102.0,Angola,101651.0,Muconda,21.75,-9.75,AGO,1061.0,Lunda Sul,102.0,Angola,101651.0,Muconda,both,identical +115605,22.25,-9.75,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102415.0,Sandoa,22.25,-9.75,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102415.0,Sandoa,both,identical +115606,22.75,-9.75,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102415.0,Sandoa,22.75,-9.75,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102415.0,Sandoa,both,identical +115607,23.25,-9.75,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102415.0,Sandoa,23.25,-9.75,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102415.0,Sandoa,both,identical +115608,23.75,-9.75,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102415.0,Sandoa,23.75,-9.75,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102415.0,Sandoa,both,identical +115609,24.25,-9.75,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102309.0,Kamina,24.25,-9.75,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102309.0,Kamina,both,identical +115610,24.75,-9.75,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102309.0,Kamina,24.75,-9.75,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102309.0,Kamina,both,identical +115611,25.25,-9.75,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102309.0,Kamina,25.25,-9.75,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102309.0,Kamina,both,identical +115612,25.75,-9.75,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102413.0,Lubudi,25.75,-9.75,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102413.0,Lubudi,both,identical +115613,26.25,-9.75,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102413.0,Lubudi,26.25,-9.75,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102413.0,Lubudi,both,identical +115614,26.75,-9.75,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102304.0,Mitwaba,26.75,-9.75,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102304.0,Mitwaba,both,identical +115615,27.25,-9.75,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102304.0,Mitwaba,27.25,-9.75,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102304.0,Mitwaba,both,identical +115616,27.75,-9.75,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102304.0,Mitwaba,27.75,-9.75,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102304.0,Mitwaba,both,identical +115617,28.25,-9.75,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102299.0,Kasenga,28.25,-9.75,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102299.0,Kasenga,both,identical +115618,28.75,-9.75,ZMB,1714.0,Luapula,168.0,Zambia,106577.0,Nchelenge,28.75,-9.75,ZMB,1714.0,Luapula,168.0,Zambia,106577.0,Nchelenge,both,identical +115619,29.25,-9.75,ZMB,1714.0,Luapula,168.0,Zambia,106571.0,Kawambwa,29.25,-9.75,ZMB,1714.0,Luapula,168.0,Zambia,106571.0,Kawambwa,both,identical +115620,29.75,-9.75,ZMB,1714.0,Luapula,168.0,Zambia,106571.0,Kawambwa,29.75,-9.75,ZMB,1714.0,Luapula,168.0,Zambia,106571.0,Kawambwa,both,identical +115621,30.25,-9.75,ZMB,1718.0,Northern,168.0,Zambia,106609.0,Lunte,30.25,-9.75,ZMB,1718.0,Northern,168.0,Zambia,106609.0,Lunte,both,identical +115622,30.75,-9.75,ZMB,1718.0,Northern,168.0,Zambia,106609.0,Lunte,30.75,-9.75,ZMB,1718.0,Northern,168.0,Zambia,106609.0,Lunte,both,identical +115623,31.25,-9.75,ZMB,1718.0,Northern,168.0,Zambia,106615.0,Mungwi,31.25,-9.75,ZMB,1718.0,Northern,168.0,Zambia,106615.0,Mungwi,both,identical +115624,31.75,-9.75,ZMB,1718.0,Northern,168.0,Zambia,106615.0,Mungwi,31.75,-9.75,ZMB,1718.0,Northern,168.0,Zambia,106615.0,Mungwi,both,identical +115625,32.25,-9.75,ZMB,1718.0,Northern,168.0,Zambia,106615.0,Mungwi,32.25,-9.75,ZMB,1718.0,Northern,168.0,Zambia,106615.0,Mungwi,both,identical +115626,32.75,-9.75,ZMB,1716.0,Muchiga,168.0,Zambia,106593.0,Nakonde,32.75,-9.75,ZMB,1716.0,Muchiga,168.0,Zambia,106593.0,Nakonde,both,identical +115627,33.25,-9.75,MWI,1435.0,Northern Region,142.0,Malawi,104086.0,Chitipa,33.25,-9.75,MWI,1435.0,Northern Region,142.0,Malawi,104086.0,Chitipa,both,identical +115628,33.75,-9.75,MWI,1435.0,Northern Region,142.0,Malawi,104087.0,Karonga,33.75,-9.75,MWI,1435.0,Northern Region,142.0,Malawi,104087.0,Karonga,both,identical +115629,34.25,-9.75,MWI,1435.0,Northern Region,142.0,Malawi,900011.0,Waterbody,34.25,-9.75,MWI,1435.0,Northern Region,142.0,Malawi,900011.0,Waterbody,both,identical +115630,34.75,-9.75,TZA,1700.0,Njombe,166.0,United Republic of Tanzania,106479.0,Ludewa,34.75,-9.75,TZA,1700.0,Njombe,166.0,United Republic of Tanzania,106479.0,Ludewa,both,identical +115631,35.25,-9.75,TZA,1703.0,Ruvuma,166.0,United Republic of Tanzania,106496.0,Songea,35.25,-9.75,TZA,1703.0,Ruvuma,166.0,United Republic of Tanzania,106496.0,Songea,both,identical +115632,35.75,-9.75,TZA,1703.0,Ruvuma,166.0,United Republic of Tanzania,106496.0,Songea,35.75,-9.75,TZA,1703.0,Ruvuma,166.0,United Republic of Tanzania,106496.0,Songea,both,identical +115633,36.25,-9.75,TZA,1703.0,Ruvuma,166.0,United Republic of Tanzania,106494.0,Namtumbo,36.25,-9.75,TZA,1703.0,Ruvuma,166.0,United Republic of Tanzania,106494.0,Namtumbo,both,identical +115634,36.75,-9.75,TZA,1703.0,Ruvuma,166.0,United Republic of Tanzania,106494.0,Namtumbo,36.75,-9.75,TZA,1703.0,Ruvuma,166.0,United Republic of Tanzania,106494.0,Namtumbo,both,identical +115635,37.25,-9.75,TZA,1692.0,Lindi,166.0,United Republic of Tanzania,106438.0,Liwale,37.25,-9.75,TZA,1692.0,Lindi,166.0,United Republic of Tanzania,106438.0,Liwale,both,identical +115636,37.75,-9.75,TZA,1692.0,Lindi,166.0,United Republic of Tanzania,106438.0,Liwale,37.75,-9.75,TZA,1692.0,Lindi,166.0,United Republic of Tanzania,106438.0,Liwale,both,identical +115637,38.25,-9.75,TZA,1692.0,Lindi,166.0,United Republic of Tanzania,106438.0,Liwale,38.25,-9.75,TZA,1692.0,Lindi,166.0,United Republic of Tanzania,106438.0,Liwale,both,identical +115638,38.75,-9.75,TZA,1692.0,Lindi,166.0,United Republic of Tanzania,106436.0,Kilwa,38.75,-9.75,TZA,1692.0,Lindi,166.0,United Republic of Tanzania,106436.0,Kilwa,both,identical +115639,39.25,-9.75,TZA,1692.0,Lindi,166.0,United Republic of Tanzania,106437.0,Lindi,39.25,-9.75,TZA,1692.0,Lindi,166.0,United Republic of Tanzania,106437.0,Lindi,both,identical +115640,39.75,-9.75,TZA,1692.0,Lindi,166.0,United Republic of Tanzania,106437.0,Lindi,39.75,-9.75,TZA,1692.0,Lindi,166.0,United Republic of Tanzania,106437.0,Lindi,both,identical +116306,12.75,-9.25,AGO,1059.0,Luanda,102.0,Angola,101633.0,Belas (Samba),12.75,-9.25,AGO,1059.0,Luanda,102.0,Angola,101633.0,Belas (Samba),both,identical +116307,13.25,-9.25,AGO,1059.0,Luanda,102.0,Angola,101638.0,"Quissama (Muxima, Quiçama)",13.25,-9.25,AGO,1059.0,Luanda,102.0,Angola,101638.0,"Quissama (Muxima, Quiçama)",both,identical +116308,13.75,-9.25,AGO,1059.0,Luanda,102.0,Angola,101636.0,Icolo E Bengo,13.75,-9.25,AGO,1059.0,Luanda,102.0,Angola,101636.0,Icolo E Bengo,both,identical +116309,14.25,-9.25,AGO,1054.0,Cuanza Norte,102.0,Angola,101583.0,Cambambe (Kambambe),14.25,-9.25,AGO,1054.0,Cuanza Norte,102.0,Angola,101583.0,Cambambe (Kambambe),both,identical +116310,14.75,-9.25,AGO,1054.0,Cuanza Norte,102.0,Angola,101584.0,Cazengo,14.75,-9.25,AGO,1054.0,Cuanza Norte,102.0,Angola,101584.0,Cazengo,both,identical +116311,15.25,-9.25,AGO,1054.0,Cuanza Norte,102.0,Angola,101586.0,Lucala,15.25,-9.25,AGO,1054.0,Cuanza Norte,102.0,Angola,101586.0,Lucala,both,identical +116312,15.75,-9.25,AGO,1062.0,Malanje,102.0,Angola,101653.0,Cacuso,15.75,-9.25,AGO,1062.0,Malanje,102.0,Angola,101653.0,Cacuso,both,identical +116313,16.25,-9.25,AGO,1062.0,Malanje,102.0,Angola,101661.0,Malanje,16.25,-9.25,AGO,1062.0,Malanje,102.0,Angola,101661.0,Malanje,both,identical +116314,16.75,-9.25,AGO,1062.0,Malanje,102.0,Angola,101659.0,Kiuaba-N'Zoji (Cuaba Nzogo),16.75,-9.25,AGO,1062.0,Malanje,102.0,Angola,101659.0,Kiuaba-N'Zoji (Cuaba Nzogo),both,identical +116315,17.25,-9.25,AGO,1062.0,Malanje,102.0,Angola,101665.0,Quela,17.25,-9.25,AGO,1062.0,Malanje,102.0,Angola,101665.0,Quela,both,identical +116316,17.75,-9.25,AGO,1060.0,Lunda Norte,102.0,Angola,101648.0,Xá-Muteba,17.75,-9.25,AGO,1060.0,Lunda Norte,102.0,Angola,101648.0,Xá-Muteba,both,identical +116317,18.25,-9.25,AGO,1060.0,Lunda Norte,102.0,Angola,101648.0,Xá-Muteba,18.25,-9.25,AGO,1060.0,Lunda Norte,102.0,Angola,101648.0,Xá-Muteba,both,identical +116318,18.75,-9.25,AGO,1060.0,Lunda Norte,102.0,Angola,101646.0,Lubalo,18.75,-9.25,AGO,1060.0,Lunda Norte,102.0,Angola,101646.0,Lubalo,both,identical +116319,19.25,-9.25,AGO,1060.0,Lunda Norte,102.0,Angola,101646.0,Lubalo,19.25,-9.25,AGO,1060.0,Lunda Norte,102.0,Angola,101646.0,Lubalo,both,identical +116320,19.75,-9.25,AGO,1060.0,Lunda Norte,102.0,Angola,101646.0,Lubalo,19.75,-9.25,AGO,1060.0,Lunda Norte,102.0,Angola,101646.0,Lubalo,both,identical +116321,20.25,-9.25,AGO,1060.0,Lunda Norte,102.0,Angola,101647.0,Lucapa,20.25,-9.25,AGO,1060.0,Lunda Norte,102.0,Angola,101647.0,Lucapa,both,identical +116322,20.75,-9.25,AGO,1061.0,Lunda Sul,102.0,Angola,101652.0,Saurimo,20.75,-9.25,AGO,1061.0,Lunda Sul,102.0,Angola,101652.0,Saurimo,both,identical +116323,21.25,-9.25,AGO,1061.0,Lunda Sul,102.0,Angola,101652.0,Saurimo,21.25,-9.25,AGO,1061.0,Lunda Sul,102.0,Angola,101652.0,Saurimo,both,identical +116324,21.75,-9.25,AGO,1061.0,Lunda Sul,102.0,Angola,101651.0,Muconda,21.75,-9.25,AGO,1061.0,Lunda Sul,102.0,Angola,101651.0,Muconda,both,identical +116325,22.25,-9.25,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102415.0,Sandoa,22.25,-9.25,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102415.0,Sandoa,both,identical +116326,22.75,-9.25,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102415.0,Sandoa,22.75,-9.25,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102415.0,Sandoa,both,identical +116327,23.25,-9.25,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102415.0,Sandoa,23.25,-9.25,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102415.0,Sandoa,both,identical +116328,23.75,-9.25,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102415.0,Sandoa,23.75,-9.25,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102415.0,Sandoa,both,identical +116329,24.25,-9.25,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102415.0,Sandoa,24.25,-9.25,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102415.0,Sandoa,both,identical +116330,24.75,-9.25,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102309.0,Kamina,24.75,-9.25,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102309.0,Kamina,both,identical +116331,25.25,-9.25,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102309.0,Kamina,25.25,-9.25,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102309.0,Kamina,both,identical +116332,25.75,-9.25,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102307.0,Bukama,25.75,-9.25,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102307.0,Bukama,both,identical +116333,26.25,-9.25,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102307.0,Bukama,26.25,-9.25,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102307.0,Bukama,both,identical +116334,26.75,-9.25,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102304.0,Mitwaba,26.75,-9.25,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102304.0,Mitwaba,both,identical +116335,27.25,-9.25,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102304.0,Mitwaba,27.25,-9.25,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102304.0,Mitwaba,both,identical +116336,27.75,-9.25,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102305.0,Pweto,27.75,-9.25,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102305.0,Pweto,both,identical +116337,28.25,-9.25,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102305.0,Pweto,28.25,-9.25,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102305.0,Pweto,both,identical +116338,28.75,-9.25,ZMB,1714.0,Luapula,168.0,Zambia,106577.0,Nchelenge,28.75,-9.25,ZMB,1714.0,Luapula,168.0,Zambia,106577.0,Nchelenge,both,identical +116339,29.25,-9.25,ZMB,1714.0,Luapula,168.0,Zambia,106607.0,Kaputa,29.25,-9.25,ZMB,1718.0,Northern,168.0,Zambia,106607.0,Kaputa,both,admin_reallocation +116340,29.75,-9.25,ZMB,1718.0,Northern,168.0,Zambia,106613.0,Mporokoso,29.75,-9.25,ZMB,1718.0,Northern,168.0,Zambia,106613.0,Mporokoso,both,identical +116341,30.25,-9.25,ZMB,1718.0,Northern,168.0,Zambia,106616.0,Nsama,30.25,-9.25,ZMB,1718.0,Northern,168.0,Zambia,106616.0,Nsama,both,identical +116342,30.75,-9.25,ZMB,1718.0,Northern,168.0,Zambia,106614.0,Mpulungu,30.75,-9.25,ZMB,1718.0,Northern,168.0,Zambia,106614.0,Mpulungu,both,identical +116343,31.25,-9.25,ZMB,1718.0,Northern,168.0,Zambia,106612.0,Mbala,31.25,-9.25,ZMB,1718.0,Northern,168.0,Zambia,106612.0,Mbala,both,identical +116344,31.75,-9.25,ZMB,1718.0,Northern,168.0,Zambia,106617.0,Senga Hill,31.75,-9.25,ZMB,1718.0,Northern,168.0,Zambia,106617.0,Senga Hill,both,identical +116345,32.25,-9.25,ZMB,1716.0,Muchiga,168.0,Zambia,106593.0,Nakonde,32.25,-9.25,ZMB,1716.0,Muchiga,168.0,Zambia,106593.0,Nakonde,both,identical +116346,32.75,-9.25,TZA,1707.0,Songwe,166.0,United Republic of Tanzania,106513.0,Momba,32.75,-9.25,ZMB,1716.0,Muchiga,168.0,Zambia,106593.0,Nakonde,both,country_reassignment +116347,33.25,-9.25,TZA,1707.0,Songwe,166.0,United Republic of Tanzania,106511.0,Ileje,33.25,-9.25,TZA,1707.0,Songwe,166.0,United Republic of Tanzania,106511.0,Ileje,both,identical +116348,33.75,-9.25,TZA,1695.0,Mbeya,166.0,United Republic of Tanzania,106456.0,Rungwe,33.75,-9.25,TZA,1695.0,Mbeya,166.0,United Republic of Tanzania,106456.0,Rungwe,both,identical +116349,34.25,-9.25,TZA,1700.0,Njombe,166.0,United Republic of Tanzania,106480.0,Makete,34.25,-9.25,TZA,1700.0,Njombe,166.0,United Republic of Tanzania,106480.0,Makete,both,identical +116350,34.75,-9.25,TZA,1700.0,Njombe,166.0,United Republic of Tanzania,106481.0,Njombe,34.75,-9.25,TZA,1700.0,Njombe,166.0,United Republic of Tanzania,106481.0,Njombe,both,identical +116351,35.25,-9.25,TZA,1700.0,Njombe,166.0,United Republic of Tanzania,106481.0,Njombe,35.25,-9.25,TZA,1700.0,Njombe,166.0,United Republic of Tanzania,106481.0,Njombe,both,identical +116352,35.75,-9.25,TZA,1697.0,Morogoro,166.0,United Republic of Tanzania,106461.0,Kilombero,35.75,-9.25,TZA,1697.0,Morogoro,166.0,United Republic of Tanzania,106461.0,Kilombero,both,identical +116353,36.25,-9.25,TZA,1697.0,Morogoro,166.0,United Republic of Tanzania,106463.0,Malinyi,36.25,-9.25,TZA,1697.0,Morogoro,166.0,United Republic of Tanzania,106463.0,Malinyi,both,identical +116354,36.75,-9.25,TZA,1697.0,Morogoro,166.0,United Republic of Tanzania,106466.0,Ulanga,36.75,-9.25,TZA,1697.0,Morogoro,166.0,United Republic of Tanzania,106466.0,Ulanga,both,identical +116355,37.25,-9.25,TZA,1697.0,Morogoro,166.0,United Republic of Tanzania,106466.0,Ulanga,37.25,-9.25,TZA,1697.0,Morogoro,166.0,United Republic of Tanzania,106466.0,Ulanga,both,identical +116356,37.75,-9.25,TZA,1692.0,Lindi,166.0,United Republic of Tanzania,106438.0,Liwale,37.75,-9.25,TZA,1692.0,Lindi,166.0,United Republic of Tanzania,106438.0,Liwale,both,identical +116357,38.25,-9.25,TZA,1692.0,Lindi,166.0,United Republic of Tanzania,106438.0,Liwale,38.25,-9.25,TZA,1692.0,Lindi,166.0,United Republic of Tanzania,106438.0,Liwale,both,identical +116358,38.75,-9.25,TZA,1692.0,Lindi,166.0,United Republic of Tanzania,106436.0,Kilwa,38.75,-9.25,TZA,1692.0,Lindi,166.0,United Republic of Tanzania,106436.0,Kilwa,both,identical +116359,39.25,-9.25,TZA,1692.0,Lindi,166.0,United Republic of Tanzania,106436.0,Kilwa,39.25,-9.25,TZA,1692.0,Lindi,166.0,United Republic of Tanzania,106436.0,Kilwa,both,identical +116360,39.75,-9.25,TZA,1692.0,Lindi,166.0,United Republic of Tanzania,106436.0,Kilwa,39.75,-9.25,TZA,1692.0,Lindi,166.0,United Republic of Tanzania,106436.0,Kilwa,both,identical +116373,46.25,-9.25,SYC,1582.0,Other Islands,156.0,Seychelles,105518.0,Other Islands,46.25,-9.25,SYC,1582.0,Other Islands,156.0,Seychelles,105518.0,Other Islands,both,identical +116374,46.75,-9.25,SYC,1582.0,Other Islands,156.0,Seychelles,105518.0,Other Islands,46.75,-9.25,SYC,1582.0,Other Islands,156.0,Seychelles,105518.0,Other Islands,both,identical +117027,13.25,-8.75,AGO,1059.0,Luanda,102.0,Angola,101544.0,Dande,13.25,-8.75,AGO,1049.0,Bengo,102.0,Angola,101544.0,Dande,both,admin_reallocation +117028,13.75,-8.75,AGO,1049.0,Bengo,102.0,Angola,101544.0,Dande,13.75,-8.75,AGO,1049.0,Bengo,102.0,Angola,101544.0,Dande,both,identical +117029,14.25,-8.75,AGO,1049.0,Bengo,102.0,Angola,101544.0,Dande,14.25,-8.75,AGO,1049.0,Bengo,102.0,Angola,101544.0,Dande,both,identical +117030,14.75,-8.75,AGO,1049.0,Bengo,102.0,Angola,101543.0,Bula-Atumba,14.75,-8.75,AGO,1049.0,Bengo,102.0,Angola,101543.0,Bula-Atumba,both,identical +117031,15.25,-8.75,AGO,1054.0,Cuanza Norte,102.0,Angola,101581.0,Banga,15.25,-8.75,AGO,1054.0,Cuanza Norte,102.0,Angola,101581.0,Banga,both,identical +117032,15.75,-8.75,AGO,1062.0,Malanje,102.0,Angola,101655.0,Calandula,15.75,-8.75,AGO,1062.0,Malanje,102.0,Angola,101655.0,Calandula,both,identical +117033,16.25,-8.75,AGO,1062.0,Malanje,102.0,Angola,101655.0,Calandula,16.25,-8.75,AGO,1062.0,Malanje,102.0,Angola,101655.0,Calandula,both,identical +117034,16.75,-8.75,AGO,1062.0,Malanje,102.0,Angola,101654.0,Cahombo,16.75,-8.75,AGO,1062.0,Malanje,102.0,Angola,101654.0,Cahombo,both,identical +117035,17.25,-8.75,AGO,1062.0,Malanje,102.0,Angola,101658.0,Cunda-Dia-Baze,17.25,-8.75,AGO,1062.0,Malanje,102.0,Angola,101658.0,Cunda-Dia-Baze,both,identical +117036,17.75,-8.75,AGO,1060.0,Lunda Norte,102.0,Angola,101648.0,Xá-Muteba,17.75,-8.75,AGO,1060.0,Lunda Norte,102.0,Angola,101648.0,Xá-Muteba,both,identical +117037,18.25,-8.75,AGO,1060.0,Lunda Norte,102.0,Angola,101644.0,Cuango,18.25,-8.75,AGO,1060.0,Lunda Norte,102.0,Angola,101644.0,Cuango,both,identical +117038,18.75,-8.75,AGO,1060.0,Lunda Norte,102.0,Angola,101646.0,Lubalo,18.75,-8.75,AGO,1060.0,Lunda Norte,102.0,Angola,101646.0,Lubalo,both,identical +117039,19.25,-8.75,AGO,1060.0,Lunda Norte,102.0,Angola,101646.0,Lubalo,19.25,-8.75,AGO,1060.0,Lunda Norte,102.0,Angola,101646.0,Lubalo,both,identical +117040,19.75,-8.75,AGO,1060.0,Lunda Norte,102.0,Angola,101645.0,Cuilo,19.75,-8.75,AGO,1060.0,Lunda Norte,102.0,Angola,101645.0,Cuilo,both,identical +117041,20.25,-8.75,AGO,1060.0,Lunda Norte,102.0,Angola,101647.0,Lucapa,20.25,-8.75,AGO,1060.0,Lunda Norte,102.0,Angola,101647.0,Lucapa,both,identical +117042,20.75,-8.75,AGO,1060.0,Lunda Norte,102.0,Angola,101647.0,Lucapa,20.75,-8.75,AGO,1060.0,Lunda Norte,102.0,Angola,101647.0,Lucapa,both,identical +117043,21.25,-8.75,AGO,1061.0,Lunda Sul,102.0,Angola,101652.0,Saurimo,21.25,-8.75,AGO,1061.0,Lunda Sul,102.0,Angola,101652.0,Saurimo,both,identical +117044,21.75,-8.75,AGO,1061.0,Lunda Sul,102.0,Angola,101652.0,Saurimo,21.75,-8.75,AGO,1061.0,Lunda Sul,102.0,Angola,101652.0,Saurimo,both,identical +117045,22.25,-8.75,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102410.0,Kapanga,22.25,-8.75,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102410.0,Kapanga,both,identical +117046,22.75,-8.75,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102410.0,Kapanga,22.75,-8.75,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102410.0,Kapanga,both,identical +117047,23.25,-8.75,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102410.0,Kapanga,23.25,-8.75,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102410.0,Kapanga,both,identical +117048,23.75,-8.75,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102410.0,Kapanga,23.75,-8.75,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102410.0,Kapanga,both,identical +117049,24.25,-8.75,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102309.0,Kamina,24.25,-8.75,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102309.0,Kamina,both,identical +117050,24.75,-8.75,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102309.0,Kamina,24.75,-8.75,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102309.0,Kamina,both,identical +117051,25.25,-8.75,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102309.0,Kamina,25.25,-8.75,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102309.0,Kamina,both,identical +117052,25.75,-8.75,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102307.0,Bukama,25.75,-8.75,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102307.0,Bukama,both,identical +117053,26.25,-8.75,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102307.0,Bukama,26.25,-8.75,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102307.0,Bukama,both,identical +117054,26.75,-8.75,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102307.0,Bukama,26.75,-8.75,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102307.0,Bukama,both,identical +117055,27.25,-8.75,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102304.0,Mitwaba,27.25,-8.75,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102304.0,Mitwaba,both,identical +117056,27.75,-8.75,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102305.0,Pweto,27.75,-8.75,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102305.0,Pweto,both,identical +117057,28.25,-8.75,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102305.0,Pweto,28.25,-8.75,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102305.0,Pweto,both,identical +117058,28.75,-8.75,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102305.0,Pweto,28.75,-8.75,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102305.0,Pweto,both,identical +117059,29.25,-8.75,ZMB,1714.0,Luapula,168.0,Zambia,106568.0,Chiengi,29.25,-8.75,ZMB,1714.0,Luapula,168.0,Zambia,106568.0,Chiengi,both,identical +117060,29.75,-8.75,ZMB,1718.0,Northern,168.0,Zambia,106616.0,Nsama,29.75,-8.75,ZMB,1718.0,Northern,168.0,Zambia,106616.0,Nsama,both,identical +117061,30.25,-8.75,ZMB,1718.0,Northern,168.0,Zambia,106616.0,Nsama,30.25,-8.75,ZMB,1718.0,Northern,168.0,Zambia,106616.0,Nsama,both,identical +117062,30.75,-8.75,ZMB,1718.0,Northern,168.0,Zambia,106614.0,Mpulungu,30.75,-8.75,ZMB,1718.0,Northern,168.0,Zambia,106614.0,Mpulungu,both,identical +117063,31.25,-8.75,ZMB,1718.0,Northern,168.0,Zambia,106612.0,Mbala,31.25,-8.75,ZMB,1718.0,Northern,168.0,Zambia,106612.0,Mbala,both,identical +117064,31.75,-8.75,TZA,1702.0,Rukwa,166.0,United Republic of Tanzania,106490.0,Kalambo,31.75,-8.75,TZA,1702.0,Rukwa,166.0,United Republic of Tanzania,106490.0,Kalambo,both,identical +117065,32.25,-8.75,TZA,1707.0,Songwe,166.0,United Republic of Tanzania,106513.0,Momba,32.25,-8.75,TZA,1707.0,Songwe,166.0,United Republic of Tanzania,106513.0,Momba,both,identical +117066,32.75,-8.75,TZA,1707.0,Songwe,166.0,United Republic of Tanzania,106512.0,Mbozi,32.75,-8.75,TZA,1707.0,Songwe,166.0,United Republic of Tanzania,106512.0,Mbozi,both,identical +117067,33.25,-8.75,TZA,1695.0,Mbeya,166.0,United Republic of Tanzania,106455.0,Mbeya,33.25,-8.75,TZA,1695.0,Mbeya,166.0,United Republic of Tanzania,106455.0,Mbeya,both,identical +117068,33.75,-8.75,TZA,1695.0,Mbeya,166.0,United Republic of Tanzania,106454.0,Mbarali,33.75,-8.75,TZA,1695.0,Mbeya,166.0,United Republic of Tanzania,106454.0,Mbarali,both,identical +117069,34.25,-8.75,TZA,1695.0,Mbeya,166.0,United Republic of Tanzania,106454.0,Mbarali,34.25,-8.75,TZA,1695.0,Mbeya,166.0,United Republic of Tanzania,106454.0,Mbarali,both,identical +117070,34.75,-8.75,TZA,1700.0,Njombe,166.0,United Republic of Tanzania,106482.0,Wanging'Ombe,34.75,-8.75,TZA,1700.0,Njombe,166.0,United Republic of Tanzania,106482.0,Wanging'Ombe,both,identical +117071,35.25,-8.75,TZA,1683.0,Iringa,166.0,United Republic of Tanzania,106405.0,Mufindi,35.25,-8.75,TZA,1683.0,Iringa,166.0,United Republic of Tanzania,106405.0,Mufindi,both,identical +117072,35.75,-8.75,TZA,1697.0,Morogoro,166.0,United Republic of Tanzania,106461.0,Kilombero,35.75,-8.75,TZA,1697.0,Morogoro,166.0,United Republic of Tanzania,106461.0,Kilombero,both,identical +117073,36.25,-8.75,TZA,1697.0,Morogoro,166.0,United Republic of Tanzania,106463.0,Malinyi,36.25,-8.75,TZA,1697.0,Morogoro,166.0,United Republic of Tanzania,106463.0,Malinyi,both,identical +117074,36.75,-8.75,TZA,1697.0,Morogoro,166.0,United Republic of Tanzania,106466.0,Ulanga,36.75,-8.75,TZA,1697.0,Morogoro,166.0,United Republic of Tanzania,106466.0,Ulanga,both,identical +117075,37.25,-8.75,TZA,1697.0,Morogoro,166.0,United Republic of Tanzania,106466.0,Ulanga,37.25,-8.75,TZA,1697.0,Morogoro,166.0,United Republic of Tanzania,106466.0,Ulanga,both,identical +117076,37.75,-8.75,TZA,1692.0,Lindi,166.0,United Republic of Tanzania,106438.0,Liwale,37.75,-8.75,TZA,1692.0,Lindi,166.0,United Republic of Tanzania,106438.0,Liwale,both,identical +117077,38.25,-8.75,TZA,1692.0,Lindi,166.0,United Republic of Tanzania,106438.0,Liwale,38.25,-8.75,TZA,1692.0,Lindi,166.0,United Republic of Tanzania,106438.0,Liwale,both,identical +117078,38.75,-8.75,TZA,1692.0,Lindi,166.0,United Republic of Tanzania,106436.0,Kilwa,38.75,-8.75,TZA,1692.0,Lindi,166.0,United Republic of Tanzania,106436.0,Kilwa,both,identical +117079,39.25,-8.75,TZA,1692.0,Lindi,166.0,United Republic of Tanzania,106436.0,Kilwa,39.25,-8.75,TZA,1692.0,Lindi,166.0,United Republic of Tanzania,106436.0,Kilwa,both,identical +117080,39.75,-8.75,TZA,1692.0,Lindi,166.0,United Republic of Tanzania,106436.0,Kilwa,39.75,-8.75,TZA,1692.0,Lindi,166.0,United Republic of Tanzania,106436.0,Kilwa,both,identical +117747,13.25,-8.25,AGO,1049.0,Bengo,102.0,Angola,101542.0,Ambriz,13.25,-8.25,AGO,1049.0,Bengo,102.0,Angola,101542.0,Ambriz,both,identical +117748,13.75,-8.25,AGO,1049.0,Bengo,102.0,Angola,101544.0,Dande,13.75,-8.25,AGO,1049.0,Bengo,102.0,Angola,101544.0,Dande,both,identical +117749,14.25,-8.25,AGO,1049.0,Bengo,102.0,Angola,101546.0,Nambuangongo,14.25,-8.25,AGO,1049.0,Bengo,102.0,Angola,101546.0,Nambuangongo,both,identical +117750,14.75,-8.25,AGO,1049.0,Bengo,102.0,Angola,101693.0,Quitexe,14.75,-8.25,AGO,1065.0,Uíge,102.0,Angola,101693.0,Quitexe,both,admin_reallocation +117751,15.25,-8.25,AGO,1054.0,Cuanza Norte,102.0,Angola,101580.0,Ambaca,15.25,-8.25,AGO,1054.0,Cuanza Norte,102.0,Angola,101580.0,Ambaca,both,identical +117752,15.75,-8.25,AGO,1054.0,Cuanza Norte,102.0,Angola,101580.0,Ambaca,15.75,-8.25,AGO,1054.0,Cuanza Norte,102.0,Angola,101580.0,Ambaca,both,identical +117753,16.25,-8.25,AGO,1062.0,Malanje,102.0,Angola,101655.0,Calandula,16.25,-8.25,AGO,1062.0,Malanje,102.0,Angola,101655.0,Calandula,both,identical +117754,16.75,-8.25,AGO,1062.0,Malanje,102.0,Angola,101662.0,Marimba,16.75,-8.25,AGO,1062.0,Malanje,102.0,Angola,101662.0,Marimba,both,identical +117755,17.25,-8.25,AGO,1062.0,Malanje,102.0,Angola,101662.0,Marimba,17.25,-8.25,AGO,1062.0,Malanje,102.0,Angola,101662.0,Marimba,both,identical +117756,17.75,-8.25,AGO,1060.0,Lunda Norte,102.0,Angola,101644.0,Cuango,17.75,-8.25,AGO,1060.0,Lunda Norte,102.0,Angola,101644.0,Cuango,both,identical +117757,18.25,-8.25,AGO,1060.0,Lunda Norte,102.0,Angola,101642.0,Caungula,18.25,-8.25,AGO,1060.0,Lunda Norte,102.0,Angola,101642.0,Caungula,both,identical +117758,18.75,-8.25,AGO,1060.0,Lunda Norte,102.0,Angola,101642.0,Caungula,18.75,-8.25,AGO,1060.0,Lunda Norte,102.0,Angola,101642.0,Caungula,both,identical +117759,19.25,-8.25,AGO,1060.0,Lunda Norte,102.0,Angola,101642.0,Caungula,19.25,-8.25,AGO,1060.0,Lunda Norte,102.0,Angola,101642.0,Caungula,both,identical +117760,19.75,-8.25,AGO,1060.0,Lunda Norte,102.0,Angola,101645.0,Cuilo,19.75,-8.25,AGO,1060.0,Lunda Norte,102.0,Angola,101645.0,Cuilo,both,identical +117761,20.25,-8.25,AGO,1060.0,Lunda Norte,102.0,Angola,101647.0,Lucapa,20.25,-8.25,AGO,1060.0,Lunda Norte,102.0,Angola,101647.0,Lucapa,both,identical +117762,20.75,-8.25,AGO,1060.0,Lunda Norte,102.0,Angola,101647.0,Lucapa,20.75,-8.25,AGO,1060.0,Lunda Norte,102.0,Angola,101647.0,Lucapa,both,identical +117763,21.25,-8.25,AGO,1060.0,Lunda Norte,102.0,Angola,101640.0,Cambulo,21.25,-8.25,AGO,1060.0,Lunda Norte,102.0,Angola,101640.0,Cambulo,both,identical +117764,21.75,-8.25,AGO,1060.0,Lunda Norte,102.0,Angola,101640.0,Cambulo,21.75,-8.25,AGO,1060.0,Lunda Norte,102.0,Angola,101640.0,Cambulo,both,identical +117765,22.25,-8.25,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102410.0,Kapanga,22.25,-8.25,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102410.0,Kapanga,both,identical +117766,22.75,-8.25,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102410.0,Kapanga,22.75,-8.25,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102410.0,Kapanga,both,identical +117767,23.25,-8.25,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102410.0,Kapanga,23.25,-8.25,COD,1225.0,Lualaba,118.0,Democratic Republic of the Congo,102410.0,Kapanga,both,identical +117768,23.75,-8.25,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102311.0,Kaniama,23.75,-8.25,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102311.0,Kaniama,both,identical +117769,24.25,-8.25,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102311.0,Kaniama,24.25,-8.25,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102311.0,Kaniama,both,identical +117770,24.75,-8.25,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102309.0,Kamina,24.75,-8.25,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102309.0,Kamina,both,identical +117771,25.25,-8.25,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102309.0,Kamina,25.25,-8.25,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102309.0,Kamina,both,identical +117772,25.75,-8.25,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102309.0,Kamina,25.75,-8.25,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102309.0,Kamina,both,identical +117773,26.25,-8.25,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102307.0,Bukama,26.25,-8.25,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102307.0,Bukama,both,identical +117774,26.75,-8.25,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102312.0,Malemba-Nkulu,26.75,-8.25,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102312.0,Malemba-Nkulu,both,identical +117775,27.25,-8.25,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102312.0,Malemba-Nkulu,27.25,-8.25,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102312.0,Malemba-Nkulu,both,identical +117776,27.75,-8.25,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102304.0,Mitwaba,27.75,-8.25,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102304.0,Mitwaba,both,identical +117777,28.25,-8.25,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102482.0,Manono,28.25,-8.25,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102482.0,Manono,both,identical +117778,28.75,-8.25,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102305.0,Pweto,28.75,-8.25,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102305.0,Pweto,both,identical +117779,29.25,-8.25,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102305.0,Pweto,29.25,-8.25,COD,1213.0,Haut-Katanga,118.0,Democratic Republic of the Congo,102305.0,Pweto,both,identical +117780,29.75,-8.25,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102483.0,Moba,29.75,-8.25,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102483.0,Moba,both,identical +117781,30.25,-8.25,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102483.0,Moba,30.25,-8.25,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102483.0,Moba,both,identical +117782,30.75,-8.25,TZA,1702.0,Rukwa,166.0,United Republic of Tanzania,900025.0,Waterbody,30.75,-8.25,ZMB,1718.0,Northern,168.0,Zambia,900026.0,Waterbody,both,country_reassignment +117783,31.25,-8.25,TZA,1702.0,Rukwa,166.0,United Republic of Tanzania,106490.0,Kalambo,31.25,-8.25,TZA,1702.0,Rukwa,166.0,United Republic of Tanzania,106490.0,Kalambo,both,identical +117784,31.75,-8.25,TZA,1702.0,Rukwa,166.0,United Republic of Tanzania,106492.0,Sumbawanga,31.75,-8.25,TZA,1702.0,Rukwa,166.0,United Republic of Tanzania,106492.0,Sumbawanga,both,identical +117785,32.25,-8.25,TZA,1702.0,Rukwa,166.0,United Republic of Tanzania,106492.0,Sumbawanga,32.25,-8.25,TZA,1702.0,Rukwa,166.0,United Republic of Tanzania,106492.0,Sumbawanga,both,identical +117786,32.75,-8.25,TZA,1707.0,Songwe,166.0,United Republic of Tanzania,106514.0,Songwe,32.75,-8.25,TZA,1707.0,Songwe,166.0,United Republic of Tanzania,106514.0,Songwe,both,identical +117787,33.25,-8.25,TZA,1695.0,Mbeya,166.0,United Republic of Tanzania,106452.0,Chunya,33.25,-8.25,TZA,1695.0,Mbeya,166.0,United Republic of Tanzania,106452.0,Chunya,both,identical +117788,33.75,-8.25,TZA,1695.0,Mbeya,166.0,United Republic of Tanzania,106454.0,Mbarali,33.75,-8.25,TZA,1695.0,Mbeya,166.0,United Republic of Tanzania,106454.0,Mbarali,both,identical +117789,34.25,-8.25,TZA,1695.0,Mbeya,166.0,United Republic of Tanzania,106454.0,Mbarali,34.25,-8.25,TZA,1695.0,Mbeya,166.0,United Republic of Tanzania,106454.0,Mbarali,both,identical +117790,34.75,-8.25,TZA,1695.0,Mbeya,166.0,United Republic of Tanzania,106454.0,Mbarali,34.75,-8.25,TZA,1695.0,Mbeya,166.0,United Republic of Tanzania,106454.0,Mbarali,both,identical +117791,35.25,-8.25,TZA,1683.0,Iringa,166.0,United Republic of Tanzania,106405.0,Mufindi,35.25,-8.25,TZA,1683.0,Iringa,166.0,United Republic of Tanzania,106405.0,Mufindi,both,identical +117792,35.75,-8.25,TZA,1683.0,Iringa,166.0,United Republic of Tanzania,106405.0,Mufindi,35.75,-8.25,TZA,1683.0,Iringa,166.0,United Republic of Tanzania,106405.0,Mufindi,both,identical +117793,36.25,-8.25,TZA,1697.0,Morogoro,166.0,United Republic of Tanzania,106461.0,Kilombero,36.25,-8.25,TZA,1697.0,Morogoro,166.0,United Republic of Tanzania,106461.0,Kilombero,both,identical +117794,36.75,-8.25,TZA,1697.0,Morogoro,166.0,United Republic of Tanzania,106466.0,Ulanga,36.75,-8.25,TZA,1697.0,Morogoro,166.0,United Republic of Tanzania,106466.0,Ulanga,both,identical +117795,37.25,-8.25,TZA,1697.0,Morogoro,166.0,United Republic of Tanzania,106461.0,Kilombero,37.25,-8.25,TZA,1697.0,Morogoro,166.0,United Republic of Tanzania,106461.0,Kilombero,both,identical +117796,37.75,-8.25,TZA,1692.0,Lindi,166.0,United Republic of Tanzania,106438.0,Liwale,37.75,-8.25,TZA,1692.0,Lindi,166.0,United Republic of Tanzania,106438.0,Liwale,both,identical +117797,38.25,-8.25,TZA,1692.0,Lindi,166.0,United Republic of Tanzania,106438.0,Liwale,38.25,-8.25,TZA,1692.0,Lindi,166.0,United Republic of Tanzania,106438.0,Liwale,both,identical +117798,38.75,-8.25,TZA,1701.0,Pwani,166.0,United Republic of Tanzania,106489.0,Rufiji,38.75,-8.25,TZA,1701.0,Pwani,166.0,United Republic of Tanzania,106489.0,Rufiji,both,identical +117799,39.25,-8.25,TZA,1701.0,Pwani,166.0,United Republic of Tanzania,106489.0,Rufiji,39.25,-8.25,TZA,1701.0,Pwani,166.0,United Republic of Tanzania,106489.0,Rufiji,both,identical +118466,12.75,-7.75,AGO,1066.0,Zaire,102.0,Angola,101699.0,N'Zeto,12.75,-7.75,AGO,1066.0,Zaire,102.0,Angola,101699.0,N'Zeto,both,identical +118467,13.25,-7.75,AGO,1066.0,Zaire,102.0,Angola,101699.0,N'Zeto,13.25,-7.75,AGO,1066.0,Zaire,102.0,Angola,101699.0,N'Zeto,both,identical +118468,13.75,-7.75,AGO,1049.0,Bengo,102.0,Angola,101542.0,Ambriz,13.75,-7.75,AGO,1049.0,Bengo,102.0,Angola,101542.0,Ambriz,both,identical +118469,14.25,-7.75,AGO,1065.0,Uíge,102.0,Angola,101681.0,Ambuíla,14.25,-7.75,AGO,1065.0,Uíge,102.0,Angola,101681.0,Ambuíla,both,identical +118470,14.75,-7.75,AGO,1065.0,Uíge,102.0,Angola,101681.0,Ambuíla,14.75,-7.75,AGO,1065.0,Uíge,102.0,Angola,101681.0,Ambuíla,both,identical +118471,15.25,-7.75,AGO,1065.0,Uíge,102.0,Angola,101690.0,Negage,15.25,-7.75,AGO,1065.0,Uíge,102.0,Angola,101690.0,Negage,both,identical +118472,15.75,-7.75,AGO,1065.0,Uíge,102.0,Angola,101685.0,Cangola (Alto Cauale),15.75,-7.75,AGO,1065.0,Uíge,102.0,Angola,101685.0,Cangola (Alto Cauale),both,identical +118473,16.25,-7.75,AGO,1062.0,Malanje,102.0,Angola,101663.0,Massango,16.25,-7.75,AGO,1062.0,Malanje,102.0,Angola,101663.0,Massango,both,identical +118474,16.75,-7.75,AGO,1062.0,Malanje,102.0,Angola,101663.0,Massango,16.75,-7.75,AGO,1062.0,Malanje,102.0,Angola,101663.0,Massango,both,identical +118475,17.25,-7.75,AGO,1062.0,Malanje,102.0,Angola,101662.0,Marimba,17.25,-7.75,AGO,1062.0,Malanje,102.0,Angola,101662.0,Marimba,both,identical +118476,17.75,-7.75,COD,1222.0,Kwango,118.0,Democratic Republic of the Congo,102390.0,Kasongo-Lunda,17.75,-7.75,COD,1222.0,Kwango,118.0,Democratic Republic of the Congo,102390.0,Kasongo-Lunda,both,identical +118477,18.25,-7.75,COD,1222.0,Kwango,118.0,Democratic Republic of the Congo,102389.0,Kahemba,18.25,-7.75,COD,1222.0,Kwango,118.0,Democratic Republic of the Congo,102389.0,Kahemba,both,identical +118478,18.75,-7.75,COD,1222.0,Kwango,118.0,Democratic Republic of the Congo,102389.0,Kahemba,18.75,-7.75,COD,1222.0,Kwango,118.0,Democratic Republic of the Congo,102389.0,Kahemba,both,identical +118479,19.25,-7.75,COD,1222.0,Kwango,118.0,Democratic Republic of the Congo,102389.0,Kahemba,19.25,-7.75,COD,1222.0,Kwango,118.0,Democratic Republic of the Congo,102389.0,Kahemba,both,identical +118480,19.75,-7.75,AGO,1060.0,Lunda Norte,102.0,Angola,101645.0,Cuilo,19.75,-7.75,AGO,1060.0,Lunda Norte,102.0,Angola,101645.0,Cuilo,both,identical +118481,20.25,-7.75,AGO,1060.0,Lunda Norte,102.0,Angola,101647.0,Lucapa,20.25,-7.75,AGO,1060.0,Lunda Norte,102.0,Angola,101647.0,Lucapa,both,identical +118482,20.75,-7.75,AGO,1060.0,Lunda Norte,102.0,Angola,101643.0,Chitato (Lóvua),20.75,-7.75,AGO,1060.0,Lunda Norte,102.0,Angola,101643.0,Chitato (Lóvua),both,identical +118483,21.25,-7.75,AGO,1060.0,Lunda Norte,102.0,Angola,101640.0,Cambulo,21.25,-7.75,AGO,1060.0,Lunda Norte,102.0,Angola,101640.0,Cambulo,both,identical +118484,21.75,-7.75,AGO,1060.0,Lunda Norte,102.0,Angola,101640.0,Cambulo,21.75,-7.75,AGO,1060.0,Lunda Norte,102.0,Angola,101640.0,Cambulo,both,identical +118485,22.25,-7.75,COD,1218.0,Kasaï-Central,118.0,Democratic Republic of the Congo,102338.0,Luiza,22.25,-7.75,COD,1218.0,Kasaï-Central,118.0,Democratic Republic of the Congo,102338.0,Luiza,both,identical +118486,22.75,-7.75,COD,1218.0,Kasaï-Central,118.0,Democratic Republic of the Congo,102338.0,Luiza,22.75,-7.75,COD,1218.0,Kasaï-Central,118.0,Democratic Republic of the Congo,102338.0,Luiza,both,identical +118487,23.25,-7.75,COD,1224.0,Lomami,118.0,Democratic Republic of the Congo,102406.0,Luilu,23.25,-7.75,COD,1224.0,Lomami,118.0,Democratic Republic of the Congo,102406.0,Luilu,both,identical +118488,23.75,-7.75,COD,1224.0,Lomami,118.0,Democratic Republic of the Congo,102406.0,Luilu,23.75,-7.75,COD,1224.0,Lomami,118.0,Democratic Republic of the Congo,102406.0,Luilu,both,identical +118489,24.25,-7.75,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102311.0,Kaniama,24.25,-7.75,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102311.0,Kaniama,both,identical +118490,24.75,-7.75,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102309.0,Kamina,24.75,-7.75,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102309.0,Kamina,both,identical +118491,25.25,-7.75,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102309.0,Kamina,25.25,-7.75,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102309.0,Kamina,both,identical +118492,25.75,-7.75,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102308.0,Kabongo,25.75,-7.75,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102308.0,Kabongo,both,identical +118493,26.25,-7.75,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102312.0,Malemba-Nkulu,26.25,-7.75,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102312.0,Malemba-Nkulu,both,identical +118494,26.75,-7.75,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102312.0,Malemba-Nkulu,26.75,-7.75,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102312.0,Malemba-Nkulu,both,identical +118495,27.25,-7.75,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102312.0,Malemba-Nkulu,27.25,-7.75,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102312.0,Malemba-Nkulu,both,identical +118496,27.75,-7.75,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102482.0,Manono,27.75,-7.75,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102482.0,Manono,both,identical +118497,28.25,-7.75,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102482.0,Manono,28.25,-7.75,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102482.0,Manono,both,identical +118498,28.75,-7.75,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102483.0,Moba,28.75,-7.75,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102483.0,Moba,both,identical +118499,29.25,-7.75,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102483.0,Moba,29.25,-7.75,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102483.0,Moba,both,identical +118500,29.75,-7.75,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102483.0,Moba,29.75,-7.75,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102483.0,Moba,both,identical +118501,30.25,-7.75,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102483.0,Moba,30.25,-7.75,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102483.0,Moba,both,identical +118502,30.75,-7.75,TZA,1702.0,Rukwa,166.0,United Republic of Tanzania,106491.0,Nkasi,30.75,-7.75,TZA,1702.0,Rukwa,166.0,United Republic of Tanzania,106491.0,Nkasi,both,identical +118503,31.25,-7.75,TZA,1702.0,Rukwa,166.0,United Republic of Tanzania,106491.0,Nkasi,31.25,-7.75,TZA,1702.0,Rukwa,166.0,United Republic of Tanzania,106491.0,Nkasi,both,identical +118504,31.75,-7.75,TZA,1702.0,Rukwa,166.0,United Republic of Tanzania,106492.0,Sumbawanga,31.75,-7.75,TZA,1702.0,Rukwa,166.0,United Republic of Tanzania,106492.0,Sumbawanga,both,identical +118505,32.25,-7.75,TZA,1707.0,Songwe,166.0,United Republic of Tanzania,106514.0,Songwe,32.25,-7.75,TZA,1707.0,Songwe,166.0,United Republic of Tanzania,106514.0,Songwe,both,identical +118506,32.75,-7.75,TZA,1707.0,Songwe,166.0,United Republic of Tanzania,106514.0,Songwe,32.75,-7.75,TZA,1707.0,Songwe,166.0,United Republic of Tanzania,106514.0,Songwe,both,identical +118507,33.25,-7.75,TZA,1695.0,Mbeya,166.0,United Republic of Tanzania,106452.0,Chunya,33.25,-7.75,TZA,1695.0,Mbeya,166.0,United Republic of Tanzania,106452.0,Chunya,both,identical +118508,33.75,-7.75,TZA,1695.0,Mbeya,166.0,United Republic of Tanzania,106452.0,Chunya,33.75,-7.75,TZA,1695.0,Mbeya,166.0,United Republic of Tanzania,106452.0,Chunya,both,identical +118509,34.25,-7.75,TZA,1695.0,Mbeya,166.0,United Republic of Tanzania,106403.0,Iringa,34.25,-7.75,TZA,1683.0,Iringa,166.0,United Republic of Tanzania,106403.0,Iringa,both,admin_reallocation +118510,34.75,-7.75,TZA,1683.0,Iringa,166.0,United Republic of Tanzania,106403.0,Iringa,34.75,-7.75,TZA,1683.0,Iringa,166.0,United Republic of Tanzania,106403.0,Iringa,both,identical +118511,35.25,-7.75,TZA,1683.0,Iringa,166.0,United Republic of Tanzania,106403.0,Iringa,35.25,-7.75,TZA,1683.0,Iringa,166.0,United Republic of Tanzania,106403.0,Iringa,both,identical +118512,35.75,-7.75,TZA,1683.0,Iringa,166.0,United Republic of Tanzania,106403.0,Iringa,35.75,-7.75,TZA,1683.0,Iringa,166.0,United Republic of Tanzania,106403.0,Iringa,both,identical +118513,36.25,-7.75,TZA,1683.0,Iringa,166.0,United Republic of Tanzania,106404.0,Kilolo,36.25,-7.75,TZA,1683.0,Iringa,166.0,United Republic of Tanzania,106404.0,Kilolo,both,identical +118514,36.75,-7.75,TZA,1683.0,Iringa,166.0,United Republic of Tanzania,106404.0,Kilolo,36.75,-7.75,TZA,1683.0,Iringa,166.0,United Republic of Tanzania,106404.0,Kilolo,both,identical +118515,37.25,-7.75,TZA,1697.0,Morogoro,166.0,United Republic of Tanzania,106464.0,Morogoro,37.25,-7.75,TZA,1697.0,Morogoro,166.0,United Republic of Tanzania,106464.0,Morogoro,both,identical +118516,37.75,-7.75,TZA,1697.0,Morogoro,166.0,United Republic of Tanzania,106464.0,Morogoro,37.75,-7.75,TZA,1697.0,Morogoro,166.0,United Republic of Tanzania,106464.0,Morogoro,both,identical +118517,38.25,-7.75,TZA,1701.0,Pwani,166.0,United Republic of Tanzania,106489.0,Rufiji,38.25,-7.75,TZA,1701.0,Pwani,166.0,United Republic of Tanzania,106489.0,Rufiji,both,identical +118518,38.75,-7.75,TZA,1701.0,Pwani,166.0,United Republic of Tanzania,106489.0,Rufiji,38.75,-7.75,TZA,1701.0,Pwani,166.0,United Republic of Tanzania,106489.0,Rufiji,both,identical +118519,39.25,-7.75,TZA,1701.0,Pwani,166.0,United Republic of Tanzania,106485.0,Kibiti,39.25,-7.75,TZA,1701.0,Pwani,166.0,United Republic of Tanzania,106485.0,Kibiti,both,identical +118520,39.75,-7.75,TZA,1701.0,Pwani,166.0,United Republic of Tanzania,106487.0,Mafia,39.75,-7.75,TZA,1701.0,Pwani,166.0,United Republic of Tanzania,106487.0,Mafia,both,identical +119186,12.75,-7.25,AGO,1066.0,Zaire,102.0,Angola,101699.0,N'Zeto,12.75,-7.25,AGO,1066.0,Zaire,102.0,Angola,101699.0,N'Zeto,both,identical +119187,13.25,-7.25,AGO,1066.0,Zaire,102.0,Angola,101699.0,N'Zeto,13.25,-7.25,AGO,1066.0,Zaire,102.0,Angola,101699.0,N'Zeto,both,identical +119188,13.75,-7.25,AGO,1066.0,Zaire,102.0,Angola,101699.0,N'Zeto,13.75,-7.25,AGO,1066.0,Zaire,102.0,Angola,101699.0,N'Zeto,both,identical +119189,14.25,-7.25,AGO,1065.0,Uíge,102.0,Angola,101682.0,Bembe,14.25,-7.25,AGO,1065.0,Uíge,102.0,Angola,101682.0,Bembe,both,identical +119190,14.75,-7.25,AGO,1065.0,Uíge,102.0,Angola,101695.0,Songo,14.75,-7.25,AGO,1065.0,Uíge,102.0,Angola,101695.0,Songo,both,identical +119191,15.25,-7.25,AGO,1065.0,Uíge,102.0,Angola,101684.0,Bungo,15.25,-7.25,AGO,1065.0,Uíge,102.0,Angola,101684.0,Bungo,both,identical +119192,15.75,-7.25,AGO,1065.0,Uíge,102.0,Angola,101694.0,Sanza Pombo,15.75,-7.25,AGO,1065.0,Uíge,102.0,Angola,101694.0,Sanza Pombo,both,identical +119193,16.25,-7.25,AGO,1065.0,Uíge,102.0,Angola,101694.0,Sanza Pombo,16.25,-7.25,AGO,1065.0,Uíge,102.0,Angola,101694.0,Sanza Pombo,both,identical +119194,16.75,-7.25,AGO,1065.0,Uíge,102.0,Angola,101688.0,Milunga,16.75,-7.25,AGO,1065.0,Uíge,102.0,Angola,101688.0,Milunga,both,identical +119195,17.25,-7.25,COD,1222.0,Kwango,118.0,Democratic Republic of the Congo,102390.0,Kasongo-Lunda,17.25,-7.25,COD,1222.0,Kwango,118.0,Democratic Republic of the Congo,102390.0,Kasongo-Lunda,both,identical +119196,17.75,-7.25,COD,1222.0,Kwango,118.0,Democratic Republic of the Congo,102390.0,Kasongo-Lunda,17.75,-7.25,COD,1222.0,Kwango,118.0,Democratic Republic of the Congo,102390.0,Kasongo-Lunda,both,identical +119197,18.25,-7.25,COD,1222.0,Kwango,118.0,Democratic Republic of the Congo,102390.0,Kasongo-Lunda,18.25,-7.25,COD,1222.0,Kwango,118.0,Democratic Republic of the Congo,102390.0,Kasongo-Lunda,both,identical +119198,18.75,-7.25,COD,1222.0,Kwango,118.0,Democratic Republic of the Congo,102389.0,Kahemba,18.75,-7.25,COD,1222.0,Kwango,118.0,Democratic Republic of the Congo,102389.0,Kahemba,both,identical +119199,19.25,-7.25,COD,1222.0,Kwango,118.0,Democratic Republic of the Congo,102389.0,Kahemba,19.25,-7.25,COD,1222.0,Kwango,118.0,Democratic Republic of the Congo,102389.0,Kahemba,both,identical +119200,19.75,-7.25,AGO,1060.0,Lunda Norte,102.0,Angola,101643.0,Chitato (Lóvua),19.75,-7.25,AGO,1060.0,Lunda Norte,102.0,Angola,101643.0,Chitato (Lóvua),both,identical +119201,20.25,-7.25,AGO,1060.0,Lunda Norte,102.0,Angola,101643.0,Chitato (Lóvua),20.25,-7.25,AGO,1060.0,Lunda Norte,102.0,Angola,101643.0,Chitato (Lóvua),both,identical +119202,20.75,-7.25,COD,1217.0,Kasaï,118.0,Democratic Republic of the Congo,102328.0,Kamonia,20.75,-7.25,AGO,1060.0,Lunda Norte,102.0,Angola,101643.0,Chitato (Lóvua),both,country_reassignment +119203,21.25,-7.25,COD,1217.0,Kasaï,118.0,Democratic Republic of the Congo,102328.0,Kamonia,21.25,-7.25,COD,1217.0,Kasaï,118.0,Democratic Republic of the Congo,102328.0,Kamonia,both,identical +119204,21.75,-7.25,COD,1218.0,Kasaï-Central,118.0,Democratic Republic of the Congo,102338.0,Luiza,21.75,-7.25,COD,1218.0,Kasaï-Central,118.0,Democratic Republic of the Congo,102338.0,Luiza,both,identical +119205,22.25,-7.25,COD,1218.0,Kasaï-Central,118.0,Democratic Republic of the Congo,102338.0,Luiza,22.25,-7.25,COD,1218.0,Kasaï-Central,118.0,Democratic Republic of the Congo,102338.0,Luiza,both,identical +119206,22.75,-7.25,COD,1218.0,Kasaï-Central,118.0,Democratic Republic of the Congo,102338.0,Luiza,22.75,-7.25,COD,1218.0,Kasaï-Central,118.0,Democratic Republic of the Congo,102338.0,Luiza,both,identical +119207,23.25,-7.25,COD,1224.0,Lomami,118.0,Democratic Republic of the Congo,102406.0,Luilu,23.25,-7.25,COD,1224.0,Lomami,118.0,Democratic Republic of the Congo,102406.0,Luilu,both,identical +119208,23.75,-7.25,COD,1224.0,Lomami,118.0,Democratic Republic of the Congo,102406.0,Luilu,23.75,-7.25,COD,1224.0,Lomami,118.0,Democratic Republic of the Congo,102406.0,Luilu,both,identical +119209,24.25,-7.25,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102311.0,Kaniama,24.25,-7.25,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102311.0,Kaniama,both,identical +119210,24.75,-7.25,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102309.0,Kamina,24.75,-7.25,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102309.0,Kamina,both,identical +119211,25.25,-7.25,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102308.0,Kabongo,25.25,-7.25,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102308.0,Kabongo,both,identical +119212,25.75,-7.25,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102308.0,Kabongo,25.75,-7.25,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102308.0,Kabongo,both,identical +119213,26.25,-7.25,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102308.0,Kabongo,26.25,-7.25,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102308.0,Kabongo,both,identical +119214,26.75,-7.25,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102482.0,Manono,26.75,-7.25,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102482.0,Manono,both,identical +119215,27.25,-7.25,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102482.0,Manono,27.25,-7.25,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102482.0,Manono,both,identical +119216,27.75,-7.25,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102482.0,Manono,27.75,-7.25,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102482.0,Manono,both,identical +119217,28.25,-7.25,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102482.0,Manono,28.25,-7.25,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102482.0,Manono,both,identical +119218,28.75,-7.25,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102483.0,Moba,28.75,-7.25,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102483.0,Moba,both,identical +119219,29.25,-7.25,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102483.0,Moba,29.25,-7.25,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102483.0,Moba,both,identical +119220,29.75,-7.25,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102483.0,Moba,29.75,-7.25,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102483.0,Moba,both,identical +119221,30.25,-7.25,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,900004.0,Waterbody,30.25,-7.25,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,900004.0,Waterbody,both,identical +119222,30.75,-7.25,TZA,1702.0,Rukwa,166.0,United Republic of Tanzania,106491.0,Nkasi,30.75,-7.25,TZA,1702.0,Rukwa,166.0,United Republic of Tanzania,106491.0,Nkasi,both,identical +119223,31.25,-7.25,TZA,1687.0,Katavi,166.0,United Republic of Tanzania,106417.0,Mlele,31.25,-7.25,TZA,1687.0,Katavi,166.0,United Republic of Tanzania,106417.0,Mlele,both,identical +119224,31.75,-7.25,TZA,1687.0,Katavi,166.0,United Republic of Tanzania,106417.0,Mlele,31.75,-7.25,TZA,1687.0,Katavi,166.0,United Republic of Tanzania,106417.0,Mlele,both,identical +119225,32.25,-7.25,TZA,1687.0,Katavi,166.0,United Republic of Tanzania,106417.0,Mlele,32.25,-7.25,TZA,1687.0,Katavi,166.0,United Republic of Tanzania,106417.0,Mlele,both,identical +119226,32.75,-7.25,TZA,1707.0,Songwe,166.0,United Republic of Tanzania,106514.0,Songwe,32.75,-7.25,TZA,1707.0,Songwe,166.0,United Republic of Tanzania,106514.0,Songwe,both,identical +119227,33.25,-7.25,TZA,1695.0,Mbeya,166.0,United Republic of Tanzania,106452.0,Chunya,33.25,-7.25,TZA,1695.0,Mbeya,166.0,United Republic of Tanzania,106452.0,Chunya,both,identical +119228,33.75,-7.25,TZA,1695.0,Mbeya,166.0,United Republic of Tanzania,106452.0,Chunya,33.75,-7.25,TZA,1695.0,Mbeya,166.0,United Republic of Tanzania,106452.0,Chunya,both,identical +119229,34.25,-7.25,TZA,1706.0,Singida,166.0,United Republic of Tanzania,106508.0,Manyoni,34.25,-7.25,TZA,1706.0,Singida,166.0,United Republic of Tanzania,106508.0,Manyoni,both,identical +119230,34.75,-7.25,TZA,1683.0,Iringa,166.0,United Republic of Tanzania,106403.0,Iringa,34.75,-7.25,TZA,1683.0,Iringa,166.0,United Republic of Tanzania,106403.0,Iringa,both,identical +119231,35.25,-7.25,TZA,1683.0,Iringa,166.0,United Republic of Tanzania,106403.0,Iringa,35.25,-7.25,TZA,1683.0,Iringa,166.0,United Republic of Tanzania,106403.0,Iringa,both,identical +119232,35.75,-7.25,TZA,1683.0,Iringa,166.0,United Republic of Tanzania,106403.0,Iringa,35.75,-7.25,TZA,1683.0,Iringa,166.0,United Republic of Tanzania,106403.0,Iringa,both,identical +119233,36.25,-7.25,TZA,1683.0,Iringa,166.0,United Republic of Tanzania,106397.0,Mpwapwa,36.25,-7.25,TZA,1681.0,Dodoma,166.0,United Republic of Tanzania,106397.0,Mpwapwa,both,admin_reallocation +119234,36.75,-7.25,TZA,1697.0,Morogoro,166.0,United Republic of Tanzania,106462.0,Kilosa,36.75,-7.25,TZA,1697.0,Morogoro,166.0,United Republic of Tanzania,106462.0,Kilosa,both,identical +119235,37.25,-7.25,TZA,1697.0,Morogoro,166.0,United Republic of Tanzania,106462.0,Kilosa,37.25,-7.25,TZA,1697.0,Morogoro,166.0,United Republic of Tanzania,106462.0,Kilosa,both,identical +119236,37.75,-7.25,TZA,1697.0,Morogoro,166.0,United Republic of Tanzania,106464.0,Morogoro,37.75,-7.25,TZA,1697.0,Morogoro,166.0,United Republic of Tanzania,106464.0,Morogoro,both,identical +119237,38.25,-7.25,TZA,1697.0,Morogoro,166.0,United Republic of Tanzania,106464.0,Morogoro,38.25,-7.25,TZA,1697.0,Morogoro,166.0,United Republic of Tanzania,106464.0,Morogoro,both,identical +119238,38.75,-7.25,TZA,1701.0,Pwani,166.0,United Republic of Tanzania,106486.0,Kisarawe,38.75,-7.25,TZA,1701.0,Pwani,166.0,United Republic of Tanzania,106486.0,Kisarawe,both,identical +119239,39.25,-7.25,TZA,1701.0,Pwani,166.0,United Republic of Tanzania,106488.0,Mkuranga,39.25,-7.25,TZA,1701.0,Pwani,166.0,United Republic of Tanzania,106488.0,Mkuranga,both,identical +119240,39.75,-7.25,TZA,1680.0,Dar Es Salaam,166.0,United Republic of Tanzania,106387.0,Kigamboni,39.75,-7.25,TZA,1680.0,Dar Es Salaam,166.0,United Republic of Tanzania,106387.0,Kigamboni,both,identical +119905,12.25,-6.75,AGO,1066.0,Zaire,102.0,Angola,101701.0,Soyo,12.25,-6.75,AGO,1066.0,Zaire,102.0,Angola,101701.0,Soyo,both,identical +119906,12.75,-6.75,AGO,1066.0,Zaire,102.0,Angola,101702.0,Tomboco,12.75,-6.75,AGO,1066.0,Zaire,102.0,Angola,101702.0,Tomboco,both,identical +119907,13.25,-6.75,AGO,1066.0,Zaire,102.0,Angola,101702.0,Tomboco,13.25,-6.75,AGO,1066.0,Zaire,102.0,Angola,101702.0,Tomboco,both,identical +119908,13.75,-6.75,AGO,1066.0,Zaire,102.0,Angola,101702.0,Tomboco,13.75,-6.75,AGO,1066.0,Zaire,102.0,Angola,101702.0,Tomboco,both,identical +119909,14.25,-6.75,AGO,1066.0,Zaire,102.0,Angola,101698.0,Mbanza Congo,14.25,-6.75,AGO,1066.0,Zaire,102.0,Angola,101698.0,Mbanza Congo,both,identical +119910,14.75,-6.75,AGO,1065.0,Uíge,102.0,Angola,101686.0,Damba,14.75,-6.75,AGO,1065.0,Uíge,102.0,Angola,101686.0,Damba,both,identical +119911,15.25,-6.75,AGO,1065.0,Uíge,102.0,Angola,101686.0,Damba,15.25,-6.75,AGO,1065.0,Uíge,102.0,Angola,101686.0,Damba,both,identical +119912,15.75,-6.75,AGO,1065.0,Uíge,102.0,Angola,101683.0,Buengas,15.75,-6.75,AGO,1065.0,Uíge,102.0,Angola,101683.0,Buengas,both,identical +119913,16.25,-6.75,AGO,1065.0,Uíge,102.0,Angola,101688.0,Milunga,16.25,-6.75,AGO,1065.0,Uíge,102.0,Angola,101688.0,Milunga,both,identical +119914,16.75,-6.75,AGO,1065.0,Uíge,102.0,Angola,101688.0,Milunga,16.75,-6.75,AGO,1065.0,Uíge,102.0,Angola,101688.0,Milunga,both,identical +119915,17.25,-6.75,COD,1222.0,Kwango,118.0,Democratic Republic of the Congo,102390.0,Kasongo-Lunda,17.25,-6.75,COD,1222.0,Kwango,118.0,Democratic Republic of the Congo,102390.0,Kasongo-Lunda,both,identical +119916,17.75,-6.75,COD,1222.0,Kwango,118.0,Democratic Republic of the Congo,102390.0,Kasongo-Lunda,17.75,-6.75,COD,1222.0,Kwango,118.0,Democratic Republic of the Congo,102390.0,Kasongo-Lunda,both,identical +119917,18.25,-6.75,COD,1222.0,Kwango,118.0,Democratic Republic of the Congo,102388.0,Feshi,18.25,-6.75,COD,1222.0,Kwango,118.0,Democratic Republic of the Congo,102388.0,Feshi,both,identical +119918,18.75,-6.75,COD,1222.0,Kwango,118.0,Democratic Republic of the Congo,102388.0,Feshi,18.75,-6.75,COD,1222.0,Kwango,118.0,Democratic Republic of the Congo,102388.0,Feshi,both,identical +119919,19.25,-6.75,COD,1222.0,Kwango,118.0,Democratic Republic of the Congo,102389.0,Kahemba,19.25,-6.75,COD,1222.0,Kwango,118.0,Democratic Republic of the Congo,102389.0,Kahemba,both,identical +119920,19.75,-6.75,COD,1222.0,Kwango,118.0,Democratic Republic of the Congo,102389.0,Kahemba,19.75,-6.75,COD,1222.0,Kwango,118.0,Democratic Republic of the Congo,102389.0,Kahemba,both,identical +119921,20.25,-6.75,COD,1217.0,Kasaï,118.0,Democratic Republic of the Congo,102328.0,Kamonia,20.25,-6.75,COD,1217.0,Kasaï,118.0,Democratic Republic of the Congo,102328.0,Kamonia,both,identical +119922,20.75,-6.75,COD,1217.0,Kasaï,118.0,Democratic Republic of the Congo,102328.0,Kamonia,20.75,-6.75,COD,1217.0,Kasaï,118.0,Democratic Republic of the Congo,102328.0,Kamonia,both,identical +119923,21.25,-6.75,COD,1217.0,Kasaï,118.0,Democratic Republic of the Congo,102328.0,Kamonia,21.25,-6.75,COD,1217.0,Kasaï,118.0,Democratic Republic of the Congo,102328.0,Kamonia,both,identical +119924,21.75,-6.75,COD,1218.0,Kasaï-Central,118.0,Democratic Republic of the Congo,102337.0,Kazumba,21.75,-6.75,COD,1218.0,Kasaï-Central,118.0,Democratic Republic of the Congo,102337.0,Kazumba,both,identical +119925,22.25,-6.75,COD,1218.0,Kasaï-Central,118.0,Democratic Republic of the Congo,102337.0,Kazumba,22.25,-6.75,COD,1218.0,Kasaï-Central,118.0,Democratic Republic of the Congo,102337.0,Kazumba,both,identical +119926,22.75,-6.75,COD,1218.0,Kasaï-Central,118.0,Democratic Republic of the Congo,102334.0,Dibaya,22.75,-6.75,COD,1218.0,Kasaï-Central,118.0,Democratic Republic of the Congo,102334.0,Dibaya,both,identical +119927,23.25,-6.75,COD,1224.0,Lomami,118.0,Democratic Republic of the Congo,102404.0,Kamiji,23.25,-6.75,COD,1224.0,Lomami,118.0,Democratic Republic of the Congo,102404.0,Kamiji,both,identical +119928,23.75,-6.75,COD,1224.0,Lomami,118.0,Democratic Republic of the Congo,102406.0,Luilu,23.75,-6.75,COD,1224.0,Lomami,118.0,Democratic Republic of the Congo,102406.0,Luilu,both,identical +119929,24.25,-6.75,COD,1224.0,Lomami,118.0,Democratic Republic of the Congo,102408.0,Ngandajika,24.25,-6.75,COD,1224.0,Lomami,118.0,Democratic Republic of the Congo,102408.0,Ngandajika,both,identical +119930,24.75,-6.75,COD,1224.0,Lomami,118.0,Democratic Republic of the Congo,102408.0,Ngandajika,24.75,-6.75,COD,1224.0,Lomami,118.0,Democratic Republic of the Congo,102408.0,Ngandajika,both,identical +119931,25.25,-6.75,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102308.0,Kabongo,25.25,-6.75,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102308.0,Kabongo,both,identical +119932,25.75,-6.75,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102308.0,Kabongo,25.75,-6.75,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102308.0,Kabongo,both,identical +119933,26.25,-6.75,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102482.0,Manono,26.25,-6.75,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102482.0,Manono,both,identical +119934,26.75,-6.75,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102482.0,Manono,26.75,-6.75,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102482.0,Manono,both,identical +119935,27.25,-6.75,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102482.0,Manono,27.25,-6.75,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102482.0,Manono,both,identical +119936,27.75,-6.75,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102482.0,Manono,27.75,-6.75,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102482.0,Manono,both,identical +119937,28.25,-6.75,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102482.0,Manono,28.25,-6.75,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102482.0,Manono,both,identical +119938,28.75,-6.75,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102479.0,Kalemie,28.75,-6.75,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102479.0,Kalemie,both,identical +119939,29.25,-6.75,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102483.0,Moba,29.25,-6.75,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102483.0,Moba,both,identical +119940,29.75,-6.75,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,900004.0,Waterbody,29.75,-6.75,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,900004.0,Waterbody,both,identical +119941,30.25,-6.75,TZA,1687.0,Katavi,166.0,United Republic of Tanzania,900019.0,Waterbody,30.25,-6.75,TZA,1687.0,Katavi,166.0,United Republic of Tanzania,900019.0,Waterbody,both,identical +119942,30.75,-6.75,TZA,1687.0,Katavi,166.0,United Republic of Tanzania,106419.0,Tanganyika,30.75,-6.75,TZA,1687.0,Katavi,166.0,United Republic of Tanzania,106419.0,Tanganyika,both,identical +119943,31.25,-6.75,TZA,1687.0,Katavi,166.0,United Republic of Tanzania,106418.0,Mpanda,31.25,-6.75,TZA,1687.0,Katavi,166.0,United Republic of Tanzania,106418.0,Mpanda,both,identical +119944,31.75,-6.75,TZA,1687.0,Katavi,166.0,United Republic of Tanzania,106417.0,Mlele,31.75,-6.75,TZA,1687.0,Katavi,166.0,United Republic of Tanzania,106417.0,Mlele,both,identical +119945,32.25,-6.75,TZA,1687.0,Katavi,166.0,United Republic of Tanzania,106417.0,Mlele,32.25,-6.75,TZA,1687.0,Katavi,166.0,United Republic of Tanzania,106417.0,Mlele,both,identical +119946,32.75,-6.75,TZA,1687.0,Katavi,166.0,United Republic of Tanzania,106417.0,Mlele,32.75,-6.75,TZA,1687.0,Katavi,166.0,United Republic of Tanzania,106417.0,Mlele,both,identical +119947,33.25,-6.75,TZA,1708.0,Tabora,166.0,United Republic of Tanzania,106518.0,Sikonge,33.25,-6.75,TZA,1708.0,Tabora,166.0,United Republic of Tanzania,106518.0,Sikonge,both,identical +119948,33.75,-6.75,TZA,1706.0,Singida,166.0,United Republic of Tanzania,106508.0,Manyoni,33.75,-6.75,TZA,1706.0,Singida,166.0,United Republic of Tanzania,106508.0,Manyoni,both,identical +119949,34.25,-6.75,TZA,1706.0,Singida,166.0,United Republic of Tanzania,106508.0,Manyoni,34.25,-6.75,TZA,1706.0,Singida,166.0,United Republic of Tanzania,106508.0,Manyoni,both,identical +119950,34.75,-6.75,TZA,1706.0,Singida,166.0,United Republic of Tanzania,106508.0,Manyoni,34.75,-6.75,TZA,1706.0,Singida,166.0,United Republic of Tanzania,106508.0,Manyoni,both,identical +119951,35.25,-6.75,TZA,1681.0,Dodoma,166.0,United Republic of Tanzania,106392.0,Chamwino,35.25,-6.75,TZA,1681.0,Dodoma,166.0,United Republic of Tanzania,106392.0,Chamwino,both,identical +119952,35.75,-6.75,TZA,1681.0,Dodoma,166.0,United Republic of Tanzania,106392.0,Chamwino,35.75,-6.75,TZA,1681.0,Dodoma,166.0,United Republic of Tanzania,106392.0,Chamwino,both,identical +119953,36.25,-6.75,TZA,1681.0,Dodoma,166.0,United Republic of Tanzania,106397.0,Mpwapwa,36.25,-6.75,TZA,1681.0,Dodoma,166.0,United Republic of Tanzania,106397.0,Mpwapwa,both,identical +119954,36.75,-6.75,TZA,1697.0,Morogoro,166.0,United Republic of Tanzania,106462.0,Kilosa,36.75,-6.75,TZA,1697.0,Morogoro,166.0,United Republic of Tanzania,106462.0,Kilosa,both,identical +119955,37.25,-6.75,TZA,1697.0,Morogoro,166.0,United Republic of Tanzania,106462.0,Kilosa,37.25,-6.75,TZA,1697.0,Morogoro,166.0,United Republic of Tanzania,106462.0,Kilosa,both,identical +119956,37.75,-6.75,TZA,1697.0,Morogoro,166.0,United Republic of Tanzania,106464.0,Morogoro,37.75,-6.75,TZA,1697.0,Morogoro,166.0,United Republic of Tanzania,106464.0,Morogoro,both,identical +119957,38.25,-6.75,TZA,1701.0,Pwani,166.0,United Republic of Tanzania,106464.0,Morogoro,38.25,-6.75,TZA,1697.0,Morogoro,166.0,United Republic of Tanzania,106464.0,Morogoro,both,admin_reallocation +119958,38.75,-6.75,TZA,1701.0,Pwani,166.0,United Republic of Tanzania,106484.0,Kibaha,38.75,-6.75,TZA,1701.0,Pwani,166.0,United Republic of Tanzania,106484.0,Kibaha,both,identical +119959,39.25,-6.75,TZA,1680.0,Dar Es Salaam,166.0,United Republic of Tanzania,106387.0,Kigamboni,39.25,-6.75,TZA,1680.0,Dar Es Salaam,166.0,United Republic of Tanzania,106387.0,Kigamboni,both,identical +119960,39.75,-6.75,TZA,1680.0,Dar Es Salaam,166.0,United Republic of Tanzania,106387.0,Kigamboni,39.75,-6.75,TZA,1680.0,Dar Es Salaam,166.0,United Republic of Tanzania,106387.0,Kigamboni,both,identical +120625,12.25,-6.25,AGO,1066.0,Zaire,102.0,Angola,101701.0,Soyo,12.25,-6.25,AGO,1066.0,Zaire,102.0,Angola,101701.0,Soyo,both,identical +120626,12.75,-6.25,AGO,1066.0,Zaire,102.0,Angola,101701.0,Soyo,12.75,-6.25,AGO,1066.0,Zaire,102.0,Angola,101701.0,Soyo,both,identical +120627,13.25,-6.25,AGO,1066.0,Zaire,102.0,Angola,101700.0,Nóqui,13.25,-6.25,AGO,1066.0,Zaire,102.0,Angola,101700.0,Nóqui,both,identical +120628,13.75,-6.25,AGO,1066.0,Zaire,102.0,Angola,101700.0,Nóqui,13.75,-6.25,AGO,1066.0,Zaire,102.0,Angola,101700.0,Nóqui,both,identical +120629,14.25,-6.25,AGO,1066.0,Zaire,102.0,Angola,101698.0,Mbanza Congo,14.25,-6.25,AGO,1066.0,Zaire,102.0,Angola,101698.0,Mbanza Congo,both,identical +120630,14.75,-6.25,AGO,1066.0,Zaire,102.0,Angola,101697.0,Cuimba,14.75,-6.25,AGO,1066.0,Zaire,102.0,Angola,101697.0,Cuimba,both,identical +120631,15.25,-6.25,AGO,1065.0,Uíge,102.0,Angola,101687.0,Maquela Do Zombo,15.25,-6.25,AGO,1065.0,Uíge,102.0,Angola,101687.0,Maquela Do Zombo,both,identical +120632,15.75,-6.25,AGO,1065.0,Uíge,102.0,Angola,101687.0,Maquela Do Zombo,15.75,-6.25,AGO,1065.0,Uíge,102.0,Angola,101687.0,Maquela Do Zombo,both,identical +120633,16.25,-6.25,AGO,1065.0,Uíge,102.0,Angola,101692.0,Quimbele,16.25,-6.25,AGO,1065.0,Uíge,102.0,Angola,101692.0,Quimbele,both,identical +120634,16.75,-6.25,COD,1222.0,Kwango,118.0,Democratic Republic of the Congo,102390.0,Kasongo-Lunda,16.75,-6.25,COD,1222.0,Kwango,118.0,Democratic Republic of the Congo,102390.0,Kasongo-Lunda,both,identical +120635,17.25,-6.25,COD,1222.0,Kwango,118.0,Democratic Republic of the Congo,102390.0,Kasongo-Lunda,17.25,-6.25,COD,1222.0,Kwango,118.0,Democratic Republic of the Congo,102390.0,Kasongo-Lunda,both,identical +120636,17.75,-6.25,COD,1222.0,Kwango,118.0,Democratic Republic of the Congo,102388.0,Feshi,17.75,-6.25,COD,1222.0,Kwango,118.0,Democratic Republic of the Congo,102388.0,Feshi,both,identical +120637,18.25,-6.25,COD,1222.0,Kwango,118.0,Democratic Republic of the Congo,102388.0,Feshi,18.25,-6.25,COD,1222.0,Kwango,118.0,Democratic Republic of the Congo,102388.0,Feshi,both,identical +120638,18.75,-6.25,COD,1222.0,Kwango,118.0,Democratic Republic of the Congo,102388.0,Feshi,18.75,-6.25,COD,1222.0,Kwango,118.0,Democratic Republic of the Congo,102388.0,Feshi,both,identical +120639,19.25,-6.25,COD,1222.0,Kwango,118.0,Democratic Republic of the Congo,102398.0,Gungu,19.25,-6.25,COD,1223.0,Kwilu,118.0,Democratic Republic of the Congo,102398.0,Gungu,both,admin_reallocation +120640,19.75,-6.25,COD,1217.0,Kasaï,118.0,Democratic Republic of the Congo,102328.0,Kamonia,19.75,-6.25,COD,1217.0,Kasaï,118.0,Democratic Republic of the Congo,102328.0,Kamonia,both,identical +120641,20.25,-6.25,COD,1217.0,Kasaï,118.0,Democratic Republic of the Congo,102328.0,Kamonia,20.25,-6.25,COD,1217.0,Kasaï,118.0,Democratic Republic of the Congo,102328.0,Kamonia,both,identical +120642,20.75,-6.25,COD,1217.0,Kasaï,118.0,Democratic Republic of the Congo,102328.0,Kamonia,20.75,-6.25,COD,1217.0,Kasaï,118.0,Democratic Republic of the Congo,102328.0,Kamonia,both,identical +120643,21.25,-6.25,COD,1217.0,Kasaï,118.0,Democratic Republic of the Congo,102328.0,Kamonia,21.25,-6.25,COD,1217.0,Kasaï,118.0,Democratic Republic of the Congo,102328.0,Kamonia,both,identical +120644,21.75,-6.25,COD,1218.0,Kasaï-Central,118.0,Democratic Republic of the Congo,102337.0,Kazumba,21.75,-6.25,COD,1218.0,Kasaï-Central,118.0,Democratic Republic of the Congo,102337.0,Kazumba,both,identical +120645,22.25,-6.25,COD,1218.0,Kasaï-Central,118.0,Democratic Republic of the Congo,102337.0,Kazumba,22.25,-6.25,COD,1218.0,Kasaï-Central,118.0,Democratic Republic of the Congo,102337.0,Kazumba,both,identical +120646,22.75,-6.25,COD,1218.0,Kasaï-Central,118.0,Democratic Republic of the Congo,102334.0,Dibaya,22.75,-6.25,COD,1218.0,Kasaï-Central,118.0,Democratic Republic of the Congo,102334.0,Dibaya,both,identical +120647,23.25,-6.25,COD,1219.0,Kasaï-Oriental,118.0,Democratic Republic of the Congo,102344.0,Miabi,23.25,-6.25,COD,1219.0,Kasaï-Oriental,118.0,Democratic Republic of the Congo,102344.0,Miabi,both,identical +120648,23.75,-6.25,COD,1219.0,Kasaï-Oriental,118.0,Democratic Republic of the Congo,102341.0,Katanda,23.75,-6.25,COD,1219.0,Kasaï-Oriental,118.0,Democratic Republic of the Congo,102341.0,Katanda,both,identical +120649,24.25,-6.25,COD,1224.0,Lomami,118.0,Democratic Republic of the Congo,102402.0,Kabinda,24.25,-6.25,COD,1224.0,Lomami,118.0,Democratic Republic of the Congo,102402.0,Kabinda,both,identical +120650,24.75,-6.25,COD,1224.0,Lomami,118.0,Democratic Republic of the Congo,102402.0,Kabinda,24.75,-6.25,COD,1224.0,Lomami,118.0,Democratic Republic of the Congo,102402.0,Kabinda,both,identical +120651,25.25,-6.25,COD,1224.0,Lomami,118.0,Democratic Republic of the Congo,102402.0,Kabinda,25.25,-6.25,COD,1224.0,Lomami,118.0,Democratic Republic of the Congo,102402.0,Kabinda,both,identical +120652,25.75,-6.25,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102308.0,Kabongo,25.75,-6.25,COD,1214.0,Haut-Lomami,118.0,Democratic Republic of the Congo,102308.0,Kabongo,both,identical +120653,26.25,-6.25,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102478.0,Kabalo,26.25,-6.25,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102478.0,Kabalo,both,identical +120654,26.75,-6.25,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102478.0,Kabalo,26.75,-6.25,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102478.0,Kabalo,both,identical +120655,27.25,-6.25,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102478.0,Kabalo,27.25,-6.25,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102478.0,Kabalo,both,identical +120656,27.75,-6.25,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102478.0,Kabalo,27.75,-6.25,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102478.0,Kabalo,both,identical +120657,28.25,-6.25,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102484.0,Nyunzu,28.25,-6.25,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102484.0,Nyunzu,both,identical +120658,28.75,-6.25,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102479.0,Kalemie,28.75,-6.25,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102479.0,Kalemie,both,identical +120659,29.25,-6.25,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102479.0,Kalemie,29.25,-6.25,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102479.0,Kalemie,both,identical +120660,29.75,-6.25,TZA,1688.0,Kigoma,166.0,United Republic of Tanzania,900020.0,Waterbody,29.75,-6.25,TZA,1688.0,Kigoma,166.0,United Republic of Tanzania,900020.0,Waterbody,both,identical +120661,30.25,-6.25,TZA,1688.0,Kigoma,166.0,United Republic of Tanzania,106425.0,Uvinza,30.25,-6.25,TZA,1688.0,Kigoma,166.0,United Republic of Tanzania,106425.0,Uvinza,both,identical +120662,30.75,-6.25,TZA,1687.0,Katavi,166.0,United Republic of Tanzania,106419.0,Tanganyika,30.75,-6.25,TZA,1687.0,Katavi,166.0,United Republic of Tanzania,106419.0,Tanganyika,both,identical +120663,31.25,-6.25,TZA,1687.0,Katavi,166.0,United Republic of Tanzania,106418.0,Mpanda,31.25,-6.25,TZA,1687.0,Katavi,166.0,United Republic of Tanzania,106418.0,Mpanda,both,identical +120664,31.75,-6.25,TZA,1687.0,Katavi,166.0,United Republic of Tanzania,106417.0,Mlele,31.75,-6.25,TZA,1687.0,Katavi,166.0,United Republic of Tanzania,106417.0,Mlele,both,identical +120665,32.25,-6.25,TZA,1687.0,Katavi,166.0,United Republic of Tanzania,106417.0,Mlele,32.25,-6.25,TZA,1687.0,Katavi,166.0,United Republic of Tanzania,106417.0,Mlele,both,identical +120666,32.75,-6.25,TZA,1708.0,Tabora,166.0,United Republic of Tanzania,106518.0,Sikonge,32.75,-6.25,TZA,1708.0,Tabora,166.0,United Republic of Tanzania,106518.0,Sikonge,both,identical +120667,33.25,-6.25,TZA,1708.0,Tabora,166.0,United Republic of Tanzania,106518.0,Sikonge,33.25,-6.25,TZA,1708.0,Tabora,166.0,United Republic of Tanzania,106518.0,Sikonge,both,identical +120668,33.75,-6.25,TZA,1708.0,Tabora,166.0,United Republic of Tanzania,106518.0,Sikonge,33.75,-6.25,TZA,1708.0,Tabora,166.0,United Republic of Tanzania,106518.0,Sikonge,both,identical +120669,34.25,-6.25,TZA,1706.0,Singida,166.0,United Republic of Tanzania,106508.0,Manyoni,34.25,-6.25,TZA,1706.0,Singida,166.0,United Republic of Tanzania,106508.0,Manyoni,both,identical +120670,34.75,-6.25,TZA,1706.0,Singida,166.0,United Republic of Tanzania,106508.0,Manyoni,34.75,-6.25,TZA,1706.0,Singida,166.0,United Republic of Tanzania,106508.0,Manyoni,both,identical +120671,35.25,-6.25,TZA,1681.0,Dodoma,166.0,United Republic of Tanzania,106391.0,Bahi,35.25,-6.25,TZA,1681.0,Dodoma,166.0,United Republic of Tanzania,106391.0,Bahi,both,identical +120672,35.75,-6.25,TZA,1681.0,Dodoma,166.0,United Republic of Tanzania,106394.0,Dodoma,35.75,-6.25,TZA,1681.0,Dodoma,166.0,United Republic of Tanzania,106394.0,Dodoma,both,identical +120673,36.25,-6.25,TZA,1681.0,Dodoma,166.0,United Republic of Tanzania,106392.0,Chamwino,36.25,-6.25,TZA,1681.0,Dodoma,166.0,United Republic of Tanzania,106392.0,Chamwino,both,identical +120674,36.75,-6.25,TZA,1681.0,Dodoma,166.0,United Republic of Tanzania,106396.0,Kongwa,36.75,-6.25,TZA,1681.0,Dodoma,166.0,United Republic of Tanzania,106396.0,Kongwa,both,identical +120675,37.25,-6.25,TZA,1697.0,Morogoro,166.0,United Republic of Tanzania,106462.0,Kilosa,37.25,-6.25,TZA,1697.0,Morogoro,166.0,United Republic of Tanzania,106462.0,Kilosa,both,identical +120676,37.75,-6.25,TZA,1697.0,Morogoro,166.0,United Republic of Tanzania,106465.0,Mvomero,37.75,-6.25,TZA,1697.0,Morogoro,166.0,United Republic of Tanzania,106465.0,Mvomero,both,identical +120677,38.25,-6.25,TZA,1701.0,Pwani,166.0,United Republic of Tanzania,106483.0,Bagamoyo,38.25,-6.25,TZA,1701.0,Pwani,166.0,United Republic of Tanzania,106483.0,Bagamoyo,both,identical +120678,38.75,-6.25,TZA,1701.0,Pwani,166.0,United Republic of Tanzania,106483.0,Bagamoyo,38.75,-6.25,TZA,1701.0,Pwani,166.0,United Republic of Tanzania,106483.0,Bagamoyo,both,identical +120679,39.25,-6.25,TZA,1691.0,Kusini Unguja,166.0,United Republic of Tanzania,106434.0,Kati,39.25,-6.25,TZA,1691.0,Kusini Unguja,166.0,United Republic of Tanzania,106434.0,Kati,both,identical +120680,39.75,-6.25,TZA,1691.0,Kusini Unguja,166.0,United Republic of Tanzania,106435.0,Kusini,39.75,-6.25,TZA,1691.0,Kusini Unguja,166.0,United Republic of Tanzania,106435.0,Kusini,both,identical +121345,12.25,-5.75,AGO,1052.0,Cabinda,102.0,Angola,101569.0,Cabinda,12.25,-5.75,AGO,1052.0,Cabinda,102.0,Angola,101569.0,Cabinda,both,identical +121346,12.75,-5.75,COD,1221.0,Kongo Central,118.0,Democratic Republic of the Congo,102382.0,Muanda,12.75,-5.75,COD,1221.0,Kongo Central,118.0,Democratic Republic of the Congo,102382.0,Muanda,both,identical +121347,13.25,-5.75,COD,1221.0,Kongo Central,118.0,Democratic Republic of the Congo,102382.0,Muanda,13.25,-5.75,COD,1221.0,Kongo Central,118.0,Democratic Republic of the Congo,102382.0,Muanda,both,identical +121348,13.75,-5.75,COD,1221.0,Kongo Central,118.0,Democratic Republic of the Congo,102385.0,Songololo,13.75,-5.75,COD,1221.0,Kongo Central,118.0,Democratic Republic of the Congo,102385.0,Songololo,both,identical +121349,14.25,-5.75,COD,1221.0,Kongo Central,118.0,Democratic Republic of the Congo,102385.0,Songololo,14.25,-5.75,COD,1221.0,Kongo Central,118.0,Democratic Republic of the Congo,102385.0,Songololo,both,identical +121350,14.75,-5.75,COD,1221.0,Kongo Central,118.0,Democratic Republic of the Congo,102380.0,Mbanza-Ngungu,14.75,-5.75,COD,1221.0,Kongo Central,118.0,Democratic Republic of the Congo,102380.0,Mbanza-Ngungu,both,identical +121351,15.25,-5.75,COD,1221.0,Kongo Central,118.0,Democratic Republic of the Congo,102378.0,Madimba,15.25,-5.75,COD,1221.0,Kongo Central,118.0,Democratic Republic of the Congo,102378.0,Madimba,both,identical +121352,15.75,-5.75,COD,1221.0,Kongo Central,118.0,Democratic Republic of the Congo,102378.0,Madimba,15.75,-5.75,COD,1221.0,Kongo Central,118.0,Democratic Republic of the Congo,102378.0,Madimba,both,identical +121353,16.25,-5.75,COD,1222.0,Kwango,118.0,Democratic Republic of the Congo,102393.0,Popokabaka,16.25,-5.75,COD,1222.0,Kwango,118.0,Democratic Republic of the Congo,102393.0,Popokabaka,both,identical +121354,16.75,-5.75,COD,1222.0,Kwango,118.0,Democratic Republic of the Congo,102393.0,Popokabaka,16.75,-5.75,COD,1222.0,Kwango,118.0,Democratic Republic of the Congo,102393.0,Popokabaka,both,identical +121355,17.25,-5.75,COD,1222.0,Kwango,118.0,Democratic Republic of the Congo,102391.0,Kenge,17.25,-5.75,COD,1222.0,Kwango,118.0,Democratic Republic of the Congo,102391.0,Kenge,both,identical +121356,17.75,-5.75,COD,1222.0,Kwango,118.0,Democratic Republic of the Congo,102388.0,Feshi,17.75,-5.75,COD,1222.0,Kwango,118.0,Democratic Republic of the Congo,102388.0,Feshi,both,identical +121357,18.25,-5.75,COD,1223.0,Kwilu,118.0,Democratic Republic of the Congo,102401.0,Masi-Manimba,18.25,-5.75,COD,1223.0,Kwilu,118.0,Democratic Republic of the Congo,102401.0,Masi-Manimba,both,identical +121358,18.75,-5.75,COD,1223.0,Kwilu,118.0,Democratic Republic of the Congo,102398.0,Gungu,18.75,-5.75,COD,1223.0,Kwilu,118.0,Democratic Republic of the Congo,102398.0,Gungu,both,identical +121359,19.25,-5.75,COD,1223.0,Kwilu,118.0,Democratic Republic of the Congo,102398.0,Gungu,19.25,-5.75,COD,1223.0,Kwilu,118.0,Democratic Republic of the Congo,102398.0,Gungu,both,identical +121360,19.75,-5.75,COD,1223.0,Kwilu,118.0,Democratic Republic of the Congo,102398.0,Gungu,19.75,-5.75,COD,1223.0,Kwilu,118.0,Democratic Republic of the Congo,102398.0,Gungu,both,identical +121361,20.25,-5.75,COD,1217.0,Kasaï,118.0,Democratic Republic of the Congo,102327.0,Ilebo,20.25,-5.75,COD,1217.0,Kasaï,118.0,Democratic Republic of the Congo,102327.0,Ilebo,both,identical +121362,20.75,-5.75,COD,1217.0,Kasaï,118.0,Democratic Republic of the Congo,102327.0,Ilebo,20.75,-5.75,COD,1217.0,Kasaï,118.0,Democratic Republic of the Congo,102327.0,Ilebo,both,identical +121363,21.25,-5.75,COD,1217.0,Kasaï,118.0,Democratic Republic of the Congo,102329.0,Luebo,21.25,-5.75,COD,1217.0,Kasaï,118.0,Democratic Republic of the Congo,102329.0,Luebo,both,identical +121364,21.75,-5.75,COD,1217.0,Kasaï,118.0,Democratic Republic of the Congo,102329.0,Luebo,21.75,-5.75,COD,1217.0,Kasaï,118.0,Democratic Republic of the Congo,102329.0,Luebo,both,identical +121365,22.25,-5.75,COD,1218.0,Kasaï-Central,118.0,Democratic Republic of the Congo,102333.0,Demba,22.25,-5.75,COD,1218.0,Kasaï-Central,118.0,Democratic Republic of the Congo,102333.0,Demba,both,identical +121366,22.75,-5.75,COD,1218.0,Kasaï-Central,118.0,Democratic Republic of the Congo,102333.0,Demba,22.75,-5.75,COD,1218.0,Kasaï-Central,118.0,Democratic Republic of the Congo,102333.0,Demba,both,identical +121367,23.25,-5.75,COD,1219.0,Kasaï-Oriental,118.0,Democratic Republic of the Congo,102335.0,Dimbelenge,23.25,-5.75,COD,1218.0,Kasaï-Central,118.0,Democratic Republic of the Congo,102335.0,Dimbelenge,both,admin_reallocation +121368,23.75,-5.75,COD,1219.0,Kasaï-Oriental,118.0,Democratic Republic of the Congo,102459.0,Lusambo,23.75,-5.75,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102459.0,Lusambo,both,admin_reallocation +121369,24.25,-5.75,COD,1224.0,Lomami,118.0,Democratic Republic of the Congo,102402.0,Kabinda,24.25,-5.75,COD,1224.0,Lomami,118.0,Democratic Republic of the Congo,102402.0,Kabinda,both,identical +121370,24.75,-5.75,COD,1224.0,Lomami,118.0,Democratic Republic of the Congo,102405.0,Lubao,24.75,-5.75,COD,1224.0,Lomami,118.0,Democratic Republic of the Congo,102405.0,Lubao,both,identical +121371,25.25,-5.75,COD,1224.0,Lomami,118.0,Democratic Republic of the Congo,102405.0,Lubao,25.25,-5.75,COD,1224.0,Lomami,118.0,Democratic Republic of the Congo,102405.0,Lubao,both,identical +121372,25.75,-5.75,COD,1224.0,Lomami,118.0,Democratic Republic of the Congo,102405.0,Lubao,25.75,-5.75,COD,1224.0,Lomami,118.0,Democratic Republic of the Congo,102405.0,Lubao,both,identical +121373,26.25,-5.75,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102481.0,Kongolo,26.25,-5.75,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102481.0,Kongolo,both,identical +121374,26.75,-5.75,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102481.0,Kongolo,26.75,-5.75,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102481.0,Kongolo,both,identical +121375,27.25,-5.75,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102484.0,Nyunzu,27.25,-5.75,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102484.0,Nyunzu,both,identical +121376,27.75,-5.75,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102484.0,Nyunzu,27.75,-5.75,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102484.0,Nyunzu,both,identical +121377,28.25,-5.75,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102484.0,Nyunzu,28.25,-5.75,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102484.0,Nyunzu,both,identical +121378,28.75,-5.75,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102479.0,Kalemie,28.75,-5.75,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102479.0,Kalemie,both,identical +121379,29.25,-5.75,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102479.0,Kalemie,29.25,-5.75,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102479.0,Kalemie,both,identical +121380,29.75,-5.75,TZA,1688.0,Kigoma,166.0,United Republic of Tanzania,900020.0,Waterbody,29.75,-5.75,TZA,1688.0,Kigoma,166.0,United Republic of Tanzania,900020.0,Waterbody,both,identical +121381,30.25,-5.75,TZA,1687.0,Katavi,166.0,United Republic of Tanzania,106419.0,Tanganyika,30.25,-5.75,TZA,1687.0,Katavi,166.0,United Republic of Tanzania,106419.0,Tanganyika,both,identical +121382,30.75,-5.75,TZA,1687.0,Katavi,166.0,United Republic of Tanzania,106419.0,Tanganyika,30.75,-5.75,TZA,1687.0,Katavi,166.0,United Republic of Tanzania,106419.0,Tanganyika,both,identical +121383,31.25,-5.75,TZA,1687.0,Katavi,166.0,United Republic of Tanzania,106516.0,Kaliua,31.25,-5.75,TZA,1708.0,Tabora,166.0,United Republic of Tanzania,106516.0,Kaliua,both,admin_reallocation +121384,31.75,-5.75,TZA,1708.0,Tabora,166.0,United Republic of Tanzania,106417.0,Mlele,31.75,-5.75,TZA,1687.0,Katavi,166.0,United Republic of Tanzania,106417.0,Mlele,both,admin_reallocation +121385,32.25,-5.75,TZA,1708.0,Tabora,166.0,United Republic of Tanzania,106518.0,Sikonge,32.25,-5.75,TZA,1708.0,Tabora,166.0,United Republic of Tanzania,106518.0,Sikonge,both,identical +121386,32.75,-5.75,TZA,1708.0,Tabora,166.0,United Republic of Tanzania,106518.0,Sikonge,32.75,-5.75,TZA,1708.0,Tabora,166.0,United Republic of Tanzania,106518.0,Sikonge,both,identical +121387,33.25,-5.75,TZA,1708.0,Tabora,166.0,United Republic of Tanzania,106518.0,Sikonge,33.25,-5.75,TZA,1708.0,Tabora,166.0,United Republic of Tanzania,106518.0,Sikonge,both,identical +121388,33.75,-5.75,TZA,1708.0,Tabora,166.0,United Republic of Tanzania,106518.0,Sikonge,33.75,-5.75,TZA,1708.0,Tabora,166.0,United Republic of Tanzania,106518.0,Sikonge,both,identical +121389,34.25,-5.75,TZA,1706.0,Singida,166.0,United Republic of Tanzania,106508.0,Manyoni,34.25,-5.75,TZA,1706.0,Singida,166.0,United Republic of Tanzania,106508.0,Manyoni,both,identical +121390,34.75,-5.75,TZA,1706.0,Singida,166.0,United Republic of Tanzania,106508.0,Manyoni,34.75,-5.75,TZA,1706.0,Singida,166.0,United Republic of Tanzania,106508.0,Manyoni,both,identical +121391,35.25,-5.75,TZA,1706.0,Singida,166.0,United Republic of Tanzania,106508.0,Manyoni,35.25,-5.75,TZA,1706.0,Singida,166.0,United Republic of Tanzania,106508.0,Manyoni,both,identical +121392,35.75,-5.75,TZA,1681.0,Dodoma,166.0,United Republic of Tanzania,106391.0,Bahi,35.75,-5.75,TZA,1681.0,Dodoma,166.0,United Republic of Tanzania,106391.0,Bahi,both,identical +121393,36.25,-5.75,TZA,1681.0,Dodoma,166.0,United Republic of Tanzania,106392.0,Chamwino,36.25,-5.75,TZA,1681.0,Dodoma,166.0,United Republic of Tanzania,106392.0,Chamwino,both,identical +121394,36.75,-5.75,TZA,1693.0,Manyara,166.0,United Republic of Tanzania,106443.0,Kiteto,36.75,-5.75,TZA,1693.0,Manyara,166.0,United Republic of Tanzania,106443.0,Kiteto,both,identical +121395,37.25,-5.75,TZA,1709.0,Tanga,166.0,United Republic of Tanzania,106523.0,Kilindi,37.25,-5.75,TZA,1709.0,Tanga,166.0,United Republic of Tanzania,106523.0,Kilindi,both,identical +121396,37.75,-5.75,TZA,1709.0,Tanga,166.0,United Republic of Tanzania,106523.0,Kilindi,37.75,-5.75,TZA,1709.0,Tanga,166.0,United Republic of Tanzania,106523.0,Kilindi,both,identical +121397,38.25,-5.75,TZA,1709.0,Tanga,166.0,United Republic of Tanzania,106522.0,Handeni,38.25,-5.75,TZA,1709.0,Tanga,166.0,United Republic of Tanzania,106522.0,Handeni,both,identical +121398,38.75,-5.75,TZA,1709.0,Tanga,166.0,United Republic of Tanzania,106528.0,Pangani,38.75,-5.75,TZA,1709.0,Tanga,166.0,United Republic of Tanzania,106528.0,Pangani,both,identical +121399,39.25,-5.75,TZA,1686.0,Kaskazini Unguja,166.0,United Republic of Tanzania,106415.0,Kaskazini A,39.25,-5.75,TZA,1686.0,Kaskazini Unguja,166.0,United Republic of Tanzania,106415.0,Kaskazini A,both,identical +122064,11.75,-5.25,COG,,,,,,,11.75,-5.25,AGO,1052.0,Cabinda,102.0,Angola,101570.0,Cacongo (Landana),both,country_reassignment +122065,12.25,-5.25,AGO,1052.0,Cabinda,102.0,Angola,101569.0,Cabinda,12.25,-5.25,AGO,1052.0,Cabinda,102.0,Angola,101569.0,Cabinda,both,identical +122066,12.75,-5.25,COD,1221.0,Kongo Central,118.0,Democratic Republic of the Congo,102376.0,Lukula,12.75,-5.25,COD,1221.0,Kongo Central,118.0,Democratic Republic of the Congo,102376.0,Lukula,both,identical +122067,13.25,-5.25,COD,1221.0,Kongo Central,118.0,Democratic Republic of the Congo,102384.0,Seke-Banza,13.25,-5.25,COD,1221.0,Kongo Central,118.0,Democratic Republic of the Congo,102384.0,Seke-Banza,both,identical +122068,13.75,-5.25,COD,1221.0,Kongo Central,118.0,Democratic Republic of the Congo,102377.0,Luozi,13.75,-5.25,COD,1221.0,Kongo Central,118.0,Democratic Republic of the Congo,102377.0,Luozi,both,identical +122069,14.25,-5.25,COD,1221.0,Kongo Central,118.0,Democratic Republic of the Congo,102385.0,Songololo,14.25,-5.25,COD,1221.0,Kongo Central,118.0,Democratic Republic of the Congo,102385.0,Songololo,both,identical +122070,14.75,-5.25,COD,1221.0,Kongo Central,118.0,Democratic Republic of the Congo,102380.0,Mbanza-Ngungu,14.75,-5.25,COD,1221.0,Kongo Central,118.0,Democratic Republic of the Congo,102380.0,Mbanza-Ngungu,both,identical +122071,15.25,-5.25,COD,1221.0,Kongo Central,118.0,Democratic Republic of the Congo,102378.0,Madimba,15.25,-5.25,COD,1221.0,Kongo Central,118.0,Democratic Republic of the Congo,102378.0,Madimba,both,identical +122072,15.75,-5.25,COD,1221.0,Kongo Central,118.0,Democratic Republic of the Congo,102378.0,Madimba,15.75,-5.25,COD,1221.0,Kongo Central,118.0,Democratic Republic of the Congo,102378.0,Madimba,both,identical +122073,16.25,-5.25,COD,1222.0,Kwango,118.0,Democratic Republic of the Congo,102393.0,Popokabaka,16.25,-5.25,COD,1222.0,Kwango,118.0,Democratic Republic of the Congo,102393.0,Popokabaka,both,identical +122074,16.75,-5.25,COD,1222.0,Kwango,118.0,Democratic Republic of the Congo,102391.0,Kenge,16.75,-5.25,COD,1222.0,Kwango,118.0,Democratic Republic of the Congo,102391.0,Kenge,both,identical +122075,17.25,-5.25,COD,1222.0,Kwango,118.0,Democratic Republic of the Congo,102391.0,Kenge,17.25,-5.25,COD,1222.0,Kwango,118.0,Democratic Republic of the Congo,102391.0,Kenge,both,identical +122076,17.75,-5.25,COD,1223.0,Kwilu,118.0,Democratic Republic of the Congo,102401.0,Masi-Manimba,17.75,-5.25,COD,1223.0,Kwilu,118.0,Democratic Republic of the Congo,102401.0,Masi-Manimba,both,identical +122077,18.25,-5.25,COD,1223.0,Kwilu,118.0,Democratic Republic of the Congo,102401.0,Masi-Manimba,18.25,-5.25,COD,1223.0,Kwilu,118.0,Democratic Republic of the Congo,102401.0,Masi-Manimba,both,identical +122078,18.75,-5.25,COD,1223.0,Kwilu,118.0,Democratic Republic of the Congo,102396.0,Bulungu,18.75,-5.25,COD,1223.0,Kwilu,118.0,Democratic Republic of the Congo,102396.0,Bulungu,both,identical +122079,19.25,-5.25,COD,1223.0,Kwilu,118.0,Democratic Republic of the Congo,102399.0,Idiofa,19.25,-5.25,COD,1223.0,Kwilu,118.0,Democratic Republic of the Congo,102399.0,Idiofa,both,identical +122080,19.75,-5.25,COD,1223.0,Kwilu,118.0,Democratic Republic of the Congo,102399.0,Idiofa,19.75,-5.25,COD,1223.0,Kwilu,118.0,Democratic Republic of the Congo,102399.0,Idiofa,both,identical +122081,20.25,-5.25,COD,1217.0,Kasaï,118.0,Democratic Republic of the Congo,102327.0,Ilebo,20.25,-5.25,COD,1217.0,Kasaï,118.0,Democratic Republic of the Congo,102327.0,Ilebo,both,identical +122082,20.75,-5.25,COD,1217.0,Kasaï,118.0,Democratic Republic of the Congo,102327.0,Ilebo,20.75,-5.25,COD,1217.0,Kasaï,118.0,Democratic Republic of the Congo,102327.0,Ilebo,both,identical +122083,21.25,-5.25,COD,1217.0,Kasaï,118.0,Democratic Republic of the Congo,102329.0,Luebo,21.25,-5.25,COD,1217.0,Kasaï,118.0,Democratic Republic of the Congo,102329.0,Luebo,both,identical +122084,21.75,-5.25,COD,1218.0,Kasaï-Central,118.0,Democratic Republic of the Congo,102333.0,Demba,21.75,-5.25,COD,1218.0,Kasaï-Central,118.0,Democratic Republic of the Congo,102333.0,Demba,both,identical +122085,22.25,-5.25,COD,1218.0,Kasaï-Central,118.0,Democratic Republic of the Congo,102333.0,Demba,22.25,-5.25,COD,1218.0,Kasaï-Central,118.0,Democratic Republic of the Congo,102333.0,Demba,both,identical +122086,22.75,-5.25,COD,1218.0,Kasaï-Central,118.0,Democratic Republic of the Congo,102335.0,Dimbelenge,22.75,-5.25,COD,1218.0,Kasaï-Central,118.0,Democratic Republic of the Congo,102335.0,Dimbelenge,both,identical +122087,23.25,-5.25,COD,1218.0,Kasaï-Central,118.0,Democratic Republic of the Congo,102335.0,Dimbelenge,23.25,-5.25,COD,1218.0,Kasaï-Central,118.0,Democratic Republic of the Congo,102335.0,Dimbelenge,both,identical +122088,23.75,-5.25,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102459.0,Lusambo,23.75,-5.25,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102459.0,Lusambo,both,identical +122089,24.25,-5.25,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102457.0,Lubefu,24.25,-5.25,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102457.0,Lubefu,both,identical +122090,24.75,-5.25,COD,1224.0,Lomami,118.0,Democratic Republic of the Congo,102405.0,Lubao,24.75,-5.25,COD,1224.0,Lomami,118.0,Democratic Republic of the Congo,102405.0,Lubao,both,identical +122091,25.25,-5.25,COD,1224.0,Lomami,118.0,Democratic Republic of the Congo,102405.0,Lubao,25.25,-5.25,COD,1224.0,Lomami,118.0,Democratic Republic of the Congo,102405.0,Lubao,both,identical +122092,25.75,-5.25,COD,1224.0,Lomami,118.0,Democratic Republic of the Congo,102405.0,Lubao,25.75,-5.25,COD,1224.0,Lomami,118.0,Democratic Republic of the Congo,102405.0,Lubao,both,identical +122093,26.25,-5.25,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102481.0,Kongolo,26.25,-5.25,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102481.0,Kongolo,both,identical +122094,26.75,-5.25,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102481.0,Kongolo,26.75,-5.25,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102481.0,Kongolo,both,identical +122095,27.25,-5.25,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102481.0,Kongolo,27.25,-5.25,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102481.0,Kongolo,both,identical +122096,27.75,-5.25,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102484.0,Nyunzu,27.75,-5.25,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102484.0,Nyunzu,both,identical +122097,28.25,-5.25,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102484.0,Nyunzu,28.25,-5.25,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102484.0,Nyunzu,both,identical +122098,28.75,-5.25,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102479.0,Kalemie,28.75,-5.25,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,102479.0,Kalemie,both,identical +122099,29.25,-5.25,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,900004.0,Waterbody,29.25,-5.25,COD,1234.0,Tanganyika,118.0,Democratic Republic of the Congo,900004.0,Waterbody,both,identical +122100,29.75,-5.25,TZA,1688.0,Kigoma,166.0,United Republic of Tanzania,900020.0,Waterbody,29.75,-5.25,TZA,1688.0,Kigoma,166.0,United Republic of Tanzania,900020.0,Waterbody,both,identical +122101,30.25,-5.25,TZA,1687.0,Katavi,166.0,United Republic of Tanzania,106419.0,Tanganyika,30.25,-5.25,TZA,1687.0,Katavi,166.0,United Republic of Tanzania,106419.0,Tanganyika,both,identical +122102,30.75,-5.25,TZA,1687.0,Katavi,166.0,United Republic of Tanzania,106419.0,Tanganyika,30.75,-5.25,TZA,1687.0,Katavi,166.0,United Republic of Tanzania,106419.0,Tanganyika,both,identical +122103,31.25,-5.25,TZA,1708.0,Tabora,166.0,United Republic of Tanzania,106516.0,Kaliua,31.25,-5.25,TZA,1708.0,Tabora,166.0,United Republic of Tanzania,106516.0,Kaliua,both,identical +122104,31.75,-5.25,TZA,1708.0,Tabora,166.0,United Republic of Tanzania,106516.0,Kaliua,31.75,-5.25,TZA,1708.0,Tabora,166.0,United Republic of Tanzania,106516.0,Kaliua,both,identical +122105,32.25,-5.25,TZA,1708.0,Tabora,166.0,United Republic of Tanzania,106520.0,Urambo,32.25,-5.25,TZA,1708.0,Tabora,166.0,United Republic of Tanzania,106520.0,Urambo,both,identical +122106,32.75,-5.25,TZA,1708.0,Tabora,166.0,United Republic of Tanzania,106518.0,Sikonge,32.75,-5.25,TZA,1708.0,Tabora,166.0,United Republic of Tanzania,106518.0,Sikonge,both,identical +122107,33.25,-5.25,TZA,1708.0,Tabora,166.0,United Republic of Tanzania,106521.0,Uyui,33.25,-5.25,TZA,1708.0,Tabora,166.0,United Republic of Tanzania,106521.0,Uyui,both,identical +122108,33.75,-5.25,TZA,1708.0,Tabora,166.0,United Republic of Tanzania,106521.0,Uyui,33.75,-5.25,TZA,1708.0,Tabora,166.0,United Republic of Tanzania,106521.0,Uyui,both,identical +122109,34.25,-5.25,TZA,1706.0,Singida,166.0,United Republic of Tanzania,106506.0,Ikungi,34.25,-5.25,TZA,1706.0,Singida,166.0,United Republic of Tanzania,106506.0,Ikungi,both,identical +122110,34.75,-5.25,TZA,1706.0,Singida,166.0,United Republic of Tanzania,106506.0,Ikungi,34.75,-5.25,TZA,1706.0,Singida,166.0,United Republic of Tanzania,106506.0,Ikungi,both,identical +122111,35.25,-5.25,TZA,1681.0,Dodoma,166.0,United Republic of Tanzania,106393.0,Chemba,35.25,-5.25,TZA,1681.0,Dodoma,166.0,United Republic of Tanzania,106393.0,Chemba,both,identical +122112,35.75,-5.25,TZA,1681.0,Dodoma,166.0,United Republic of Tanzania,106393.0,Chemba,35.75,-5.25,TZA,1681.0,Dodoma,166.0,United Republic of Tanzania,106393.0,Chemba,both,identical +122113,36.25,-5.25,TZA,1681.0,Dodoma,166.0,United Republic of Tanzania,106393.0,Chemba,36.25,-5.25,TZA,1681.0,Dodoma,166.0,United Republic of Tanzania,106393.0,Chemba,both,identical +122114,36.75,-5.25,TZA,1693.0,Manyara,166.0,United Republic of Tanzania,106443.0,Kiteto,36.75,-5.25,TZA,1693.0,Manyara,166.0,United Republic of Tanzania,106443.0,Kiteto,both,identical +122115,37.25,-5.25,TZA,1693.0,Manyara,166.0,United Republic of Tanzania,106443.0,Kiteto,37.25,-5.25,TZA,1693.0,Manyara,166.0,United Republic of Tanzania,106443.0,Kiteto,both,identical +122116,37.75,-5.25,TZA,1709.0,Tanga,166.0,United Republic of Tanzania,106523.0,Kilindi,37.75,-5.25,TZA,1709.0,Tanga,166.0,United Republic of Tanzania,106523.0,Kilindi,both,identical +122117,38.25,-5.25,TZA,1709.0,Tanga,166.0,United Republic of Tanzania,106522.0,Handeni,38.25,-5.25,TZA,1709.0,Tanga,166.0,United Republic of Tanzania,106522.0,Handeni,both,identical +122118,38.75,-5.25,TZA,1709.0,Tanga,166.0,United Republic of Tanzania,106527.0,Muheza,38.75,-5.25,TZA,1709.0,Tanga,166.0,United Republic of Tanzania,106527.0,Muheza,both,identical +122119,39.25,-5.25,TZA,1709.0,Tanga,166.0,United Republic of Tanzania,106529.0,Tanga,39.25,-5.25,TZA,1709.0,Tanga,166.0,United Republic of Tanzania,106529.0,Tanga,both,identical +122120,39.75,-5.25,TZA,1690.0,Kusini Pemba,166.0,United Republic of Tanzania,106414.0,Wete,39.75,-5.25,TZA,1685.0,Kaskazini Pemba,166.0,United Republic of Tanzania,106414.0,Wete,both,admin_reallocation +122784,11.75,-4.75,COG,1190.0,Kouilou,116.0,Congo,102195.0,Hinda,11.75,-4.75,COG,1190.0,Kouilou,116.0,Congo,102195.0,Hinda,both,identical +122785,12.25,-4.75,COG,1190.0,Kouilou,116.0,Congo,102198.0,Mvouti,12.25,-4.75,COG,1190.0,Kouilou,116.0,Congo,102198.0,Mvouti,both,identical +122786,12.75,-4.75,AGO,1052.0,Cabinda,102.0,Angola,101568.0,Buco Zau,12.75,-4.75,AGO,1052.0,Cabinda,102.0,Angola,101568.0,Buco Zau,both,identical +122787,13.25,-4.75,COD,1221.0,Kongo Central,118.0,Democratic Republic of the Congo,102386.0,Tshela,13.25,-4.75,COD,1221.0,Kongo Central,118.0,Democratic Republic of the Congo,102386.0,Tshela,both,identical +122788,13.75,-4.75,COD,1221.0,Kongo Central,118.0,Democratic Republic of the Congo,102377.0,Luozi,13.75,-4.75,COD,1221.0,Kongo Central,118.0,Democratic Republic of the Congo,102377.0,Luozi,both,identical +122789,14.25,-4.75,COD,1221.0,Kongo Central,118.0,Democratic Republic of the Congo,102377.0,Luozi,14.25,-4.75,COD,1221.0,Kongo Central,118.0,Democratic Republic of the Congo,102377.0,Luozi,both,identical +122790,14.75,-4.75,COG,1196.0,Pool,116.0,Congo,102239.0,Boko,14.75,-4.75,COG,1196.0,Pool,116.0,Congo,102239.0,Boko,both,identical +122791,15.25,-4.75,COD,1221.0,Kongo Central,118.0,Democratic Republic of the Congo,102374.0,Kasangulu,15.25,-4.75,COD,1221.0,Kongo Central,118.0,Democratic Republic of the Congo,102374.0,Kasangulu,both,identical +122792,15.75,-4.75,COD,1220.0,Kinshasa,118.0,Democratic Republic of the Congo,102361.0,Maluku,15.75,-4.75,COD,1220.0,Kinshasa,118.0,Democratic Republic of the Congo,102361.0,Maluku,both,identical +122793,16.25,-4.75,COD,1220.0,Kinshasa,118.0,Democratic Republic of the Congo,102361.0,Maluku,16.25,-4.75,COD,1220.0,Kinshasa,118.0,Democratic Republic of the Congo,102361.0,Maluku,both,identical +122794,16.75,-4.75,COD,1222.0,Kwango,118.0,Democratic Republic of the Congo,102391.0,Kenge,16.75,-4.75,COD,1222.0,Kwango,118.0,Democratic Republic of the Congo,102391.0,Kenge,both,identical +122795,17.25,-4.75,COD,1222.0,Kwango,118.0,Democratic Republic of the Congo,102391.0,Kenge,17.25,-4.75,COD,1222.0,Kwango,118.0,Democratic Republic of the Congo,102391.0,Kenge,both,identical +122796,17.75,-4.75,COD,1223.0,Kwilu,118.0,Democratic Republic of the Congo,102401.0,Masi-Manimba,17.75,-4.75,COD,1223.0,Kwilu,118.0,Democratic Republic of the Congo,102401.0,Masi-Manimba,both,identical +122797,18.25,-4.75,COD,1223.0,Kwilu,118.0,Democratic Republic of the Congo,102401.0,Masi-Manimba,18.25,-4.75,COD,1223.0,Kwilu,118.0,Democratic Republic of the Congo,102401.0,Masi-Manimba,both,identical +122798,18.75,-4.75,COD,1223.0,Kwilu,118.0,Democratic Republic of the Congo,102396.0,Bulungu,18.75,-4.75,COD,1223.0,Kwilu,118.0,Democratic Republic of the Congo,102396.0,Bulungu,both,identical +122799,19.25,-4.75,COD,1223.0,Kwilu,118.0,Democratic Republic of the Congo,102399.0,Idiofa,19.25,-4.75,COD,1223.0,Kwilu,118.0,Democratic Republic of the Congo,102399.0,Idiofa,both,identical +122800,19.75,-4.75,COD,1223.0,Kwilu,118.0,Democratic Republic of the Congo,102399.0,Idiofa,19.75,-4.75,COD,1223.0,Kwilu,118.0,Democratic Republic of the Congo,102399.0,Idiofa,both,identical +122801,20.25,-4.75,COD,1217.0,Kasaï,118.0,Democratic Republic of the Congo,102327.0,Ilebo,20.25,-4.75,COD,1217.0,Kasaï,118.0,Democratic Republic of the Congo,102327.0,Ilebo,both,identical +122802,20.75,-4.75,COD,1217.0,Kasaï,118.0,Democratic Republic of the Congo,102327.0,Ilebo,20.75,-4.75,COD,1217.0,Kasaï,118.0,Democratic Republic of the Congo,102327.0,Ilebo,both,identical +122803,21.25,-4.75,COD,1217.0,Kasaï,118.0,Democratic Republic of the Congo,102331.0,Mweka,21.25,-4.75,COD,1217.0,Kasaï,118.0,Democratic Republic of the Congo,102331.0,Mweka,both,identical +122804,21.75,-4.75,COD,1217.0,Kasaï,118.0,Democratic Republic of the Congo,102331.0,Mweka,21.75,-4.75,COD,1217.0,Kasaï,118.0,Democratic Republic of the Congo,102331.0,Mweka,both,identical +122805,22.25,-4.75,COD,1218.0,Kasaï-Central,118.0,Democratic Republic of the Congo,102331.0,Mweka,22.25,-4.75,COD,1217.0,Kasaï,118.0,Democratic Republic of the Congo,102331.0,Mweka,both,admin_reallocation +122806,22.75,-4.75,COD,1218.0,Kasaï-Central,118.0,Democratic Republic of the Congo,102335.0,Dimbelenge,22.75,-4.75,COD,1218.0,Kasaï-Central,118.0,Democratic Republic of the Congo,102335.0,Dimbelenge,both,identical +122807,23.25,-4.75,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102459.0,Lusambo,23.25,-4.75,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102459.0,Lusambo,both,identical +122808,23.75,-4.75,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102459.0,Lusambo,23.75,-4.75,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102459.0,Lusambo,both,identical +122809,24.25,-4.75,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102457.0,Lubefu,24.25,-4.75,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102457.0,Lubefu,both,identical +122810,24.75,-4.75,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102457.0,Lubefu,24.75,-4.75,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102457.0,Lubefu,both,identical +122811,25.25,-4.75,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102429.0,Kibombo,25.25,-4.75,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102429.0,Kibombo,both,identical +122812,25.75,-4.75,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102429.0,Kibombo,25.75,-4.75,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102429.0,Kibombo,both,identical +122813,26.25,-4.75,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102428.0,Kasongo,26.25,-4.75,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102428.0,Kasongo,both,identical +122814,26.75,-4.75,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102428.0,Kasongo,26.75,-4.75,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102428.0,Kasongo,both,identical +122815,27.25,-4.75,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102426.0,Kabambare,27.25,-4.75,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102426.0,Kabambare,both,identical +122816,27.75,-4.75,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102426.0,Kabambare,27.75,-4.75,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102426.0,Kabambare,both,identical +122817,28.25,-4.75,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102426.0,Kabambare,28.25,-4.75,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102426.0,Kabambare,both,identical +122818,28.75,-4.75,COD,1232.0,Sud-Kivu,118.0,Democratic Republic of the Congo,102463.0,Fizi,28.75,-4.75,COD,1232.0,Sud-Kivu,118.0,Democratic Republic of the Congo,102463.0,Fizi,both,identical +122819,29.25,-4.75,COD,1232.0,Sud-Kivu,118.0,Democratic Republic of the Congo,900003.0,Waterbody,29.25,-4.75,COD,1232.0,Sud-Kivu,118.0,Democratic Republic of the Congo,900003.0,Waterbody,both,identical +122820,29.75,-4.75,TZA,1688.0,Kigoma,166.0,United Republic of Tanzania,106424.0,Kigoma,29.75,-4.75,TZA,1688.0,Kigoma,166.0,United Republic of Tanzania,106424.0,Kigoma,both,identical +122821,30.25,-4.75,TZA,1688.0,Kigoma,166.0,United Republic of Tanzania,106422.0,Kasulu,30.25,-4.75,TZA,1688.0,Kigoma,166.0,United Republic of Tanzania,106422.0,Kasulu,both,identical +122822,30.75,-4.75,TZA,1688.0,Kigoma,166.0,United Republic of Tanzania,106422.0,Kasulu,30.75,-4.75,TZA,1688.0,Kigoma,166.0,United Republic of Tanzania,106422.0,Kasulu,both,identical +122823,31.25,-4.75,TZA,1688.0,Kigoma,166.0,United Republic of Tanzania,106423.0,Kibondo,31.25,-4.75,TZA,1688.0,Kigoma,166.0,United Republic of Tanzania,106423.0,Kibondo,both,identical +122824,31.75,-4.75,TZA,1708.0,Tabora,166.0,United Republic of Tanzania,106516.0,Kaliua,31.75,-4.75,TZA,1708.0,Tabora,166.0,United Republic of Tanzania,106516.0,Kaliua,both,identical +122825,32.25,-4.75,TZA,1708.0,Tabora,166.0,United Republic of Tanzania,106516.0,Kaliua,32.25,-4.75,TZA,1708.0,Tabora,166.0,United Republic of Tanzania,106516.0,Kaliua,both,identical +122826,32.75,-4.75,TZA,1708.0,Tabora,166.0,United Republic of Tanzania,106517.0,Nzega,32.75,-4.75,TZA,1708.0,Tabora,166.0,United Republic of Tanzania,106517.0,Nzega,both,identical +122827,33.25,-4.75,TZA,1708.0,Tabora,166.0,United Republic of Tanzania,106517.0,Nzega,33.25,-4.75,TZA,1708.0,Tabora,166.0,United Republic of Tanzania,106517.0,Nzega,both,identical +122828,33.75,-4.75,TZA,1708.0,Tabora,166.0,United Republic of Tanzania,106515.0,Igunga,33.75,-4.75,TZA,1708.0,Tabora,166.0,United Republic of Tanzania,106515.0,Igunga,both,identical +122829,34.25,-4.75,TZA,1706.0,Singida,166.0,United Republic of Tanzania,106507.0,Iramba,34.25,-4.75,TZA,1706.0,Singida,166.0,United Republic of Tanzania,106507.0,Iramba,both,identical +122830,34.75,-4.75,TZA,1706.0,Singida,166.0,United Republic of Tanzania,106510.0,Singida,34.75,-4.75,TZA,1706.0,Singida,166.0,United Republic of Tanzania,106510.0,Singida,both,identical +122831,35.25,-4.75,TZA,1693.0,Manyara,166.0,United Republic of Tanzania,106442.0,Hanang,35.25,-4.75,TZA,1693.0,Manyara,166.0,United Republic of Tanzania,106442.0,Hanang,both,identical +122832,35.75,-4.75,TZA,1681.0,Dodoma,166.0,United Republic of Tanzania,106395.0,Kondoa,35.75,-4.75,TZA,1681.0,Dodoma,166.0,United Republic of Tanzania,106395.0,Kondoa,both,identical +122833,36.25,-4.75,TZA,1681.0,Dodoma,166.0,United Republic of Tanzania,106395.0,Kondoa,36.25,-4.75,TZA,1681.0,Dodoma,166.0,United Republic of Tanzania,106395.0,Kondoa,both,identical +122834,36.75,-4.75,TZA,1693.0,Manyara,166.0,United Republic of Tanzania,106443.0,Kiteto,36.75,-4.75,TZA,1693.0,Manyara,166.0,United Republic of Tanzania,106443.0,Kiteto,both,identical +122835,37.25,-4.75,TZA,1693.0,Manyara,166.0,United Republic of Tanzania,106445.0,Simanjiro,37.25,-4.75,TZA,1693.0,Manyara,166.0,United Republic of Tanzania,106445.0,Simanjiro,both,identical +122836,37.75,-4.75,TZA,1693.0,Manyara,166.0,United Republic of Tanzania,106445.0,Simanjiro,37.75,-4.75,TZA,1693.0,Manyara,166.0,United Republic of Tanzania,106445.0,Simanjiro,both,identical +122837,38.25,-4.75,TZA,1709.0,Tanga,166.0,United Republic of Tanzania,106525.0,Lushoto,38.25,-4.75,TZA,1709.0,Tanga,166.0,United Republic of Tanzania,106525.0,Lushoto,both,identical +122838,38.75,-4.75,TZA,1709.0,Tanga,166.0,United Republic of Tanzania,106526.0,Mkinga,38.75,-4.75,TZA,1709.0,Tanga,166.0,United Republic of Tanzania,106526.0,Mkinga,both,identical +122839,39.25,-4.75,TZA,1709.0,Tanga,166.0,United Republic of Tanzania,106526.0,Mkinga,39.25,-4.75,TZA,1709.0,Tanga,166.0,United Republic of Tanzania,106526.0,Mkinga,both,identical +122840,39.75,-4.75,TZA,1685.0,Kaskazini Pemba,166.0,United Republic of Tanzania,106413.0,Micheweni,39.75,-4.75,TZA,1685.0,Kaskazini Pemba,166.0,United Republic of Tanzania,106413.0,Micheweni,both,identical +122871,55.25,-4.75,SYC,1581.0,Mahe,156.0,Seychelles,105517.0,West Mahe,55.25,-4.75,SYC,1581.0,Mahe,156.0,Seychelles,105517.0,West Mahe,both,identical +122872,55.75,-4.75,SYC,1581.0,Mahe,156.0,Seychelles,105515.0,East Mahe,55.75,-4.75,SYC,1581.0,Mahe,156.0,Seychelles,105515.0,East Mahe,both,identical +123503,11.25,-4.25,COG,1190.0,Kouilou,116.0,Congo,102199.0,Nzambi,11.25,-4.25,COG,1190.0,Kouilou,116.0,Congo,102199.0,Nzambi,both,identical +123504,11.75,-4.25,COG,1190.0,Kouilou,116.0,Congo,102197.0,Madingo-Kayes,11.75,-4.25,COG,1190.0,Kouilou,116.0,Congo,102197.0,Madingo-Kayes,both,identical +123505,12.25,-4.25,COG,1190.0,Kouilou,116.0,Congo,102198.0,Mvouti,12.25,-4.25,COG,1190.0,Kouilou,116.0,Congo,102198.0,Mvouti,both,identical +123506,12.75,-4.25,COG,1193.0,Niari,116.0,Congo,102218.0,Louvakou,12.75,-4.25,COG,1193.0,Niari,116.0,Congo,102218.0,Louvakou,both,identical +123507,13.25,-4.25,COG,1186.0,Bouenza,116.0,Congo,102176.0,Nkayi,13.25,-4.25,COG,1186.0,Bouenza,116.0,Congo,102176.0,Nkayi,both,identical +123508,13.75,-4.25,COG,1186.0,Bouenza,116.0,Congo,102173.0,Madingou,13.75,-4.25,COG,1186.0,Bouenza,116.0,Congo,102173.0,Madingou,both,identical +123509,14.25,-4.25,COG,1196.0,Pool,116.0,Congo,102249.0,Mindouli,14.25,-4.25,COG,1196.0,Pool,116.0,Congo,102249.0,Mindouli,both,identical +123510,14.75,-4.25,COG,1196.0,Pool,116.0,Congo,102244.0,Kinkala,14.75,-4.25,COG,1196.0,Pool,116.0,Congo,102244.0,Kinkala,both,identical +123511,15.25,-4.25,COG,1196.0,Pool,116.0,Congo,102240.0,Goma-Tsetse,15.25,-4.25,COG,1196.0,Pool,116.0,Congo,102240.0,Goma-Tsetse,both,identical +123512,15.75,-4.25,COD,1220.0,Kinshasa,118.0,Democratic Republic of the Congo,102361.0,Maluku,15.75,-4.25,COD,1220.0,Kinshasa,118.0,Democratic Republic of the Congo,102361.0,Maluku,both,identical +123513,16.25,-4.25,COD,1220.0,Kinshasa,118.0,Democratic Republic of the Congo,102361.0,Maluku,16.25,-4.25,COD,1220.0,Kinshasa,118.0,Democratic Republic of the Congo,102361.0,Maluku,both,identical +123514,16.75,-4.25,COD,1223.0,Kwilu,118.0,Democratic Republic of the Congo,102394.0,Bagata,16.75,-4.25,COD,1223.0,Kwilu,118.0,Democratic Republic of the Congo,102394.0,Bagata,both,identical +123515,17.25,-4.25,COD,1223.0,Kwilu,118.0,Democratic Republic of the Congo,102394.0,Bagata,17.25,-4.25,COD,1223.0,Kwilu,118.0,Democratic Republic of the Congo,102394.0,Bagata,both,identical +123516,17.75,-4.25,COD,1223.0,Kwilu,118.0,Democratic Republic of the Congo,102394.0,Bagata,17.75,-4.25,COD,1223.0,Kwilu,118.0,Democratic Republic of the Congo,102394.0,Bagata,both,identical +123517,18.25,-4.25,COD,1223.0,Kwilu,118.0,Democratic Republic of the Congo,102396.0,Bulungu,18.25,-4.25,COD,1223.0,Kwilu,118.0,Democratic Republic of the Congo,102396.0,Bulungu,both,identical +123518,18.75,-4.25,COD,1223.0,Kwilu,118.0,Democratic Republic of the Congo,102396.0,Bulungu,18.75,-4.25,COD,1223.0,Kwilu,118.0,Democratic Republic of the Congo,102396.0,Bulungu,both,identical +123519,19.25,-4.25,COD,1223.0,Kwilu,118.0,Democratic Republic of the Congo,102399.0,Idiofa,19.25,-4.25,COD,1223.0,Kwilu,118.0,Democratic Republic of the Congo,102399.0,Idiofa,both,identical +123520,19.75,-4.25,COD,1223.0,Kwilu,118.0,Democratic Republic of the Congo,102399.0,Idiofa,19.75,-4.25,COD,1223.0,Kwilu,118.0,Democratic Republic of the Congo,102399.0,Idiofa,both,identical +123521,20.25,-4.25,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102424.0,Oshwe,20.25,-4.25,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102424.0,Oshwe,both,identical +123522,20.75,-4.25,COD,1217.0,Kasaï,118.0,Democratic Republic of the Congo,102327.0,Ilebo,20.75,-4.25,COD,1217.0,Kasaï,118.0,Democratic Republic of the Congo,102327.0,Ilebo,both,identical +123523,21.25,-4.25,COD,1217.0,Kasaï,118.0,Democratic Republic of the Congo,102331.0,Mweka,21.25,-4.25,COD,1217.0,Kasaï,118.0,Democratic Republic of the Congo,102331.0,Mweka,both,identical +123524,21.75,-4.25,COD,1217.0,Kasaï,118.0,Democratic Republic of the Congo,102331.0,Mweka,21.75,-4.25,COD,1217.0,Kasaï,118.0,Democratic Republic of the Congo,102331.0,Mweka,both,identical +123525,22.25,-4.25,COD,1217.0,Kasaï,118.0,Democratic Republic of the Congo,102331.0,Mweka,22.25,-4.25,COD,1217.0,Kasaï,118.0,Democratic Republic of the Congo,102331.0,Mweka,both,identical +123526,22.75,-4.25,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102454.0,Kole,22.75,-4.25,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102454.0,Kole,both,identical +123527,23.25,-4.25,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102454.0,Kole,23.25,-4.25,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102454.0,Kole,both,identical +123528,23.75,-4.25,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102457.0,Lubefu,23.75,-4.25,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102457.0,Lubefu,both,identical +123529,24.25,-4.25,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102457.0,Lubefu,24.25,-4.25,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102457.0,Lubefu,both,identical +123530,24.75,-4.25,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102453.0,Katako-Kombe,24.75,-4.25,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102453.0,Katako-Kombe,both,identical +123531,25.25,-4.25,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102429.0,Kibombo,25.25,-4.25,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102429.0,Kibombo,both,identical +123532,25.75,-4.25,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102429.0,Kibombo,25.75,-4.25,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102429.0,Kibombo,both,identical +123533,26.25,-4.25,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102428.0,Kasongo,26.25,-4.25,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102428.0,Kasongo,both,identical +123534,26.75,-4.25,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102428.0,Kasongo,26.75,-4.25,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102428.0,Kasongo,both,identical +123535,27.25,-4.25,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102426.0,Kabambare,27.25,-4.25,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102426.0,Kabambare,both,identical +123536,27.75,-4.25,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102426.0,Kabambare,27.75,-4.25,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102426.0,Kabambare,both,identical +123537,28.25,-4.25,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102426.0,Kabambare,28.25,-4.25,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102426.0,Kabambare,both,identical +123538,28.75,-4.25,COD,1232.0,Sud-Kivu,118.0,Democratic Republic of the Congo,102463.0,Fizi,28.75,-4.25,COD,1232.0,Sud-Kivu,118.0,Democratic Republic of the Congo,102463.0,Fizi,both,identical +123539,29.25,-4.25,COD,1232.0,Sud-Kivu,118.0,Democratic Republic of the Congo,900003.0,Waterbody,29.25,-4.25,COD,1232.0,Sud-Kivu,118.0,Democratic Republic of the Congo,900003.0,Waterbody,both,identical +123540,29.75,-4.25,BDI,1124.0,Makamba,109.0,Burundi,101937.0,Nyanza-Lac,29.75,-4.25,TZA,1688.0,Kigoma,166.0,United Republic of Tanzania,106420.0,Buhigwe,both,country_reassignment +123541,30.25,-4.25,TZA,1688.0,Kigoma,166.0,United Republic of Tanzania,106422.0,Kasulu,30.25,-4.25,TZA,1688.0,Kigoma,166.0,United Republic of Tanzania,106422.0,Kasulu,both,identical +123542,30.75,-4.25,TZA,1688.0,Kigoma,166.0,United Republic of Tanzania,106423.0,Kibondo,30.75,-4.25,TZA,1688.0,Kigoma,166.0,United Republic of Tanzania,106423.0,Kibondo,both,identical +123543,31.25,-4.25,TZA,1688.0,Kigoma,166.0,United Republic of Tanzania,106423.0,Kibondo,31.25,-4.25,TZA,1688.0,Kigoma,166.0,United Republic of Tanzania,106423.0,Kibondo,both,identical +123544,31.75,-4.25,TZA,1708.0,Tabora,166.0,United Republic of Tanzania,106516.0,Kaliua,31.75,-4.25,TZA,1708.0,Tabora,166.0,United Republic of Tanzania,106516.0,Kaliua,both,identical +123545,32.25,-4.25,TZA,1704.0,Shinyanga,166.0,United Republic of Tanzania,106498.0,Kahama,32.25,-4.25,TZA,1704.0,Shinyanga,166.0,United Republic of Tanzania,106498.0,Kahama,both,identical +123546,32.75,-4.25,TZA,1708.0,Tabora,166.0,United Republic of Tanzania,106517.0,Nzega,32.75,-4.25,TZA,1708.0,Tabora,166.0,United Republic of Tanzania,106517.0,Nzega,both,identical +123547,33.25,-4.25,TZA,1708.0,Tabora,166.0,United Republic of Tanzania,106517.0,Nzega,33.25,-4.25,TZA,1708.0,Tabora,166.0,United Republic of Tanzania,106517.0,Nzega,both,identical +123548,33.75,-4.25,TZA,1708.0,Tabora,166.0,United Republic of Tanzania,106515.0,Igunga,33.75,-4.25,TZA,1708.0,Tabora,166.0,United Republic of Tanzania,106515.0,Igunga,both,identical +123549,34.25,-4.25,TZA,1706.0,Singida,166.0,United Republic of Tanzania,106507.0,Iramba,34.25,-4.25,TZA,1706.0,Singida,166.0,United Republic of Tanzania,106507.0,Iramba,both,identical +123550,34.75,-4.25,TZA,1706.0,Singida,166.0,United Republic of Tanzania,106509.0,Mkalama,34.75,-4.25,TZA,1706.0,Singida,166.0,United Republic of Tanzania,106509.0,Mkalama,both,identical +123551,35.25,-4.25,TZA,1693.0,Manyara,166.0,United Republic of Tanzania,106444.0,Mbulu,35.25,-4.25,TZA,1693.0,Manyara,166.0,United Republic of Tanzania,106444.0,Mbulu,both,identical +123552,35.75,-4.25,TZA,1693.0,Manyara,166.0,United Republic of Tanzania,106441.0,Babati,35.75,-4.25,TZA,1693.0,Manyara,166.0,United Republic of Tanzania,106441.0,Babati,both,identical +123553,36.25,-4.25,TZA,1693.0,Manyara,166.0,United Republic of Tanzania,106445.0,Simanjiro,36.25,-4.25,TZA,1693.0,Manyara,166.0,United Republic of Tanzania,106445.0,Simanjiro,both,identical +123554,36.75,-4.25,TZA,1693.0,Manyara,166.0,United Republic of Tanzania,106445.0,Simanjiro,36.75,-4.25,TZA,1693.0,Manyara,166.0,United Republic of Tanzania,106445.0,Simanjiro,both,identical +123555,37.25,-4.25,TZA,1693.0,Manyara,166.0,United Republic of Tanzania,106445.0,Simanjiro,37.25,-4.25,TZA,1693.0,Manyara,166.0,United Republic of Tanzania,106445.0,Simanjiro,both,identical +123556,37.75,-4.25,TZA,1689.0,Kilimanjaro,166.0,United Republic of Tanzania,106430.0,Same,37.75,-4.25,TZA,1689.0,Kilimanjaro,166.0,United Republic of Tanzania,106430.0,Same,both,identical +123557,38.25,-4.25,TZA,1689.0,Kilimanjaro,166.0,United Republic of Tanzania,106430.0,Same,38.25,-4.25,TZA,1689.0,Kilimanjaro,166.0,United Republic of Tanzania,106430.0,Same,both,identical +123558,38.75,-4.25,KEN,1371.0,Kwale,137.0,Kenya,103649.0,Kinango,38.75,-4.25,KEN,1371.0,Kwale,137.0,Kenya,103649.0,Kinango,both,identical +123559,39.25,-4.25,KEN,1371.0,Kwale,137.0,Kenya,103649.0,Kinango,39.25,-4.25,KEN,1371.0,Kwale,137.0,Kenya,103649.0,Kinango,both,identical +123560,39.75,-4.25,KEN,1371.0,Kwale,137.0,Kenya,103651.0,Matuga,39.75,-4.25,KEN,1371.0,Kwale,137.0,Kenya,103651.0,Matuga,both,identical +124222,10.75,-3.75,GAB,1308.0,Nyanga,127.0,Gabon,103163.0,Basse-Banio,10.75,-3.75,GAB,1308.0,Nyanga,127.0,Gabon,103163.0,Basse-Banio,both,identical +124223,11.25,-3.75,COG,1190.0,Kouilou,116.0,Congo,102199.0,Nzambi,11.25,-3.75,COG,1190.0,Kouilou,116.0,Congo,102199.0,Nzambi,both,identical +124224,11.75,-3.75,COG,1190.0,Kouilou,116.0,Congo,102197.0,Madingo-Kayes,11.75,-3.75,COG,1190.0,Kouilou,116.0,Congo,102197.0,Madingo-Kayes,both,identical +124225,12.25,-3.75,COG,1193.0,Niari,116.0,Congo,102213.0,Banba,12.25,-3.75,COG,1193.0,Niari,116.0,Congo,102213.0,Banba,both,identical +124226,12.75,-3.75,COG,1186.0,Bouenza,116.0,Congo,102171.0,Loudima,12.75,-3.75,COG,1186.0,Bouenza,116.0,Congo,102171.0,Loudima,both,identical +124227,13.25,-3.75,COG,1191.0,Lekoumou,116.0,Congo,102204.0,Sibiti,13.25,-3.75,COG,1191.0,Lekoumou,116.0,Congo,102204.0,Sibiti,both,identical +124228,13.75,-3.75,COG,1186.0,Bouenza,116.0,Congo,102177.0,Tsiaki,13.75,-3.75,COG,1186.0,Bouenza,116.0,Congo,102177.0,Tsiaki,both,identical +124229,14.25,-3.75,COG,1186.0,Bouenza,116.0,Congo,102170.0,Kingoue,14.25,-3.75,COG,1186.0,Bouenza,116.0,Congo,102170.0,Kingoue,both,identical +124230,14.75,-3.75,COG,1196.0,Pool,116.0,Congo,102247.0,Mayama,14.75,-3.75,COG,1196.0,Pool,116.0,Congo,102247.0,Mayama,both,identical +124231,15.25,-3.75,COG,1196.0,Pool,116.0,Congo,102241.0,Ignie,15.25,-3.75,COG,1196.0,Pool,116.0,Congo,102241.0,Ignie,both,identical +124232,15.75,-3.75,COG,1196.0,Pool,116.0,Congo,102241.0,Ignie,15.75,-3.75,COG,1196.0,Pool,116.0,Congo,102241.0,Ignie,both,identical +124233,16.25,-3.75,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102422.0,Kwamouth,16.25,-3.75,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102422.0,Kwamouth,both,identical +124234,16.75,-3.75,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102422.0,Kwamouth,16.75,-3.75,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102422.0,Kwamouth,both,identical +124235,17.25,-3.75,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102422.0,Kwamouth,17.25,-3.75,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102422.0,Kwamouth,both,identical +124236,17.75,-3.75,COD,1223.0,Kwilu,118.0,Democratic Republic of the Congo,102394.0,Bagata,17.75,-3.75,COD,1223.0,Kwilu,118.0,Democratic Republic of the Congo,102394.0,Bagata,both,identical +124237,18.25,-3.75,COD,1223.0,Kwilu,118.0,Democratic Republic of the Congo,102394.0,Bagata,18.25,-3.75,COD,1223.0,Kwilu,118.0,Democratic Republic of the Congo,102394.0,Bagata,both,identical +124238,18.75,-3.75,COD,1223.0,Kwilu,118.0,Democratic Republic of the Congo,102394.0,Bagata,18.75,-3.75,COD,1223.0,Kwilu,118.0,Democratic Republic of the Congo,102394.0,Bagata,both,identical +124239,19.25,-3.75,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102424.0,Oshwe,19.25,-3.75,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102424.0,Oshwe,both,identical +124240,19.75,-3.75,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102424.0,Oshwe,19.75,-3.75,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102424.0,Oshwe,both,identical +124241,20.25,-3.75,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102424.0,Oshwe,20.25,-3.75,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102424.0,Oshwe,both,identical +124242,20.75,-3.75,COD,1217.0,Kasaï,118.0,Democratic Republic of the Congo,102326.0,Dekese,20.75,-3.75,COD,1217.0,Kasaï,118.0,Democratic Republic of the Congo,102326.0,Dekese,both,identical +124243,21.25,-3.75,COD,1217.0,Kasaï,118.0,Democratic Republic of the Congo,102326.0,Dekese,21.25,-3.75,COD,1217.0,Kasaï,118.0,Democratic Republic of the Congo,102326.0,Dekese,both,identical +124244,21.75,-3.75,COD,1217.0,Kasaï,118.0,Democratic Republic of the Congo,102326.0,Dekese,21.75,-3.75,COD,1217.0,Kasaï,118.0,Democratic Republic of the Congo,102326.0,Dekese,both,identical +124245,22.25,-3.75,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102454.0,Kole,22.25,-3.75,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102454.0,Kole,both,identical +124246,22.75,-3.75,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102454.0,Kole,22.75,-3.75,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102454.0,Kole,both,identical +124247,23.25,-3.75,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102455.0,Lodja,23.25,-3.75,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102455.0,Lodja,both,identical +124248,23.75,-3.75,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102455.0,Lodja,23.75,-3.75,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102455.0,Lodja,both,identical +124249,24.25,-3.75,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102453.0,Katako-Kombe,24.25,-3.75,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102453.0,Katako-Kombe,both,identical +124250,24.75,-3.75,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102453.0,Katako-Kombe,24.75,-3.75,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102453.0,Katako-Kombe,both,identical +124251,25.25,-3.75,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102429.0,Kibombo,25.25,-3.75,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102429.0,Kibombo,both,identical +124252,25.75,-3.75,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102429.0,Kibombo,25.75,-3.75,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102429.0,Kibombo,both,identical +124253,26.25,-3.75,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102432.0,Pangi,26.25,-3.75,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102432.0,Pangi,both,identical +124254,26.75,-3.75,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102428.0,Kasongo,26.75,-3.75,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102428.0,Kasongo,both,identical +124255,27.25,-3.75,COD,1232.0,Sud-Kivu,118.0,Democratic Republic of the Congo,102468.0,Shabunda,27.25,-3.75,COD,1232.0,Sud-Kivu,118.0,Democratic Republic of the Congo,102468.0,Shabunda,both,identical +124256,27.75,-3.75,COD,1232.0,Sud-Kivu,118.0,Democratic Republic of the Congo,102468.0,Shabunda,27.75,-3.75,COD,1232.0,Sud-Kivu,118.0,Democratic Republic of the Congo,102468.0,Shabunda,both,identical +124257,28.25,-3.75,COD,1232.0,Sud-Kivu,118.0,Democratic Republic of the Congo,102467.0,Mwenga,28.25,-3.75,COD,1232.0,Sud-Kivu,118.0,Democratic Republic of the Congo,102467.0,Mwenga,both,identical +124258,28.75,-3.75,COD,1232.0,Sud-Kivu,118.0,Democratic Republic of the Congo,102467.0,Mwenga,28.75,-3.75,COD,1232.0,Sud-Kivu,118.0,Democratic Republic of the Congo,102467.0,Mwenga,both,identical +124259,29.25,-3.75,BDI,1129.0,Rumonge,109.0,Burundi,900002.0,Waterbody,29.25,-3.75,COD,1232.0,Sud-Kivu,118.0,Democratic Republic of the Congo,900003.0,Waterbody,both,country_reassignment +124260,29.75,-3.75,BDI,1116.0,Bururi,109.0,Burundi,101879.0,Bururi,29.75,-3.75,BDI,1116.0,Bururi,109.0,Burundi,101879.0,Bururi,both,identical +124261,30.25,-3.75,BDI,1130.0,Rutana,109.0,Burundi,101972.0,Giharo,30.25,-3.75,BDI,1130.0,Rutana,109.0,Burundi,101972.0,Giharo,both,identical +124262,30.75,-3.75,TZA,1688.0,Kigoma,166.0,United Republic of Tanzania,106423.0,Kibondo,30.75,-3.75,TZA,1688.0,Kigoma,166.0,United Republic of Tanzania,106423.0,Kibondo,both,identical +124263,31.25,-3.75,TZA,1688.0,Kigoma,166.0,United Republic of Tanzania,106423.0,Kibondo,31.25,-3.75,TZA,1688.0,Kigoma,166.0,United Republic of Tanzania,106423.0,Kibondo,both,identical +124264,31.75,-3.75,TZA,1682.0,Geita,166.0,United Republic of Tanzania,106398.0,Bukombe,31.75,-3.75,TZA,1682.0,Geita,166.0,United Republic of Tanzania,106398.0,Bukombe,both,identical +124265,32.25,-3.75,TZA,1704.0,Shinyanga,166.0,United Republic of Tanzania,106498.0,Kahama,32.25,-3.75,TZA,1704.0,Shinyanga,166.0,United Republic of Tanzania,106498.0,Kahama,both,identical +124266,32.75,-3.75,TZA,1704.0,Shinyanga,166.0,United Republic of Tanzania,106498.0,Kahama,32.75,-3.75,TZA,1704.0,Shinyanga,166.0,United Republic of Tanzania,106498.0,Kahama,both,identical +124267,33.25,-3.75,TZA,1704.0,Shinyanga,166.0,United Republic of Tanzania,106500.0,Shinyanga,33.25,-3.75,TZA,1704.0,Shinyanga,166.0,United Republic of Tanzania,106500.0,Shinyanga,both,identical +124268,33.75,-3.75,TZA,1704.0,Shinyanga,166.0,United Republic of Tanzania,106499.0,Kishapu,33.75,-3.75,TZA,1704.0,Shinyanga,166.0,United Republic of Tanzania,106499.0,Kishapu,both,identical +124269,34.25,-3.75,TZA,1705.0,Simiyu,166.0,United Republic of Tanzania,106505.0,Meatu,34.25,-3.75,TZA,1705.0,Simiyu,166.0,United Republic of Tanzania,106505.0,Meatu,both,identical +124270,34.75,-3.75,TZA,1705.0,Simiyu,166.0,United Republic of Tanzania,106505.0,Meatu,34.75,-3.75,TZA,1705.0,Simiyu,166.0,United Republic of Tanzania,106505.0,Meatu,both,identical +124271,35.25,-3.75,TZA,1693.0,Manyara,166.0,United Republic of Tanzania,106444.0,Mbulu,35.25,-3.75,TZA,1693.0,Manyara,166.0,United Republic of Tanzania,106444.0,Mbulu,both,identical +124272,35.75,-3.75,TZA,1693.0,Manyara,166.0,United Republic of Tanzania,106441.0,Babati,35.75,-3.75,TZA,1693.0,Manyara,166.0,United Republic of Tanzania,106441.0,Babati,both,identical +124273,36.25,-3.75,TZA,1679.0,Arusha,166.0,United Republic of Tanzania,106384.0,Monduli,36.25,-3.75,TZA,1679.0,Arusha,166.0,United Republic of Tanzania,106384.0,Monduli,both,identical +124274,36.75,-3.75,TZA,1693.0,Manyara,166.0,United Republic of Tanzania,106445.0,Simanjiro,36.75,-3.75,TZA,1693.0,Manyara,166.0,United Republic of Tanzania,106445.0,Simanjiro,both,identical +124275,37.25,-3.75,TZA,1693.0,Manyara,166.0,United Republic of Tanzania,106445.0,Simanjiro,37.25,-3.75,TZA,1693.0,Manyara,166.0,United Republic of Tanzania,106445.0,Simanjiro,both,identical +124276,37.75,-3.75,TZA,1689.0,Kilimanjaro,166.0,United Republic of Tanzania,106428.0,Mwanga,37.75,-3.75,TZA,1689.0,Kilimanjaro,166.0,United Republic of Tanzania,106428.0,Mwanga,both,identical +124277,38.25,-3.75,KEN,1391.0,Taita Taveta,137.0,Kenya,103776.0,Mwatate,38.25,-3.75,KEN,1391.0,Taita Taveta,137.0,Kenya,103776.0,Mwatate,both,identical +124278,38.75,-3.75,KEN,1391.0,Taita Taveta,137.0,Kenya,103778.0,Voi,38.75,-3.75,KEN,1391.0,Taita Taveta,137.0,Kenya,103778.0,Voi,both,identical +124279,39.25,-3.75,KEN,1371.0,Kwale,137.0,Kenya,103649.0,Kinango,39.25,-3.75,KEN,1371.0,Kwale,137.0,Kenya,103649.0,Kinango,both,identical +124280,39.75,-3.75,KEN,1366.0,Kilifi,137.0,Kenya,103614.0,Ganze,39.75,-3.75,KEN,1366.0,Kilifi,137.0,Kenya,103614.0,Ganze,both,identical +124941,10.25,-3.25,GAB,1308.0,Nyanga,127.0,Gabon,103163.0,Basse-Banio,10.25,-3.25,GAB,1308.0,Nyanga,127.0,Gabon,103163.0,Basse-Banio,both,identical +124942,10.75,-3.25,GAB,1308.0,Nyanga,127.0,Gabon,103163.0,Basse-Banio,10.75,-3.25,GAB,1308.0,Nyanga,127.0,Gabon,103163.0,Basse-Banio,both,identical +124943,11.25,-3.25,GAB,1308.0,Nyanga,127.0,Gabon,103163.0,Basse-Banio,11.25,-3.25,GAB,1308.0,Nyanga,127.0,Gabon,103163.0,Basse-Banio,both,identical +124944,11.75,-3.25,GAB,1308.0,Nyanga,127.0,Gabon,103167.0,Mongo,11.75,-3.25,GAB,1308.0,Nyanga,127.0,Gabon,103167.0,Mongo,both,identical +124945,12.25,-3.25,COG,1193.0,Niari,116.0,Congo,102215.0,Kibangou,12.25,-3.25,COG,1193.0,Niari,116.0,Congo,102215.0,Kibangou,both,identical +124946,12.75,-3.25,COG,1193.0,Niari,116.0,Congo,102224.0,Moutamba,12.75,-3.25,COG,1193.0,Niari,116.0,Congo,102224.0,Moutamba,both,identical +124947,13.25,-3.25,COG,1191.0,Lekoumou,116.0,Congo,102202.0,Komono,13.25,-3.25,COG,1191.0,Lekoumou,116.0,Congo,102202.0,Komono,both,identical +124948,13.75,-3.25,COG,1191.0,Lekoumou,116.0,Congo,102205.0,Zanaga,13.75,-3.25,COG,1191.0,Lekoumou,116.0,Congo,102205.0,Zanaga,both,identical +124949,14.25,-3.25,COG,1196.0,Pool,116.0,Congo,102242.0,Kimba,14.25,-3.25,COG,1196.0,Pool,116.0,Congo,102242.0,Kimba,both,identical +124950,14.75,-3.25,COG,1196.0,Pool,116.0,Congo,102251.0,Vindza,14.75,-3.25,COG,1196.0,Pool,116.0,Congo,102251.0,Vindza,both,identical +124951,15.25,-3.25,COG,1196.0,Pool,116.0,Congo,102247.0,Mayama,15.25,-3.25,COG,1196.0,Pool,116.0,Congo,102247.0,Mayama,both,identical +124952,15.75,-3.25,COG,1196.0,Pool,116.0,Congo,102250.0,Ngabe,15.75,-3.25,COG,1196.0,Pool,116.0,Congo,102250.0,Ngabe,both,identical +124953,16.25,-3.25,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102422.0,Kwamouth,16.25,-3.25,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102422.0,Kwamouth,both,identical +124954,16.75,-3.25,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102422.0,Kwamouth,16.75,-3.25,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102422.0,Kwamouth,both,identical +124955,17.25,-3.25,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102422.0,Kwamouth,17.25,-3.25,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102422.0,Kwamouth,both,identical +124956,17.75,-3.25,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102421.0,Kutu,17.75,-3.25,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102421.0,Kutu,both,identical +124957,18.25,-3.25,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102421.0,Kutu,18.25,-3.25,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102421.0,Kutu,both,identical +124958,18.75,-3.25,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102421.0,Kutu,18.75,-3.25,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102421.0,Kutu,both,identical +124959,19.25,-3.25,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102424.0,Oshwe,19.25,-3.25,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102424.0,Oshwe,both,identical +124960,19.75,-3.25,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102424.0,Oshwe,19.75,-3.25,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102424.0,Oshwe,both,identical +124961,20.25,-3.25,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102424.0,Oshwe,20.25,-3.25,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102424.0,Oshwe,both,identical +124962,20.75,-3.25,COD,1217.0,Kasaï,118.0,Democratic Republic of the Congo,102326.0,Dekese,20.75,-3.25,COD,1217.0,Kasaï,118.0,Democratic Republic of the Congo,102326.0,Dekese,both,identical +124963,21.25,-3.25,COD,1217.0,Kasaï,118.0,Democratic Republic of the Congo,102326.0,Dekese,21.25,-3.25,COD,1217.0,Kasaï,118.0,Democratic Republic of the Congo,102326.0,Dekese,both,identical +124964,21.75,-3.25,COD,1217.0,Kasaï,118.0,Democratic Republic of the Congo,102326.0,Dekese,21.75,-3.25,COD,1217.0,Kasaï,118.0,Democratic Republic of the Congo,102326.0,Dekese,both,identical +124965,22.25,-3.25,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102454.0,Kole,22.25,-3.25,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102454.0,Kole,both,identical +124966,22.75,-3.25,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102454.0,Kole,22.75,-3.25,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102454.0,Kole,both,identical +124967,23.25,-3.25,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102455.0,Lodja,23.25,-3.25,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102455.0,Lodja,both,identical +124968,23.75,-3.25,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102455.0,Lodja,23.75,-3.25,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102455.0,Lodja,both,identical +124969,24.25,-3.25,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102453.0,Katako-Kombe,24.25,-3.25,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102453.0,Katako-Kombe,both,identical +124970,24.75,-3.25,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102453.0,Katako-Kombe,24.75,-3.25,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102453.0,Katako-Kombe,both,identical +124971,25.25,-3.25,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102429.0,Kibombo,25.25,-3.25,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102429.0,Kibombo,both,identical +124972,25.75,-3.25,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102427.0,Kailo,25.75,-3.25,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102427.0,Kailo,both,identical +124973,26.25,-3.25,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102432.0,Pangi,26.25,-3.25,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102432.0,Pangi,both,identical +124974,26.75,-3.25,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102432.0,Pangi,26.75,-3.25,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102432.0,Pangi,both,identical +124975,27.25,-3.25,COD,1232.0,Sud-Kivu,118.0,Democratic Republic of the Congo,102468.0,Shabunda,27.25,-3.25,COD,1232.0,Sud-Kivu,118.0,Democratic Republic of the Congo,102468.0,Shabunda,both,identical +124976,27.75,-3.25,COD,1232.0,Sud-Kivu,118.0,Democratic Republic of the Congo,102468.0,Shabunda,27.75,-3.25,COD,1232.0,Sud-Kivu,118.0,Democratic Republic of the Congo,102468.0,Shabunda,both,identical +124977,28.25,-3.25,COD,1232.0,Sud-Kivu,118.0,Democratic Republic of the Congo,102467.0,Mwenga,28.25,-3.25,COD,1232.0,Sud-Kivu,118.0,Democratic Republic of the Congo,102467.0,Mwenga,both,identical +124978,28.75,-3.25,COD,1232.0,Sud-Kivu,118.0,Democratic Republic of the Congo,102467.0,Mwenga,28.75,-3.25,COD,1232.0,Sud-Kivu,118.0,Democratic Republic of the Congo,102467.0,Mwenga,both,identical +124979,29.25,-3.25,BDI,1114.0,Bubanza,109.0,Burundi,101866.0,Gihanga,29.25,-3.25,COD,1232.0,Sud-Kivu,118.0,Democratic Republic of the Congo,102469.0,Uvira,both,country_reassignment +124980,29.75,-3.25,BDI,1119.0,Gitega,109.0,Burundi,101896.0,Bugendana,29.75,-3.25,BDI,1119.0,Gitega,109.0,Burundi,101896.0,Bugendana,both,identical +124981,30.25,-3.25,BDI,1131.0,Ruyigi,109.0,Burundi,101978.0,Butezi,30.25,-3.25,BDI,1131.0,Ruyigi,109.0,Burundi,101978.0,Butezi,both,identical +124982,30.75,-3.25,TZA,1688.0,Kigoma,166.0,United Republic of Tanzania,106421.0,Kakonko,30.75,-3.25,TZA,1688.0,Kigoma,166.0,United Republic of Tanzania,106421.0,Kakonko,both,identical +124983,31.25,-3.25,TZA,1684.0,Kagera,166.0,United Republic of Tanzania,106406.0,Biharamulo,31.25,-3.25,TZA,1684.0,Kagera,166.0,United Republic of Tanzania,106406.0,Biharamulo,both,identical +124984,31.75,-3.25,TZA,1682.0,Geita,166.0,United Republic of Tanzania,106398.0,Bukombe,31.75,-3.25,TZA,1682.0,Geita,166.0,United Republic of Tanzania,106398.0,Bukombe,both,identical +124985,32.25,-3.25,TZA,1682.0,Geita,166.0,United Republic of Tanzania,106400.0,Geita,32.25,-3.25,TZA,1682.0,Geita,166.0,United Republic of Tanzania,106400.0,Geita,both,identical +124986,32.75,-3.25,TZA,1682.0,Geita,166.0,United Republic of Tanzania,106402.0,Nyang'Hwale,32.75,-3.25,TZA,1682.0,Geita,166.0,United Republic of Tanzania,106402.0,Nyang'Hwale,both,identical +124987,33.25,-3.25,TZA,1699.0,Mwanza,166.0,United Republic of Tanzania,106473.0,Kwimba,33.25,-3.25,TZA,1699.0,Mwanza,166.0,United Republic of Tanzania,106473.0,Kwimba,both,identical +124988,33.75,-3.25,TZA,1705.0,Simiyu,166.0,United Republic of Tanzania,106504.0,Maswa,33.75,-3.25,TZA,1705.0,Simiyu,166.0,United Republic of Tanzania,106504.0,Maswa,both,identical +124989,34.25,-3.25,TZA,1705.0,Simiyu,166.0,United Republic of Tanzania,106505.0,Meatu,34.25,-3.25,TZA,1705.0,Simiyu,166.0,United Republic of Tanzania,106505.0,Meatu,both,identical +124990,34.75,-3.25,TZA,1705.0,Simiyu,166.0,United Republic of Tanzania,106505.0,Meatu,34.75,-3.25,TZA,1705.0,Simiyu,166.0,United Republic of Tanzania,106505.0,Meatu,both,identical +124991,35.25,-3.25,TZA,1679.0,Arusha,166.0,United Republic of Tanzania,106385.0,Ngorongoro,35.25,-3.25,TZA,1679.0,Arusha,166.0,United Republic of Tanzania,106385.0,Ngorongoro,both,identical +124992,35.75,-3.25,TZA,1679.0,Arusha,166.0,United Republic of Tanzania,106385.0,Ngorongoro,35.75,-3.25,TZA,1679.0,Arusha,166.0,United Republic of Tanzania,106385.0,Ngorongoro,both,identical +124993,36.25,-3.25,TZA,1679.0,Arusha,166.0,United Republic of Tanzania,106384.0,Monduli,36.25,-3.25,TZA,1679.0,Arusha,166.0,United Republic of Tanzania,106384.0,Monduli,both,identical +124994,36.75,-3.25,TZA,1679.0,Arusha,166.0,United Republic of Tanzania,106380.0,Arumeru,36.75,-3.25,TZA,1679.0,Arusha,166.0,United Republic of Tanzania,106380.0,Arumeru,both,identical +124995,37.25,-3.25,TZA,1689.0,Kilimanjaro,166.0,United Republic of Tanzania,106426.0,Hai,37.25,-3.25,TZA,1689.0,Kilimanjaro,166.0,United Republic of Tanzania,106426.0,Hai,both,identical +124996,37.75,-3.25,KEN,1391.0,Taita Taveta,137.0,Kenya,103777.0,Taveta,37.75,-3.25,KEN,1391.0,Taita Taveta,137.0,Kenya,103777.0,Taveta,both,identical +124997,38.25,-3.25,KEN,1391.0,Taita Taveta,137.0,Kenya,103777.0,Taveta,38.25,-3.25,KEN,1391.0,Taita Taveta,137.0,Kenya,103777.0,Taveta,both,identical +124998,38.75,-3.25,KEN,1391.0,Taita Taveta,137.0,Kenya,103778.0,Voi,38.75,-3.25,KEN,1391.0,Taita Taveta,137.0,Kenya,103778.0,Voi,both,identical +124999,39.25,-3.25,KEN,1366.0,Kilifi,137.0,Kenya,103618.0,Magarini,39.25,-3.25,KEN,1366.0,Kilifi,137.0,Kenya,103618.0,Magarini,both,identical +125000,39.75,-3.25,KEN,1366.0,Kilifi,137.0,Kenya,103618.0,Magarini,39.75,-3.25,KEN,1366.0,Kilifi,137.0,Kenya,103618.0,Magarini,both,identical +125001,40.25,-3.25,KEN,1366.0,Kilifi,137.0,Kenya,103618.0,Magarini,40.25,-3.25,KEN,1366.0,Kilifi,137.0,Kenya,103618.0,Magarini,both,identical +125660,9.75,-2.75,GAB,1311.0,Ogooue-Maritime,127.0,Gabon,103179.0,Ndougou,9.75,-2.75,GAB,1311.0,Ogooue-Maritime,127.0,Gabon,103179.0,Ndougou,both,identical +125661,10.25,-2.75,GAB,1308.0,Nyanga,127.0,Gabon,103163.0,Basse-Banio,10.25,-2.75,GAB,1308.0,Nyanga,127.0,Gabon,103163.0,Basse-Banio,both,identical +125662,10.75,-2.75,GAB,1308.0,Nyanga,127.0,Gabon,103168.0,Mougoutsi,10.75,-2.75,GAB,1308.0,Nyanga,127.0,Gabon,103168.0,Mougoutsi,both,identical +125663,11.25,-2.75,GAB,1308.0,Nyanga,127.0,Gabon,103165.0,Doutsila,11.25,-2.75,GAB,1308.0,Nyanga,127.0,Gabon,103165.0,Doutsila,both,identical +125664,11.75,-2.75,COG,1193.0,Niari,116.0,Congo,102225.0,Nyanga,11.75,-2.75,COG,1193.0,Niari,116.0,Congo,102225.0,Nyanga,both,identical +125665,12.25,-2.75,COG,1193.0,Niari,116.0,Congo,102214.0,Divenie,12.25,-2.75,COG,1193.0,Niari,116.0,Congo,102214.0,Divenie,both,identical +125666,12.75,-2.75,COG,1193.0,Niari,116.0,Congo,102223.0,Moungoundou-Sud,12.75,-2.75,COG,1193.0,Niari,116.0,Congo,102223.0,Moungoundou-Sud,both,identical +125667,13.25,-2.75,COG,1191.0,Lekoumou,116.0,Congo,102202.0,Komono,13.25,-2.75,COG,1191.0,Lekoumou,116.0,Congo,102202.0,Komono,both,identical +125668,13.75,-2.75,COG,1191.0,Lekoumou,116.0,Congo,102205.0,Zanaga,13.75,-2.75,COG,1191.0,Lekoumou,116.0,Congo,102205.0,Zanaga,both,identical +125669,14.25,-2.75,COG,1194.0,Plateaux,116.0,Congo,102205.0,Zanaga,14.25,-2.75,COG,1191.0,Lekoumou,116.0,Congo,102205.0,Zanaga,both,admin_reallocation +125670,14.75,-2.75,COG,1194.0,Plateaux,116.0,Congo,102229.0,Djambala,14.75,-2.75,COG,1194.0,Plateaux,116.0,Congo,102229.0,Djambala,both,identical +125671,15.25,-2.75,COG,1194.0,Plateaux,116.0,Congo,102235.0,Ngo,15.25,-2.75,COG,1194.0,Plateaux,116.0,Congo,102235.0,Ngo,both,identical +125672,15.75,-2.75,COG,1194.0,Plateaux,116.0,Congo,102235.0,Ngo,15.75,-2.75,COG,1194.0,Plateaux,116.0,Congo,102235.0,Ngo,both,identical +125673,16.25,-2.75,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102416.0,Bolobo,16.25,-2.75,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102416.0,Bolobo,both,identical +125674,16.75,-2.75,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102423.0,Mushie,16.75,-2.75,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102423.0,Mushie,both,identical +125675,17.25,-2.75,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102423.0,Mushie,17.25,-2.75,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102423.0,Mushie,both,identical +125676,17.75,-2.75,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102421.0,Kutu,17.75,-2.75,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102421.0,Kutu,both,identical +125677,18.25,-2.75,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102421.0,Kutu,18.25,-2.75,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102421.0,Kutu,both,identical +125678,18.75,-2.75,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102421.0,Kutu,18.75,-2.75,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102421.0,Kutu,both,identical +125679,19.25,-2.75,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102424.0,Oshwe,19.25,-2.75,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102424.0,Oshwe,both,identical +125680,19.75,-2.75,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102424.0,Oshwe,19.75,-2.75,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102424.0,Oshwe,both,identical +125681,20.25,-2.75,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102424.0,Oshwe,20.25,-2.75,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102424.0,Oshwe,both,identical +125682,20.75,-2.75,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102424.0,Oshwe,20.75,-2.75,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102424.0,Oshwe,both,identical +125683,21.25,-2.75,COD,1217.0,Kasaï,118.0,Democratic Republic of the Congo,102326.0,Dekese,21.25,-2.75,COD,1217.0,Kasaï,118.0,Democratic Republic of the Congo,102326.0,Dekese,both,identical +125684,21.75,-2.75,COD,1217.0,Kasaï,118.0,Democratic Republic of the Congo,102326.0,Dekese,21.75,-2.75,COD,1217.0,Kasaï,118.0,Democratic Republic of the Congo,102326.0,Dekese,both,identical +125685,22.25,-2.75,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102456.0,Lomela,22.25,-2.75,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102456.0,Lomela,both,identical +125686,22.75,-2.75,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102456.0,Lomela,22.75,-2.75,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102456.0,Lomela,both,identical +125687,23.25,-2.75,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102456.0,Lomela,23.25,-2.75,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102456.0,Lomela,both,identical +125688,23.75,-2.75,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102453.0,Katako-Kombe,23.75,-2.75,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102453.0,Katako-Kombe,both,identical +125689,24.25,-2.75,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102453.0,Katako-Kombe,24.25,-2.75,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102453.0,Katako-Kombe,both,identical +125690,24.75,-2.75,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102453.0,Katako-Kombe,24.75,-2.75,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102453.0,Katako-Kombe,both,identical +125691,25.25,-2.75,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102427.0,Kailo,25.25,-2.75,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102427.0,Kailo,both,identical +125692,25.75,-2.75,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102427.0,Kailo,25.75,-2.75,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102427.0,Kailo,both,identical +125693,26.25,-2.75,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102427.0,Kailo,26.25,-2.75,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102427.0,Kailo,both,identical +125694,26.75,-2.75,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102432.0,Pangi,26.75,-2.75,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102432.0,Pangi,both,identical +125695,27.25,-2.75,COD,1232.0,Sud-Kivu,118.0,Democratic Republic of the Congo,102468.0,Shabunda,27.25,-2.75,COD,1232.0,Sud-Kivu,118.0,Democratic Republic of the Congo,102468.0,Shabunda,both,identical +125696,27.75,-2.75,COD,1232.0,Sud-Kivu,118.0,Democratic Republic of the Congo,102468.0,Shabunda,27.75,-2.75,COD,1232.0,Sud-Kivu,118.0,Democratic Republic of the Congo,102468.0,Shabunda,both,identical +125697,28.25,-2.75,COD,1232.0,Sud-Kivu,118.0,Democratic Republic of the Congo,102468.0,Shabunda,28.25,-2.75,COD,1232.0,Sud-Kivu,118.0,Democratic Republic of the Congo,102468.0,Shabunda,both,identical +125698,28.75,-2.75,COD,1232.0,Sud-Kivu,118.0,Democratic Republic of the Congo,102471.0,Walungu,28.75,-2.75,COD,1232.0,Sud-Kivu,118.0,Democratic Republic of the Congo,102471.0,Walungu,both,identical +125699,29.25,-2.75,BDI,1118.0,Cibitoke,109.0,Burundi,101891.0,Bukinanyana,29.25,-2.75,RWA,1557.0,Iburengerazuba,152.0,Rwanda,105430.0,Rusizi,both,country_reassignment +125700,29.75,-2.75,BDI,1128.0,Ngozi,109.0,Burundi,101962.0,Ngozi,29.75,-2.75,RWA,1555.0,Amajyepfo,152.0,Rwanda,105410.0,Gisagara,both,country_reassignment +125701,30.25,-2.75,BDI,1126.0,Muyinga,109.0,Burundi,101949.0,Muyinga,30.25,-2.75,BDI,1126.0,Muyinga,109.0,Burundi,101949.0,Muyinga,both,identical +125702,30.75,-2.75,TZA,1684.0,Kagera,166.0,United Republic of Tanzania,106412.0,Ngara,30.75,-2.75,TZA,1684.0,Kagera,166.0,United Republic of Tanzania,106412.0,Ngara,both,identical +125703,31.25,-2.75,TZA,1684.0,Kagera,166.0,United Republic of Tanzania,106406.0,Biharamulo,31.25,-2.75,TZA,1684.0,Kagera,166.0,United Republic of Tanzania,106406.0,Biharamulo,both,identical +125704,31.75,-2.75,TZA,1682.0,Geita,166.0,United Republic of Tanzania,106399.0,Chato,31.75,-2.75,TZA,1682.0,Geita,166.0,United Republic of Tanzania,106399.0,Chato,both,identical +125705,32.25,-2.75,TZA,1682.0,Geita,166.0,United Republic of Tanzania,106400.0,Geita,32.25,-2.75,TZA,1682.0,Geita,166.0,United Republic of Tanzania,106400.0,Geita,both,identical +125706,32.75,-2.75,TZA,1699.0,Mwanza,166.0,United Republic of Tanzania,106477.0,Sengerema,32.75,-2.75,TZA,1699.0,Mwanza,166.0,United Republic of Tanzania,106477.0,Sengerema,both,identical +125707,33.25,-2.75,TZA,1699.0,Mwanza,166.0,United Republic of Tanzania,106473.0,Kwimba,33.25,-2.75,TZA,1699.0,Mwanza,166.0,United Republic of Tanzania,106473.0,Kwimba,both,identical +125708,33.75,-2.75,TZA,1705.0,Simiyu,166.0,United Republic of Tanzania,106501.0,Bariadi,33.75,-2.75,TZA,1705.0,Simiyu,166.0,United Republic of Tanzania,106501.0,Bariadi,both,identical +125709,34.25,-2.75,TZA,1705.0,Simiyu,166.0,United Republic of Tanzania,106503.0,Itilima,34.25,-2.75,TZA,1705.0,Simiyu,166.0,United Republic of Tanzania,106503.0,Itilima,both,identical +125710,34.75,-2.75,TZA,1705.0,Simiyu,166.0,United Republic of Tanzania,106503.0,Itilima,34.75,-2.75,TZA,1705.0,Simiyu,166.0,United Republic of Tanzania,106503.0,Itilima,both,identical +125711,35.25,-2.75,TZA,1679.0,Arusha,166.0,United Republic of Tanzania,106385.0,Ngorongoro,35.25,-2.75,TZA,1679.0,Arusha,166.0,United Republic of Tanzania,106385.0,Ngorongoro,both,identical +125712,35.75,-2.75,TZA,1679.0,Arusha,166.0,United Republic of Tanzania,106385.0,Ngorongoro,35.75,-2.75,TZA,1679.0,Arusha,166.0,United Republic of Tanzania,106385.0,Ngorongoro,both,identical +125713,36.25,-2.75,TZA,1679.0,Arusha,166.0,United Republic of Tanzania,106383.0,Longido,36.25,-2.75,TZA,1679.0,Arusha,166.0,United Republic of Tanzania,106383.0,Longido,both,identical +125714,36.75,-2.75,TZA,1679.0,Arusha,166.0,United Republic of Tanzania,106383.0,Longido,36.75,-2.75,TZA,1679.0,Arusha,166.0,United Republic of Tanzania,106383.0,Longido,both,identical +125715,37.25,-2.75,KEN,1362.0,Kajiado,137.0,Kenya,103582.0,Kajiado South,37.25,-2.75,KEN,1362.0,Kajiado,137.0,Kenya,103582.0,Kajiado South,both,identical +125716,37.75,-2.75,KEN,1362.0,Kajiado,137.0,Kenya,103582.0,Kajiado South,37.75,-2.75,KEN,1362.0,Kajiado,137.0,Kenya,103582.0,Kajiado South,both,identical +125717,38.25,-2.75,KEN,1375.0,Makueni,137.0,Kenya,103667.0,Kibwezi East,38.25,-2.75,KEN,1375.0,Makueni,137.0,Kenya,103667.0,Kibwezi East,both,identical +125718,38.75,-2.75,KEN,1370.0,Kitui,137.0,Kenya,103644.0,Kitui South,38.75,-2.75,KEN,1370.0,Kitui,137.0,Kenya,103644.0,Kitui South,both,identical +125719,39.25,-2.75,KEN,1392.0,Tana River,137.0,Kenya,103782.0,Garsen,39.25,-2.75,KEN,1392.0,Tana River,137.0,Kenya,103782.0,Garsen,both,identical +125720,39.75,-2.75,KEN,1366.0,Kilifi,137.0,Kenya,103618.0,Magarini,39.75,-2.75,KEN,1366.0,Kilifi,137.0,Kenya,103618.0,Magarini,both,identical +125721,40.25,-2.75,KEN,1366.0,Kilifi,137.0,Kenya,103618.0,Magarini,40.25,-2.75,KEN,1366.0,Kilifi,137.0,Kenya,103618.0,Magarini,both,identical +125722,40.75,-2.75,KEN,1392.0,Tana River,137.0,Kenya,103782.0,Garsen,40.75,-2.75,KEN,1392.0,Tana River,137.0,Kenya,103782.0,Garsen,both,identical +126379,9.25,-2.25,GAB,1311.0,Ogooue-Maritime,127.0,Gabon,103178.0,Etimboue,9.25,-2.25,GAB,1311.0,Ogooue-Maritime,127.0,Gabon,103178.0,Etimboue,both,identical +126380,9.75,-2.25,GAB,1311.0,Ogooue-Maritime,127.0,Gabon,103179.0,Ndougou,9.75,-2.25,GAB,1311.0,Ogooue-Maritime,127.0,Gabon,103179.0,Ndougou,both,identical +126381,10.25,-2.25,GAB,1311.0,Ogooue-Maritime,127.0,Gabon,103179.0,Ndougou,10.25,-2.25,GAB,1311.0,Ogooue-Maritime,127.0,Gabon,103179.0,Ndougou,both,identical +126382,10.75,-2.25,GAB,1307.0,Ngounie,127.0,Gabon,103159.0,Mougalaba,10.75,-2.25,GAB,1307.0,Ngounie,127.0,Gabon,103159.0,Mougalaba,both,identical +126383,11.25,-2.25,GAB,1307.0,Ngounie,127.0,Gabon,103155.0,Dola,11.25,-2.25,GAB,1307.0,Ngounie,127.0,Gabon,103155.0,Dola,both,identical +126384,11.75,-2.25,GAB,1307.0,Ngounie,127.0,Gabon,103154.0,Boumi-Louetsi,11.75,-2.25,GAB,1307.0,Ngounie,127.0,Gabon,103154.0,Boumi-Louetsi,both,identical +126385,12.25,-2.25,GAB,1307.0,Ngounie,127.0,Gabon,103157.0,Louetsi-Bibaka,12.25,-2.25,GAB,1307.0,Ngounie,127.0,Gabon,103157.0,Louetsi-Bibaka,both,identical +126386,12.75,-2.25,COG,1193.0,Niari,116.0,Congo,102220.0,Mayoko,12.75,-2.25,COG,1193.0,Niari,116.0,Congo,102220.0,Mayoko,both,identical +126387,13.25,-2.25,GAB,1305.0,Haut-Ogooue,127.0,Gabon,103146.0,Lekoko,13.25,-2.25,GAB,1305.0,Haut-Ogooue,127.0,Gabon,103146.0,Lekoko,both,identical +126388,13.75,-2.25,GAB,1305.0,Haut-Ogooue,127.0,Gabon,103148.0,Ogooue-Letili,13.75,-2.25,COG,1191.0,Lekoumou,116.0,Congo,102201.0,Bambama,both,country_reassignment +126389,14.25,-2.25,COG,1194.0,Plateaux,116.0,Congo,102231.0,Lekana,14.25,-2.25,COG,1194.0,Plateaux,116.0,Congo,102231.0,Lekana,both,identical +126390,14.75,-2.25,COG,1194.0,Plateaux,116.0,Congo,102231.0,Lekana,14.75,-2.25,COG,1194.0,Plateaux,116.0,Congo,102231.0,Lekana,both,identical +126391,15.25,-2.25,COG,1194.0,Plateaux,116.0,Congo,102235.0,Ngo,15.25,-2.25,COG,1194.0,Plateaux,116.0,Congo,102235.0,Ngo,both,identical +126392,15.75,-2.25,COG,1194.0,Plateaux,116.0,Congo,102235.0,Ngo,15.75,-2.25,COG,1194.0,Plateaux,116.0,Congo,102235.0,Ngo,both,identical +126393,16.25,-2.25,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102417.0,Bolobo (City),16.25,-2.25,COG,1194.0,Plateaux,116.0,Congo,102230.0,Gamboma,both,country_reassignment +126394,16.75,-2.25,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102423.0,Mushie,16.75,-2.25,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102423.0,Mushie,both,identical +126395,17.25,-2.25,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102423.0,Mushie,17.25,-2.25,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102423.0,Mushie,both,identical +126396,17.75,-2.25,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102423.0,Mushie,17.75,-2.25,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102423.0,Mushie,both,identical +126397,18.25,-2.25,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102418.0,Inongo,18.25,-2.25,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102418.0,Inongo,both,identical +126398,18.75,-2.25,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102418.0,Inongo,18.75,-2.25,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102418.0,Inongo,both,identical +126399,19.25,-2.25,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102418.0,Inongo,19.25,-2.25,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102418.0,Inongo,both,identical +126400,19.75,-2.25,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102424.0,Oshwe,19.75,-2.25,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102424.0,Oshwe,both,identical +126401,20.25,-2.25,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102424.0,Oshwe,20.25,-2.25,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102424.0,Oshwe,both,identical +126402,20.75,-2.25,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102424.0,Oshwe,20.75,-2.25,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102424.0,Oshwe,both,identical +126403,21.25,-2.25,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102500.0,Monkoto,21.25,-2.25,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102500.0,Monkoto,both,identical +126404,21.75,-2.25,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102500.0,Monkoto,21.75,-2.25,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102500.0,Monkoto,both,identical +126405,22.25,-2.25,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102456.0,Lomela,22.25,-2.25,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102456.0,Lomela,both,identical +126406,22.75,-2.25,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102456.0,Lomela,22.75,-2.25,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102456.0,Lomela,both,identical +126407,23.25,-2.25,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102456.0,Lomela,23.25,-2.25,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102456.0,Lomela,both,identical +126408,23.75,-2.25,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102456.0,Lomela,23.75,-2.25,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102456.0,Lomela,both,identical +126409,24.25,-2.25,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102456.0,Lomela,24.25,-2.25,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102456.0,Lomela,both,identical +126410,24.75,-2.25,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102427.0,Kailo,24.75,-2.25,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102427.0,Kailo,both,identical +126411,25.25,-2.25,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102427.0,Kailo,25.25,-2.25,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102427.0,Kailo,both,identical +126412,25.75,-2.25,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102427.0,Kailo,25.75,-2.25,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102427.0,Kailo,both,identical +126413,26.25,-2.25,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102427.0,Kailo,26.25,-2.25,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102427.0,Kailo,both,identical +126414,26.75,-2.25,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102427.0,Kailo,26.75,-2.25,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102427.0,Kailo,both,identical +126415,27.25,-2.25,COD,1232.0,Sud-Kivu,118.0,Democratic Republic of the Congo,102468.0,Shabunda,27.25,-2.25,COD,1232.0,Sud-Kivu,118.0,Democratic Republic of the Congo,102468.0,Shabunda,both,identical +126416,27.75,-2.25,COD,1232.0,Sud-Kivu,118.0,Democratic Republic of the Congo,102468.0,Shabunda,27.75,-2.25,COD,1232.0,Sud-Kivu,118.0,Democratic Republic of the Congo,102468.0,Shabunda,both,identical +126417,28.25,-2.25,COD,1232.0,Sud-Kivu,118.0,Democratic Republic of the Congo,102468.0,Shabunda,28.25,-2.25,COD,1232.0,Sud-Kivu,118.0,Democratic Republic of the Congo,102468.0,Shabunda,both,identical +126418,28.75,-2.25,COD,1232.0,Sud-Kivu,118.0,Democratic Republic of the Congo,102466.0,Kalehe,28.75,-2.25,COD,1232.0,Sud-Kivu,118.0,Democratic Republic of the Congo,102466.0,Kalehe,both,identical +126419,29.25,-2.25,RWA,1557.0,Iburengerazuba,152.0,Rwanda,105428.0,Nyamasheke,29.25,-2.25,RWA,1557.0,Iburengerazuba,152.0,Rwanda,105428.0,Nyamasheke,both,identical +126420,29.75,-2.25,RWA,1555.0,Amajyepfo,152.0,Rwanda,105415.0,Nyanza,29.75,-2.25,RWA,1555.0,Amajyepfo,152.0,Rwanda,105415.0,Nyanza,both,identical +126421,30.25,-2.25,RWA,1556.0,Iburasirazuba,152.0,Rwanda,105418.0,Bugesera,30.25,-2.25,RWA,1556.0,Iburasirazuba,152.0,Rwanda,105418.0,Bugesera,both,identical +126422,30.75,-2.25,RWA,1556.0,Iburasirazuba,152.0,Rwanda,105421.0,Kirehe,30.75,-2.25,RWA,1556.0,Iburasirazuba,152.0,Rwanda,105421.0,Kirehe,both,identical +126423,31.25,-2.25,TZA,1684.0,Kagera,166.0,United Republic of Tanzania,106406.0,Biharamulo,31.25,-2.25,TZA,1684.0,Kagera,166.0,United Republic of Tanzania,106406.0,Biharamulo,both,identical +126424,31.75,-2.25,TZA,1684.0,Kagera,166.0,United Republic of Tanzania,106411.0,Muleba,31.75,-2.25,TZA,1684.0,Kagera,166.0,United Republic of Tanzania,106411.0,Muleba,both,identical +126425,32.25,-2.25,TZA,1699.0,Mwanza,166.0,United Republic of Tanzania,900024.0,Waterbody,32.25,-2.25,TZA,1699.0,Mwanza,166.0,United Republic of Tanzania,900024.0,Waterbody,both,identical +126426,32.75,-2.25,TZA,1699.0,Mwanza,166.0,United Republic of Tanzania,900024.0,Waterbody,32.75,-2.25,TZA,1699.0,Mwanza,166.0,United Republic of Tanzania,900024.0,Waterbody,both,identical +126427,33.25,-2.25,TZA,1699.0,Mwanza,166.0,United Republic of Tanzania,900024.0,Waterbody,33.25,-2.25,TZA,1699.0,Mwanza,166.0,United Republic of Tanzania,900024.0,Waterbody,both,identical +126428,33.75,-2.25,TZA,1694.0,Mara,166.0,United Republic of Tanzania,106502.0,Busega,33.75,-2.25,TZA,1705.0,Simiyu,166.0,United Republic of Tanzania,106502.0,Busega,both,admin_reallocation +126429,34.25,-2.25,TZA,1694.0,Mara,166.0,United Republic of Tanzania,106450.0,Serengeri,34.25,-2.25,TZA,1694.0,Mara,166.0,United Republic of Tanzania,106450.0,Serengeri,both,identical +126430,34.75,-2.25,TZA,1694.0,Mara,166.0,United Republic of Tanzania,106450.0,Serengeri,34.75,-2.25,TZA,1694.0,Mara,166.0,United Republic of Tanzania,106450.0,Serengeri,both,identical +126431,35.25,-2.25,TZA,1679.0,Arusha,166.0,United Republic of Tanzania,106385.0,Ngorongoro,35.25,-2.25,TZA,1679.0,Arusha,166.0,United Republic of Tanzania,106385.0,Ngorongoro,both,identical +126432,35.75,-2.25,TZA,1679.0,Arusha,166.0,United Republic of Tanzania,106385.0,Ngorongoro,35.75,-2.25,TZA,1679.0,Arusha,166.0,United Republic of Tanzania,106385.0,Ngorongoro,both,identical +126433,36.25,-2.25,KEN,1362.0,Kajiado,137.0,Kenya,103583.0,Kajiado West,36.25,-2.25,KEN,1362.0,Kajiado,137.0,Kenya,103583.0,Kajiado West,both,identical +126434,36.75,-2.25,KEN,1362.0,Kajiado,137.0,Kenya,103579.0,Kajiado Central,36.75,-2.25,KEN,1362.0,Kajiado,137.0,Kenya,103579.0,Kajiado Central,both,identical +126435,37.25,-2.25,KEN,1362.0,Kajiado,137.0,Kenya,103582.0,Kajiado South,37.25,-2.25,KEN,1362.0,Kajiado,137.0,Kenya,103582.0,Kajiado South,both,identical +126436,37.75,-2.25,KEN,1375.0,Makueni,137.0,Kenya,103668.0,Kibwezi West,37.75,-2.25,KEN,1375.0,Makueni,137.0,Kenya,103668.0,Kibwezi West,both,identical +126437,38.25,-2.25,KEN,1370.0,Kitui,137.0,Kenya,103644.0,Kitui South,38.25,-2.25,KEN,1370.0,Kitui,137.0,Kenya,103644.0,Kitui South,both,identical +126438,38.75,-2.25,KEN,1370.0,Kitui,137.0,Kenya,103644.0,Kitui South,38.75,-2.25,KEN,1370.0,Kitui,137.0,Kenya,103644.0,Kitui South,both,identical +126439,39.25,-2.25,KEN,1392.0,Tana River,137.0,Kenya,103782.0,Garsen,39.25,-2.25,KEN,1392.0,Tana River,137.0,Kenya,103782.0,Garsen,both,identical +126440,39.75,-2.25,KEN,1392.0,Tana River,137.0,Kenya,103782.0,Garsen,39.75,-2.25,KEN,1392.0,Tana River,137.0,Kenya,103782.0,Garsen,both,identical +126441,40.25,-2.25,KEN,1392.0,Tana River,137.0,Kenya,103782.0,Garsen,40.25,-2.25,KEN,1392.0,Tana River,137.0,Kenya,103782.0,Garsen,both,identical +126442,40.75,-2.25,KEN,1373.0,Lamu,137.0,Kenya,103657.0,Lamu West,40.75,-2.25,KEN,1373.0,Lamu,137.0,Kenya,103657.0,Lamu West,both,identical +126443,41.25,-2.25,KEN,1373.0,Lamu,137.0,Kenya,103656.0,Lamu East,41.25,-2.25,KEN,1373.0,Lamu,137.0,Kenya,103656.0,Lamu East,both,identical +127099,9.25,-1.75,GAB,1311.0,Ogooue-Maritime,127.0,Gabon,103178.0,Etimboue,9.25,-1.75,GAB,1311.0,Ogooue-Maritime,127.0,Gabon,103178.0,Etimboue,both,identical +127100,9.75,-1.75,GAB,1311.0,Ogooue-Maritime,127.0,Gabon,103178.0,Etimboue,9.75,-1.75,GAB,1311.0,Ogooue-Maritime,127.0,Gabon,103178.0,Etimboue,both,identical +127101,10.25,-1.75,GAB,1307.0,Ngounie,127.0,Gabon,103160.0,Ndolou,10.25,-1.75,GAB,1307.0,Ngounie,127.0,Gabon,103160.0,Ndolou,both,identical +127102,10.75,-1.75,GAB,1307.0,Ngounie,127.0,Gabon,103162.0,Tsamba-Magotsi,10.75,-1.75,GAB,1307.0,Ngounie,127.0,Gabon,103162.0,Tsamba-Magotsi,both,identical +127103,11.25,-1.75,GAB,1307.0,Ngounie,127.0,Gabon,103161.0,Ogoulou,11.25,-1.75,GAB,1307.0,Ngounie,127.0,Gabon,103161.0,Ogoulou,both,identical +127104,11.75,-1.75,GAB,1307.0,Ngounie,127.0,Gabon,103154.0,Boumi-Louetsi,11.75,-1.75,GAB,1307.0,Ngounie,127.0,Gabon,103154.0,Boumi-Louetsi,both,identical +127105,12.25,-1.75,GAB,1310.0,Ogooue-Lolo,127.0,Gabon,103173.0,Lolo-Bouenguidi,12.25,-1.75,GAB,1310.0,Ogooue-Lolo,127.0,Gabon,103173.0,Lolo-Bouenguidi,both,identical +127106,12.75,-1.75,GAB,1310.0,Ogooue-Lolo,127.0,Gabon,103174.0,Lombo-Bouenguidi,12.75,-1.75,GAB,1310.0,Ogooue-Lolo,127.0,Gabon,103174.0,Lombo-Bouenguidi,both,identical +127107,13.25,-1.75,GAB,1305.0,Haut-Ogooue,127.0,Gabon,103146.0,Lekoko,13.25,-1.75,GAB,1305.0,Haut-Ogooue,127.0,Gabon,103146.0,Lekoko,both,identical +127108,13.75,-1.75,GAB,1305.0,Haut-Ogooue,127.0,Gabon,103149.0,Passa,13.75,-1.75,GAB,1305.0,Haut-Ogooue,127.0,Gabon,103149.0,Passa,both,identical +127109,14.25,-1.75,GAB,1305.0,Haut-Ogooue,127.0,Gabon,103150.0,Plateaux,14.25,-1.75,GAB,1305.0,Haut-Ogooue,127.0,Gabon,103150.0,Plateaux,both,identical +127110,14.75,-1.75,COG,1189.0,Cuvette-Ouest,116.0,Congo,102194.0,Okoyo,14.75,-1.75,COG,1189.0,Cuvette-Ouest,116.0,Congo,102194.0,Okoyo,both,identical +127111,15.25,-1.75,COG,1194.0,Plateaux,116.0,Congo,102227.0,Abala,15.25,-1.75,COG,1194.0,Plateaux,116.0,Congo,102227.0,Abala,both,identical +127112,15.75,-1.75,COG,1194.0,Plateaux,116.0,Congo,102230.0,Gamboma,15.75,-1.75,COG,1194.0,Plateaux,116.0,Congo,102230.0,Gamboma,both,identical +127113,16.25,-1.75,COG,1194.0,Plateaux,116.0,Congo,102232.0,Makotimpoko,16.25,-1.75,COG,1194.0,Plateaux,116.0,Congo,102232.0,Makotimpoko,both,identical +127114,16.75,-1.75,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102507.0,Lukolela,16.75,-1.75,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102507.0,Lukolela,both,identical +127115,17.25,-1.75,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102418.0,Inongo,17.25,-1.75,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102418.0,Inongo,both,identical +127116,17.75,-1.75,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102418.0,Inongo,17.75,-1.75,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102418.0,Inongo,both,identical +127117,18.25,-1.75,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102418.0,Inongo,18.25,-1.75,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102418.0,Inongo,both,identical +127118,18.75,-1.75,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102420.0,Kiri,18.75,-1.75,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102420.0,Kiri,both,identical +127119,19.25,-1.75,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102420.0,Kiri,19.25,-1.75,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102420.0,Kiri,both,identical +127120,19.75,-1.75,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102500.0,Monkoto,19.75,-1.75,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102500.0,Monkoto,both,admin_reallocation +127121,20.25,-1.75,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102500.0,Monkoto,20.25,-1.75,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102500.0,Monkoto,both,identical +127122,20.75,-1.75,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102500.0,Monkoto,20.75,-1.75,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102500.0,Monkoto,both,identical +127123,21.25,-1.75,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102500.0,Monkoto,21.25,-1.75,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102500.0,Monkoto,both,identical +127124,21.75,-1.75,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102500.0,Monkoto,21.75,-1.75,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102500.0,Monkoto,both,identical +127125,22.25,-1.75,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102497.0,Bokungu,22.25,-1.75,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102497.0,Bokungu,both,identical +127126,22.75,-1.75,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102499.0,Ikela,22.75,-1.75,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102499.0,Ikela,both,identical +127127,23.25,-1.75,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102499.0,Ikela,23.25,-1.75,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102499.0,Ikela,both,identical +127128,23.75,-1.75,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102499.0,Ikela,23.75,-1.75,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102499.0,Ikela,both,identical +127129,24.25,-1.75,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102456.0,Lomela,24.25,-1.75,COD,1231.0,Sankuru,118.0,Democratic Republic of the Congo,102456.0,Lomela,both,identical +127130,24.75,-1.75,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102490.0,Opala,24.75,-1.75,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102490.0,Opala,both,identical +127131,25.25,-1.75,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102491.0,Ubundu,25.25,-1.75,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102491.0,Ubundu,both,identical +127132,25.75,-1.75,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102491.0,Ubundu,25.75,-1.75,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102491.0,Ubundu,both,identical +127133,26.25,-1.75,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102433.0,Punia,26.25,-1.75,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102433.0,Punia,both,identical +127134,26.75,-1.75,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102433.0,Punia,26.75,-1.75,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102433.0,Punia,both,identical +127135,27.25,-1.75,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102433.0,Punia,27.25,-1.75,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102433.0,Punia,both,identical +127136,27.75,-1.75,COD,1229.0,Nord-Kivu,118.0,Democratic Republic of the Congo,102447.0,Walikale,27.75,-1.75,COD,1229.0,Nord-Kivu,118.0,Democratic Republic of the Congo,102447.0,Walikale,both,identical +127137,28.25,-1.75,COD,1229.0,Nord-Kivu,118.0,Democratic Republic of the Congo,102447.0,Walikale,28.25,-1.75,COD,1229.0,Nord-Kivu,118.0,Democratic Republic of the Congo,102447.0,Walikale,both,identical +127138,28.75,-1.75,COD,1229.0,Nord-Kivu,118.0,Democratic Republic of the Congo,102444.0,Masisi,28.75,-1.75,COD,1229.0,Nord-Kivu,118.0,Democratic Republic of the Congo,102444.0,Masisi,both,identical +127139,29.25,-1.75,RWA,1557.0,Iburengerazuba,152.0,Rwanda,105431.0,Rutsiro,29.25,-1.75,RWA,1557.0,Iburengerazuba,152.0,Rwanda,105431.0,Rutsiro,both,identical +127140,29.75,-1.75,RWA,1554.0,Amajyaruguru,152.0,Rwanda,105406.0,Gakenke,29.75,-1.75,RWA,1554.0,Amajyaruguru,152.0,Rwanda,105406.0,Gakenke,both,identical +127141,30.25,-1.75,RWA,1556.0,Iburasirazuba,152.0,Rwanda,105419.0,Gatsibo,30.25,-1.75,RWA,1556.0,Iburasirazuba,152.0,Rwanda,105419.0,Gatsibo,both,identical +127142,30.75,-1.75,RWA,1556.0,Iburasirazuba,152.0,Rwanda,105420.0,Kayonza,30.75,-1.75,RWA,1556.0,Iburasirazuba,152.0,Rwanda,105420.0,Kayonza,both,identical +127143,31.25,-1.75,TZA,1684.0,Kagera,166.0,United Republic of Tanzania,106408.0,Karagwe,31.25,-1.75,TZA,1684.0,Kagera,166.0,United Republic of Tanzania,106408.0,Karagwe,both,identical +127144,31.75,-1.75,TZA,1684.0,Kagera,166.0,United Republic of Tanzania,900018.0,Waterbody,31.75,-1.75,TZA,1684.0,Kagera,166.0,United Republic of Tanzania,900018.0,Waterbody,both,identical +127145,32.25,-1.75,TZA,1684.0,Kagera,166.0,United Republic of Tanzania,900018.0,Waterbody,32.25,-1.75,TZA,1684.0,Kagera,166.0,United Republic of Tanzania,900018.0,Waterbody,both,identical +127146,32.75,-1.75,TZA,1699.0,Mwanza,166.0,United Republic of Tanzania,900024.0,Waterbody,32.75,-1.75,TZA,1699.0,Mwanza,166.0,United Republic of Tanzania,900024.0,Waterbody,both,identical +127147,33.25,-1.75,TZA,1699.0,Mwanza,166.0,United Republic of Tanzania,900024.0,Waterbody,33.25,-1.75,TZA,1699.0,Mwanza,166.0,United Republic of Tanzania,900024.0,Waterbody,both,identical +127148,33.75,-1.75,TZA,1694.0,Mara,166.0,United Republic of Tanzania,106447.0,Butiama,33.75,-1.75,TZA,1694.0,Mara,166.0,United Republic of Tanzania,106447.0,Butiama,both,identical +127149,34.25,-1.75,TZA,1694.0,Mara,166.0,United Republic of Tanzania,106450.0,Serengeri,34.25,-1.75,TZA,1694.0,Mara,166.0,United Republic of Tanzania,106450.0,Serengeri,both,identical +127150,34.75,-1.75,TZA,1694.0,Mara,166.0,United Republic of Tanzania,106450.0,Serengeri,34.75,-1.75,TZA,1694.0,Mara,166.0,United Republic of Tanzania,106450.0,Serengeri,both,identical +127151,35.25,-1.75,TZA,1694.0,Mara,166.0,United Republic of Tanzania,106450.0,Serengeri,35.25,-1.75,TZA,1694.0,Mara,166.0,United Republic of Tanzania,106450.0,Serengeri,both,identical +127152,35.75,-1.75,KEN,1385.0,Narok,137.0,Kenya,103750.0,Narok South,35.75,-1.75,KEN,1385.0,Narok,137.0,Kenya,103750.0,Narok South,both,identical +127153,36.25,-1.75,KEN,1362.0,Kajiado,137.0,Kenya,103583.0,Kajiado West,36.25,-1.75,KEN,1362.0,Kajiado,137.0,Kenya,103583.0,Kajiado West,both,identical +127154,36.75,-1.75,KEN,1362.0,Kajiado,137.0,Kenya,103583.0,Kajiado West,36.75,-1.75,KEN,1362.0,Kajiado,137.0,Kenya,103583.0,Kajiado West,both,identical +127155,37.25,-1.75,KEN,1375.0,Makueni,137.0,Kenya,103669.0,Kilome,37.25,-1.75,KEN,1375.0,Makueni,137.0,Kenya,103669.0,Kilome,both,identical +127156,37.75,-1.75,KEN,1375.0,Makueni,137.0,Kenya,103670.0,Makueni,37.75,-1.75,KEN,1375.0,Makueni,137.0,Kenya,103670.0,Makueni,both,identical +127157,38.25,-1.75,KEN,1370.0,Kitui,137.0,Kenya,103644.0,Kitui South,38.25,-1.75,KEN,1370.0,Kitui,137.0,Kenya,103644.0,Kitui South,both,identical +127158,38.75,-1.75,KEN,1370.0,Kitui,137.0,Kenya,103644.0,Kitui South,38.75,-1.75,KEN,1370.0,Kitui,137.0,Kenya,103644.0,Kitui South,both,identical +127159,39.25,-1.75,KEN,1392.0,Tana River,137.0,Kenya,103781.0,Galole,39.25,-1.75,KEN,1392.0,Tana River,137.0,Kenya,103781.0,Galole,both,identical +127160,39.75,-1.75,KEN,1392.0,Tana River,137.0,Kenya,103781.0,Galole,39.75,-1.75,KEN,1392.0,Tana River,137.0,Kenya,103781.0,Galole,both,identical +127161,40.25,-1.75,KEN,1359.0,Garissa,137.0,Kenya,103567.0,Ijara,40.25,-1.75,KEN,1359.0,Garissa,137.0,Kenya,103567.0,Ijara,both,identical +127162,40.75,-1.75,KEN,1359.0,Garissa,137.0,Kenya,103567.0,Ijara,40.75,-1.75,KEN,1359.0,Garissa,137.0,Kenya,103567.0,Ijara,both,identical +127163,41.25,-1.75,KEN,1373.0,Lamu,137.0,Kenya,103656.0,Lamu East,41.25,-1.75,KEN,1373.0,Lamu,137.0,Kenya,103656.0,Lamu East,both,identical +127164,41.75,-1.75,SOM,1597.0,Lower Juba,158.0,Somalia,105570.0,Badhaadhe,41.75,-1.75,SOM,1597.0,Lower Juba,158.0,Somalia,105570.0,Badhaadhe,both,identical +127818,8.75,-1.25,GAB,1311.0,Ogooue-Maritime,127.0,Gabon,103178.0,Etimboue,8.75,-1.25,GAB,1311.0,Ogooue-Maritime,127.0,Gabon,103178.0,Etimboue,both,identical +127819,9.25,-1.25,GAB,1311.0,Ogooue-Maritime,127.0,Gabon,103178.0,Etimboue,9.25,-1.25,GAB,1311.0,Ogooue-Maritime,127.0,Gabon,103178.0,Etimboue,both,identical +127820,9.75,-1.25,GAB,1311.0,Ogooue-Maritime,127.0,Gabon,103177.0,Bendje,9.75,-1.25,GAB,1311.0,Ogooue-Maritime,127.0,Gabon,103177.0,Bendje,both,identical +127821,10.25,-1.25,GAB,1307.0,Ngounie,127.0,Gabon,103160.0,Ndolou,10.25,-1.25,GAB,1307.0,Ngounie,127.0,Gabon,103160.0,Ndolou,both,identical +127822,10.75,-1.25,GAB,1307.0,Ngounie,127.0,Gabon,103162.0,Tsamba-Magotsi,10.75,-1.25,GAB,1307.0,Ngounie,127.0,Gabon,103162.0,Tsamba-Magotsi,both,identical +127823,11.25,-1.25,GAB,1307.0,Ngounie,127.0,Gabon,103161.0,Ogoulou,11.25,-1.25,GAB,1307.0,Ngounie,127.0,Gabon,103161.0,Ogoulou,both,identical +127824,11.75,-1.25,GAB,1307.0,Ngounie,127.0,Gabon,103161.0,Ogoulou,11.75,-1.25,GAB,1307.0,Ngounie,127.0,Gabon,103161.0,Ogoulou,both,identical +127825,12.25,-1.25,GAB,1310.0,Ogooue-Lolo,127.0,Gabon,103173.0,Lolo-Bouenguidi,12.25,-1.25,GAB,1310.0,Ogooue-Lolo,127.0,Gabon,103173.0,Lolo-Bouenguidi,both,identical +127826,12.75,-1.25,GAB,1310.0,Ogooue-Lolo,127.0,Gabon,103174.0,Lombo-Bouenguidi,12.75,-1.25,GAB,1310.0,Ogooue-Lolo,127.0,Gabon,103174.0,Lombo-Bouenguidi,both,identical +127827,13.25,-1.25,GAB,1305.0,Haut-Ogooue,127.0,Gabon,103144.0,Lebombi-Leyou,13.25,-1.25,GAB,1305.0,Haut-Ogooue,127.0,Gabon,103144.0,Lebombi-Leyou,both,identical +127828,13.75,-1.25,GAB,1305.0,Haut-Ogooue,127.0,Gabon,103145.0,Lekabi-Lewolo,13.75,-1.25,GAB,1305.0,Haut-Ogooue,127.0,Gabon,103145.0,Lekabi-Lewolo,both,identical +127829,14.25,-1.25,GAB,1305.0,Haut-Ogooue,127.0,Gabon,103150.0,Plateaux,14.25,-1.25,GAB,1305.0,Haut-Ogooue,127.0,Gabon,103150.0,Plateaux,both,identical +127830,14.75,-1.25,COG,1189.0,Cuvette-Ouest,116.0,Congo,102194.0,Okoyo,14.75,-1.25,COG,1189.0,Cuvette-Ouest,116.0,Congo,102194.0,Okoyo,both,identical +127831,15.25,-1.25,COG,1194.0,Plateaux,116.0,Congo,102228.0,Allembe,15.25,-1.25,COG,1194.0,Plateaux,116.0,Congo,102228.0,Allembe,both,identical +127832,15.75,-1.25,COG,1194.0,Plateaux,116.0,Congo,102236.0,Ollombo,15.75,-1.25,COG,1194.0,Plateaux,116.0,Congo,102236.0,Ollombo,both,identical +127833,16.25,-1.25,COG,1188.0,Cuvette,116.0,Congo,102188.0,Tchikapika,16.25,-1.25,COG,1188.0,Cuvette,116.0,Congo,102188.0,Tchikapika,both,identical +127834,16.75,-1.25,COG,1188.0,Cuvette,116.0,Congo,102183.0,Mossaka,16.75,-1.25,COG,1188.0,Cuvette,116.0,Congo,102183.0,Mossaka,both,identical +127835,17.25,-1.25,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102507.0,Lukolela,17.25,-1.25,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102507.0,Lukolela,both,identical +127836,17.75,-1.25,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102503.0,Bikoro,17.75,-1.25,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102503.0,Bikoro,both,identical +127837,18.25,-1.25,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102418.0,Inongo,18.25,-1.25,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102418.0,Inongo,both,identical +127838,18.75,-1.25,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102420.0,Kiri,18.75,-1.25,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102420.0,Kiri,both,identical +127839,19.25,-1.25,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102420.0,Kiri,19.25,-1.25,COD,1226.0,Mai-Ndombe,118.0,Democratic Republic of the Congo,102420.0,Kiri,both,identical +127840,19.75,-1.25,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102500.0,Monkoto,19.75,-1.25,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102500.0,Monkoto,both,identical +127841,20.25,-1.25,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102500.0,Monkoto,20.25,-1.25,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102500.0,Monkoto,both,identical +127842,20.75,-1.25,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102500.0,Monkoto,20.75,-1.25,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102500.0,Monkoto,both,identical +127843,21.25,-1.25,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102500.0,Monkoto,21.25,-1.25,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102500.0,Monkoto,both,identical +127844,21.75,-1.25,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102500.0,Monkoto,21.75,-1.25,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102500.0,Monkoto,both,identical +127845,22.25,-1.25,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102497.0,Bokungu,22.25,-1.25,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102497.0,Bokungu,both,identical +127846,22.75,-1.25,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102497.0,Bokungu,22.75,-1.25,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102497.0,Bokungu,both,identical +127847,23.25,-1.25,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102499.0,Ikela,23.25,-1.25,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102499.0,Ikela,both,identical +127848,23.75,-1.25,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102499.0,Ikela,23.75,-1.25,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102499.0,Ikela,both,identical +127849,24.25,-1.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102490.0,Opala,24.25,-1.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102490.0,Opala,both,identical +127850,24.75,-1.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102490.0,Opala,24.75,-1.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102490.0,Opala,both,identical +127851,25.25,-1.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102491.0,Ubundu,25.25,-1.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102491.0,Ubundu,both,identical +127852,25.75,-1.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102491.0,Ubundu,25.75,-1.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102491.0,Ubundu,both,identical +127853,26.25,-1.25,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102431.0,Lubutu,26.25,-1.25,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102431.0,Lubutu,both,identical +127854,26.75,-1.25,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102431.0,Lubutu,26.75,-1.25,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102431.0,Lubutu,both,identical +127855,27.25,-1.25,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102433.0,Punia,27.25,-1.25,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102433.0,Punia,both,identical +127856,27.75,-1.25,COD,1229.0,Nord-Kivu,118.0,Democratic Republic of the Congo,102447.0,Walikale,27.75,-1.25,COD,1229.0,Nord-Kivu,118.0,Democratic Republic of the Congo,102447.0,Walikale,both,identical +127857,28.25,-1.25,COD,1229.0,Nord-Kivu,118.0,Democratic Republic of the Congo,102447.0,Walikale,28.25,-1.25,COD,1229.0,Nord-Kivu,118.0,Democratic Republic of the Congo,102447.0,Walikale,both,identical +127858,28.75,-1.25,COD,1229.0,Nord-Kivu,118.0,Democratic Republic of the Congo,102444.0,Masisi,28.75,-1.25,COD,1229.0,Nord-Kivu,118.0,Democratic Republic of the Congo,102444.0,Masisi,both,identical +127859,29.25,-1.25,COD,1229.0,Nord-Kivu,118.0,Democratic Republic of the Congo,102446.0,Rutshuru,29.25,-1.25,COD,1229.0,Nord-Kivu,118.0,Democratic Republic of the Congo,102446.0,Rutshuru,both,identical +127860,29.75,-1.25,UGA,1678.0,Western,165.0,Uganda,106374.0,Rubanda,29.75,-1.25,UGA,1678.0,Western,165.0,Uganda,106374.0,Rubanda,both,identical +127861,30.25,-1.25,RWA,1556.0,Iburasirazuba,152.0,Rwanda,105423.0,Nyagatare,30.25,-1.25,RWA,1556.0,Iburasirazuba,152.0,Rwanda,105423.0,Nyagatare,both,identical +127862,30.75,-1.25,TZA,1684.0,Kagera,166.0,United Republic of Tanzania,106409.0,Kyerwa,30.75,-1.25,TZA,1684.0,Kagera,166.0,United Republic of Tanzania,106409.0,Kyerwa,both,identical +127863,31.25,-1.25,TZA,1684.0,Kagera,166.0,United Republic of Tanzania,106410.0,Missenyi,31.25,-1.25,TZA,1684.0,Kagera,166.0,United Republic of Tanzania,106410.0,Missenyi,both,identical +127864,31.75,-1.25,TZA,1684.0,Kagera,166.0,United Republic of Tanzania,106410.0,Missenyi,31.75,-1.25,TZA,1684.0,Kagera,166.0,United Republic of Tanzania,106410.0,Missenyi,both,identical +127865,32.25,-1.25,TZA,1684.0,Kagera,166.0,United Republic of Tanzania,900018.0,Waterbody,32.25,-1.25,TZA,1684.0,Kagera,166.0,United Republic of Tanzania,900018.0,Waterbody,both,identical +127866,32.75,-1.25,TZA,1684.0,Kagera,166.0,United Republic of Tanzania,900018.0,Waterbody,32.75,-1.25,TZA,1684.0,Kagera,166.0,United Republic of Tanzania,900018.0,Waterbody,both,identical +127867,33.25,-1.25,TZA,1694.0,Mara,166.0,United Republic of Tanzania,900022.0,Waterbody,33.25,-1.25,TZA,1694.0,Mara,166.0,United Republic of Tanzania,900022.0,Waterbody,both,identical +127868,33.75,-1.25,TZA,1694.0,Mara,166.0,United Republic of Tanzania,900022.0,Waterbody,33.75,-1.25,TZA,1694.0,Mara,166.0,United Republic of Tanzania,900022.0,Waterbody,both,identical +127869,34.25,-1.25,TZA,1694.0,Mara,166.0,United Republic of Tanzania,106449.0,Rorya,34.25,-1.25,TZA,1694.0,Mara,166.0,United Republic of Tanzania,106449.0,Rorya,both,identical +127870,34.75,-1.25,KEN,1385.0,Narok,137.0,Kenya,103747.0,Kilgoris,34.75,-1.25,KEN,1385.0,Narok,137.0,Kenya,103747.0,Kilgoris,both,identical +127871,35.25,-1.25,KEN,1385.0,Narok,137.0,Kenya,103751.0,Narok West,35.25,-1.25,KEN,1385.0,Narok,137.0,Kenya,103751.0,Narok West,both,identical +127872,35.75,-1.25,KEN,1385.0,Narok,137.0,Kenya,103750.0,Narok South,35.75,-1.25,KEN,1385.0,Narok,137.0,Kenya,103750.0,Narok South,both,identical +127873,36.25,-1.25,KEN,1385.0,Narok,137.0,Kenya,103748.0,Narok East,36.25,-1.25,KEN,1385.0,Narok,137.0,Kenya,103748.0,Narok East,both,identical +127874,36.75,-1.25,KEN,1365.0,Kiambu,137.0,Kenya,103583.0,Kajiado West,36.75,-1.25,KEN,1362.0,Kajiado,137.0,Kenya,103583.0,Kajiado West,both,admin_reallocation +127875,37.25,-1.25,KEN,1374.0,Machakos,137.0,Kenya,103662.0,Matungulu,37.25,-1.25,KEN,1374.0,Machakos,137.0,Kenya,103662.0,Matungulu,both,identical +127876,37.75,-1.25,KEN,1370.0,Kitui,137.0,Kenya,103665.0,Yatta,37.75,-1.25,KEN,1374.0,Machakos,137.0,Kenya,103665.0,Yatta,both,admin_reallocation +127877,38.25,-1.25,KEN,1370.0,Kitui,137.0,Kenya,103642.0,Kitui East,38.25,-1.25,KEN,1370.0,Kitui,137.0,Kenya,103642.0,Kitui East,both,identical +127878,38.75,-1.25,KEN,1370.0,Kitui,137.0,Kenya,103642.0,Kitui East,38.75,-1.25,KEN,1370.0,Kitui,137.0,Kenya,103642.0,Kitui East,both,identical +127879,39.25,-1.25,KEN,1392.0,Tana River,137.0,Kenya,103781.0,Galole,39.25,-1.25,KEN,1392.0,Tana River,137.0,Kenya,103781.0,Galole,both,identical +127880,39.75,-1.25,KEN,1392.0,Tana River,137.0,Kenya,103781.0,Galole,39.75,-1.25,KEN,1392.0,Tana River,137.0,Kenya,103781.0,Galole,both,identical +127881,40.25,-1.25,KEN,1359.0,Garissa,137.0,Kenya,103566.0,Fafi,40.25,-1.25,KEN,1359.0,Garissa,137.0,Kenya,103566.0,Fafi,both,identical +127882,40.75,-1.25,KEN,1359.0,Garissa,137.0,Kenya,103566.0,Fafi,40.75,-1.25,KEN,1359.0,Garissa,137.0,Kenya,103566.0,Fafi,both,identical +127883,41.25,-1.25,KEN,1359.0,Garissa,137.0,Kenya,103567.0,Ijara,41.25,-1.25,KEN,1359.0,Garissa,137.0,Kenya,103567.0,Ijara,both,identical +127884,41.75,-1.25,SOM,1597.0,Lower Juba,158.0,Somalia,105570.0,Badhaadhe,41.75,-1.25,SOM,1597.0,Lower Juba,158.0,Somalia,105570.0,Badhaadhe,both,identical +128538,8.75,-0.75,GAB,1311.0,Ogooue-Maritime,127.0,Gabon,103177.0,Bendje,8.75,-0.75,GAB,1311.0,Ogooue-Maritime,127.0,Gabon,103177.0,Bendje,both,identical +128539,9.25,-0.75,GAB,1311.0,Ogooue-Maritime,127.0,Gabon,103177.0,Bendje,9.25,-0.75,GAB,1311.0,Ogooue-Maritime,127.0,Gabon,103177.0,Bendje,both,identical +128540,9.75,-0.75,GAB,1306.0,Moyen-Ogooue,127.0,Gabon,103153.0,Ogooue Et Lacs,9.75,-0.75,GAB,1306.0,Moyen-Ogooue,127.0,Gabon,103153.0,Ogooue Et Lacs,both,identical +128541,10.25,-0.75,GAB,1306.0,Moyen-Ogooue,127.0,Gabon,103153.0,Ogooue Et Lacs,10.25,-0.75,GAB,1306.0,Moyen-Ogooue,127.0,Gabon,103153.0,Ogooue Et Lacs,both,identical +128542,10.75,-0.75,GAB,1307.0,Ngounie,127.0,Gabon,103162.0,Tsamba-Magotsi,10.75,-0.75,GAB,1307.0,Ngounie,127.0,Gabon,103162.0,Tsamba-Magotsi,both,identical +128543,11.25,-0.75,GAB,1307.0,Ngounie,127.0,Gabon,103161.0,Ogoulou,11.25,-0.75,GAB,1307.0,Ngounie,127.0,Gabon,103161.0,Ogoulou,both,identical +128544,11.75,-0.75,GAB,1310.0,Ogooue-Lolo,127.0,Gabon,103176.0,Offoue-Onoye,11.75,-0.75,GAB,1310.0,Ogooue-Lolo,127.0,Gabon,103176.0,Offoue-Onoye,both,identical +128545,12.25,-0.75,GAB,1310.0,Ogooue-Lolo,127.0,Gabon,103173.0,Lolo-Bouenguidi,12.25,-0.75,GAB,1310.0,Ogooue-Lolo,127.0,Gabon,103173.0,Lolo-Bouenguidi,both,identical +128546,12.75,-0.75,GAB,1310.0,Ogooue-Lolo,127.0,Gabon,103175.0,Mouloundou,12.75,-0.75,GAB,1310.0,Ogooue-Lolo,127.0,Gabon,103175.0,Mouloundou,both,identical +128547,13.25,-0.75,GAB,1310.0,Ogooue-Lolo,127.0,Gabon,103175.0,Mouloundou,13.25,-0.75,GAB,1310.0,Ogooue-Lolo,127.0,Gabon,103175.0,Mouloundou,both,identical +128548,13.75,-0.75,GAB,1305.0,Haut-Ogooue,127.0,Gabon,103151.0,Sebe-Brikolo,13.75,-0.75,GAB,1305.0,Haut-Ogooue,127.0,Gabon,103151.0,Sebe-Brikolo,both,identical +128549,14.25,-0.75,GAB,1305.0,Haut-Ogooue,127.0,Gabon,103142.0,Djoue,14.25,-0.75,GAB,1305.0,Haut-Ogooue,127.0,Gabon,103142.0,Djoue,both,identical +128550,14.75,-0.75,COG,1189.0,Cuvette-Ouest,116.0,Congo,102190.0,Ewo,14.75,-0.75,COG,1189.0,Cuvette-Ouest,116.0,Congo,102190.0,Ewo,both,identical +128551,15.25,-0.75,COG,1188.0,Cuvette,116.0,Congo,102180.0,Boundji,15.25,-0.75,COG,1188.0,Cuvette,116.0,Congo,102180.0,Boundji,both,identical +128552,15.75,-0.75,COG,1188.0,Cuvette,116.0,Congo,102186.0,Owando,15.75,-0.75,COG,1188.0,Cuvette,116.0,Congo,102186.0,Owando,both,identical +128553,16.25,-0.75,COG,1188.0,Cuvette,116.0,Congo,102186.0,Owando,16.25,-0.75,COG,1188.0,Cuvette,116.0,Congo,102186.0,Owando,both,identical +128554,16.75,-0.75,COG,1188.0,Cuvette,116.0,Congo,102183.0,Mossaka,16.75,-0.75,COG,1188.0,Cuvette,116.0,Congo,102183.0,Mossaka,both,identical +128555,17.25,-0.75,COG,1188.0,Cuvette,116.0,Congo,102181.0,Loukolela,17.25,-0.75,COG,1188.0,Cuvette,116.0,Congo,102181.0,Loukolela,both,identical +128556,17.75,-0.75,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102503.0,Bikoro,17.75,-0.75,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102503.0,Bikoro,both,identical +128557,18.25,-0.75,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102503.0,Bikoro,18.25,-0.75,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102503.0,Bikoro,both,identical +128558,18.75,-0.75,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102506.0,Ingende,18.75,-0.75,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102506.0,Ingende,both,identical +128559,19.25,-0.75,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102506.0,Ingende,19.25,-0.75,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102506.0,Ingende,both,identical +128560,19.75,-0.75,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102506.0,Ingende,19.75,-0.75,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102506.0,Ingende,both,identical +128561,20.25,-0.75,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102506.0,Ingende,20.25,-0.75,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102506.0,Ingende,both,admin_reallocation +128562,20.75,-0.75,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102495.0,Boende,20.75,-0.75,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102495.0,Boende,both,identical +128563,21.25,-0.75,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102495.0,Boende,21.25,-0.75,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102495.0,Boende,both,identical +128564,21.75,-0.75,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102495.0,Boende,21.75,-0.75,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102495.0,Boende,both,identical +128565,22.25,-0.75,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102497.0,Bokungu,22.25,-0.75,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102497.0,Bokungu,both,identical +128566,22.75,-0.75,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102499.0,Ikela,22.75,-0.75,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102499.0,Ikela,both,identical +128567,23.25,-0.75,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102499.0,Ikela,23.25,-0.75,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102499.0,Ikela,both,identical +128568,23.75,-0.75,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102490.0,Opala,23.75,-0.75,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102490.0,Opala,both,identical +128569,24.25,-0.75,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102490.0,Opala,24.25,-0.75,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102490.0,Opala,both,identical +128570,24.75,-0.75,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102491.0,Ubundu,24.75,-0.75,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102491.0,Ubundu,both,identical +128571,25.25,-0.75,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102491.0,Ubundu,25.25,-0.75,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102491.0,Ubundu,both,identical +128572,25.75,-0.75,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102491.0,Ubundu,25.75,-0.75,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102491.0,Ubundu,both,identical +128573,26.25,-0.75,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102431.0,Lubutu,26.25,-0.75,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102431.0,Lubutu,both,identical +128574,26.75,-0.75,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102431.0,Lubutu,26.75,-0.75,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102431.0,Lubutu,both,identical +128575,27.25,-0.75,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102431.0,Lubutu,27.25,-0.75,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102431.0,Lubutu,both,identical +128576,27.75,-0.75,COD,1229.0,Nord-Kivu,118.0,Democratic Republic of the Congo,102447.0,Walikale,27.75,-0.75,COD,1229.0,Nord-Kivu,118.0,Democratic Republic of the Congo,102447.0,Walikale,both,identical +128577,28.25,-0.75,COD,1229.0,Nord-Kivu,118.0,Democratic Republic of the Congo,102447.0,Walikale,28.25,-0.75,COD,1229.0,Nord-Kivu,118.0,Democratic Republic of the Congo,102447.0,Walikale,both,identical +128578,28.75,-0.75,COD,1229.0,Nord-Kivu,118.0,Democratic Republic of the Congo,102447.0,Walikale,28.75,-0.75,COD,1229.0,Nord-Kivu,118.0,Democratic Republic of the Congo,102447.0,Walikale,both,identical +128579,29.25,-0.75,COD,1229.0,Nord-Kivu,118.0,Democratic Republic of the Congo,102446.0,Rutshuru,29.25,-0.75,COD,1229.0,Nord-Kivu,118.0,Democratic Republic of the Congo,102446.0,Rutshuru,both,identical +128580,29.75,-0.75,UGA,1678.0,Western,165.0,Uganda,106358.0,Kanungu,29.75,-0.75,UGA,1678.0,Western,165.0,Uganda,106358.0,Kanungu,both,identical +128581,30.25,-0.75,UGA,1678.0,Western,165.0,Uganda,106373.0,Ntungamo,30.25,-0.75,UGA,1678.0,Western,165.0,Uganda,106373.0,Ntungamo,both,identical +128582,30.75,-0.75,UGA,1678.0,Western,165.0,Uganda,106352.0,Isingiro,30.75,-0.75,UGA,1678.0,Western,165.0,Uganda,106352.0,Isingiro,both,identical +128583,31.25,-0.75,UGA,1675.0,Central,165.0,Uganda,106269.0,Rakai,31.25,-0.75,UGA,1675.0,Central,165.0,Uganda,106269.0,Rakai,both,identical +128584,31.75,-0.75,UGA,1675.0,Central,165.0,Uganda,900014.0,Waterbody,31.75,-0.75,UGA,1675.0,Central,165.0,Uganda,900014.0,Waterbody,both,identical +128585,32.25,-0.75,UGA,1675.0,Central,165.0,Uganda,900014.0,Waterbody,32.25,-0.75,UGA,1675.0,Central,165.0,Uganda,900014.0,Waterbody,both,identical +128586,32.75,-0.75,UGA,1675.0,Central,165.0,Uganda,900014.0,Waterbody,32.75,-0.75,UGA,1675.0,Central,165.0,Uganda,900014.0,Waterbody,both,identical +128587,33.25,-0.75,UGA,1675.0,Central,165.0,Uganda,900014.0,Waterbody,33.25,-0.75,UGA,1675.0,Central,165.0,Uganda,900014.0,Waterbody,both,identical +128588,33.75,-0.75,UGA,1676.0,Eastern,165.0,Uganda,900015.0,Waterbody,33.75,-0.75,UGA,1676.0,Eastern,165.0,Uganda,900015.0,Waterbody,both,identical +128589,34.25,-0.75,KEN,1360.0,Homa Bay,137.0,Kenya,103573.0,Ndhiwa,34.25,-0.75,KEN,1360.0,Homa Bay,137.0,Kenya,103573.0,Ndhiwa,both,identical +128590,34.75,-0.75,KEN,1368.0,Kisii,137.0,Kenya,103747.0,Kilgoris,34.75,-0.75,KEN,1385.0,Narok,137.0,Kenya,103747.0,Kilgoris,both,admin_reallocation +128591,35.25,-0.75,KEN,1354.0,Bomet,137.0,Kenya,103536.0,Chepalungu,35.25,-0.75,KEN,1354.0,Bomet,137.0,Kenya,103536.0,Chepalungu,both,identical +128592,35.75,-0.75,KEN,1385.0,Narok,137.0,Kenya,103749.0,Narok North,35.75,-0.75,KEN,1385.0,Narok,137.0,Kenya,103749.0,Narok North,both,identical +128593,36.25,-0.75,KEN,1383.0,Nakuru,137.0,Kenya,103734.0,Naivasha,36.25,-0.75,KEN,1383.0,Nakuru,137.0,Kenya,103734.0,Naivasha,both,identical +128594,36.75,-0.75,KEN,1381.0,Murang'A,137.0,Kenya,103756.0,Kinangop,36.75,-0.75,KEN,1387.0,Nyandarua,137.0,Kenya,103756.0,Kinangop,both,admin_reallocation +128595,37.25,-0.75,KEN,1381.0,Murang'A,137.0,Kenya,103710.0,Maragwa,37.25,-0.75,KEN,1381.0,Murang'A,137.0,Kenya,103710.0,Maragwa,both,identical +128596,37.75,-0.75,KEN,1358.0,Embu,137.0,Kenya,103559.0,Gachoka,37.75,-0.75,KEN,1358.0,Embu,137.0,Kenya,103559.0,Gachoka,both,identical +128597,38.25,-0.75,KEN,1370.0,Kitui,137.0,Kenya,103646.0,Mwingi East,38.25,-0.75,KEN,1370.0,Kitui,137.0,Kenya,103646.0,Mwingi East,both,identical +128598,38.75,-0.75,KEN,1370.0,Kitui,137.0,Kenya,103646.0,Mwingi East,38.75,-0.75,KEN,1370.0,Kitui,137.0,Kenya,103646.0,Mwingi East,both,identical +128599,39.25,-0.75,KEN,1392.0,Tana River,137.0,Kenya,103780.0,Bura,39.25,-0.75,KEN,1392.0,Tana River,137.0,Kenya,103780.0,Bura,both,identical +128600,39.75,-0.75,KEN,1392.0,Tana River,137.0,Kenya,103780.0,Bura,39.75,-0.75,KEN,1392.0,Tana River,137.0,Kenya,103780.0,Bura,both,identical +128601,40.25,-0.75,KEN,1359.0,Garissa,137.0,Kenya,103566.0,Fafi,40.25,-0.75,KEN,1359.0,Garissa,137.0,Kenya,103566.0,Fafi,both,identical +128602,40.75,-0.75,KEN,1359.0,Garissa,137.0,Kenya,103566.0,Fafi,40.75,-0.75,KEN,1359.0,Garissa,137.0,Kenya,103566.0,Fafi,both,identical +128603,41.25,-0.75,SOM,1597.0,Lower Juba,158.0,Somalia,105570.0,Badhaadhe,41.25,-0.75,SOM,1597.0,Lower Juba,158.0,Somalia,105570.0,Badhaadhe,both,identical +128604,41.75,-0.75,SOM,1597.0,Lower Juba,158.0,Somalia,105570.0,Badhaadhe,41.75,-0.75,SOM,1597.0,Lower Juba,158.0,Somalia,105570.0,Badhaadhe,both,identical +128605,42.25,-0.75,SOM,1597.0,Lower Juba,158.0,Somalia,105572.0,Kismaayo,42.25,-0.75,SOM,1597.0,Lower Juba,158.0,Somalia,105572.0,Kismaayo,both,identical +129259,9.25,-0.25,GAB,1304.0,Estuaire,127.0,Gabon,103138.0,Komo-Mondah,9.25,-0.25,GAB,1304.0,Estuaire,127.0,Gabon,103138.0,Komo-Mondah,both,identical +129260,9.75,-0.25,GAB,1304.0,Estuaire,127.0,Gabon,103138.0,Komo-Mondah,9.75,-0.25,GAB,1304.0,Estuaire,127.0,Gabon,103138.0,Komo-Mondah,both,identical +129261,10.25,-0.25,GAB,1304.0,Estuaire,127.0,Gabon,103137.0,Komo,10.25,-0.25,GAB,1304.0,Estuaire,127.0,Gabon,103137.0,Komo,both,identical +129262,10.75,-0.25,GAB,1306.0,Moyen-Ogooue,127.0,Gabon,103152.0,Abanga-Bigne,10.75,-0.25,GAB,1306.0,Moyen-Ogooue,127.0,Gabon,103152.0,Abanga-Bigne,both,identical +129263,11.25,-0.25,GAB,1306.0,Moyen-Ogooue,127.0,Gabon,103152.0,Abanga-Bigne,11.25,-0.25,GAB,1306.0,Moyen-Ogooue,127.0,Gabon,103152.0,Abanga-Bigne,both,identical +129264,11.75,-0.25,GAB,1309.0,Ogooue-Ivindo,127.0,Gabon,103170.0,Lope,11.75,-0.25,GAB,1309.0,Ogooue-Ivindo,127.0,Gabon,103170.0,Lope,both,identical +129265,12.25,-0.25,GAB,1309.0,Ogooue-Ivindo,127.0,Gabon,103170.0,Lope,12.25,-0.25,GAB,1309.0,Ogooue-Ivindo,127.0,Gabon,103170.0,Lope,both,identical +129266,12.75,-0.25,GAB,1310.0,Ogooue-Lolo,127.0,Gabon,103175.0,Mouloundou,12.75,-0.25,GAB,1310.0,Ogooue-Lolo,127.0,Gabon,103175.0,Mouloundou,both,identical +129267,13.25,-0.25,GAB,1310.0,Ogooue-Lolo,127.0,Gabon,103175.0,Mouloundou,13.25,-0.25,GAB,1310.0,Ogooue-Lolo,127.0,Gabon,103175.0,Mouloundou,both,identical +129268,13.75,-0.25,GAB,1305.0,Haut-Ogooue,127.0,Gabon,103151.0,Sebe-Brikolo,13.75,-0.25,GAB,1305.0,Haut-Ogooue,127.0,Gabon,103151.0,Sebe-Brikolo,both,identical +129269,14.25,-0.25,COG,1189.0,Cuvette-Ouest,116.0,Congo,102191.0,Kelle,14.25,-0.25,COG,1189.0,Cuvette-Ouest,116.0,Congo,102191.0,Kelle,both,identical +129270,14.75,-0.25,COG,1189.0,Cuvette-Ouest,116.0,Congo,102189.0,Etoumbi,14.75,-0.25,COG,1189.0,Cuvette-Ouest,116.0,Congo,102189.0,Etoumbi,both,identical +129271,15.25,-0.25,COG,1188.0,Cuvette,116.0,Congo,102182.0,Makoua,15.25,-0.25,COG,1188.0,Cuvette,116.0,Congo,102182.0,Makoua,both,identical +129272,15.75,-0.25,COG,1188.0,Cuvette,116.0,Congo,102186.0,Owando,15.75,-0.25,COG,1188.0,Cuvette,116.0,Congo,102186.0,Owando,both,identical +129273,16.25,-0.25,COG,1188.0,Cuvette,116.0,Congo,102183.0,Mossaka,16.25,-0.25,COG,1188.0,Cuvette,116.0,Congo,102183.0,Mossaka,both,identical +129274,16.75,-0.25,COG,1188.0,Cuvette,116.0,Congo,102183.0,Mossaka,16.75,-0.25,COG,1188.0,Cuvette,116.0,Congo,102183.0,Mossaka,both,identical +129275,17.25,-0.25,COG,1188.0,Cuvette,116.0,Congo,102181.0,Loukolela,17.25,-0.25,COG,1188.0,Cuvette,116.0,Congo,102181.0,Loukolela,both,identical +129276,17.75,-0.25,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102505.0,Bomongo,17.75,-0.25,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102505.0,Bomongo,both,identical +129277,18.25,-0.25,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102503.0,Bikoro,18.25,-0.25,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102503.0,Bikoro,both,identical +129278,18.75,-0.25,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102506.0,Ingende,18.75,-0.25,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102506.0,Ingende,both,identical +129279,19.25,-0.25,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102506.0,Ingende,19.25,-0.25,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102506.0,Ingende,both,identical +129280,19.75,-0.25,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102506.0,Ingende,19.75,-0.25,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102506.0,Ingende,both,identical +129281,20.25,-0.25,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102495.0,Boende,20.25,-0.25,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102495.0,Boende,both,identical +129282,20.75,-0.25,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102495.0,Boende,20.75,-0.25,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102495.0,Boende,both,identical +129283,21.25,-0.25,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102495.0,Boende,21.25,-0.25,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102495.0,Boende,both,identical +129284,21.75,-0.25,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102497.0,Bokungu,21.75,-0.25,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102497.0,Bokungu,both,identical +129285,22.25,-0.25,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102497.0,Bokungu,22.25,-0.25,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102497.0,Bokungu,both,identical +129286,22.75,-0.25,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102499.0,Ikela,22.75,-0.25,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102499.0,Ikela,both,identical +129287,23.25,-0.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102492.0,Yahuma,23.25,-0.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102492.0,Yahuma,both,identical +129288,23.75,-0.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102488.0,Isangi,23.75,-0.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102488.0,Isangi,both,identical +129289,24.25,-0.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102490.0,Opala,24.25,-0.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102490.0,Opala,both,identical +129290,24.75,-0.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102491.0,Ubundu,24.75,-0.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102491.0,Ubundu,both,identical +129291,25.25,-0.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102491.0,Ubundu,25.25,-0.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102491.0,Ubundu,both,identical +129292,25.75,-0.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102491.0,Ubundu,25.75,-0.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102491.0,Ubundu,both,identical +129293,26.25,-0.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102491.0,Ubundu,26.25,-0.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102491.0,Ubundu,both,identical +129294,26.75,-0.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102431.0,Lubutu,26.75,-0.25,COD,1227.0,Maniema,118.0,Democratic Republic of the Congo,102431.0,Lubutu,both,admin_reallocation +129295,27.25,-0.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102485.0,Bafwasende,27.25,-0.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102485.0,Bafwasende,both,identical +129296,27.75,-0.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102485.0,Bafwasende,27.75,-0.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102485.0,Bafwasende,both,identical +129297,28.25,-0.25,COD,1229.0,Nord-Kivu,118.0,Democratic Republic of the Congo,102447.0,Walikale,28.25,-0.25,COD,1229.0,Nord-Kivu,118.0,Democratic Republic of the Congo,102447.0,Walikale,both,identical +129298,28.75,-0.25,COD,1229.0,Nord-Kivu,118.0,Democratic Republic of the Congo,102443.0,Lubero,28.75,-0.25,COD,1229.0,Nord-Kivu,118.0,Democratic Republic of the Congo,102443.0,Lubero,both,identical +129299,29.25,-0.25,COD,1229.0,Nord-Kivu,118.0,Democratic Republic of the Congo,102443.0,Lubero,29.25,-0.25,COD,1229.0,Nord-Kivu,118.0,Democratic Republic of the Congo,102443.0,Lubero,both,identical +129300,29.75,-0.25,UGA,1678.0,Western,165.0,Uganda,106375.0,Rubirizi,29.75,-0.25,COD,1229.0,Nord-Kivu,118.0,Democratic Republic of the Congo,102443.0,Lubero,both,country_reassignment +129301,30.25,-0.25,UGA,1678.0,Western,165.0,Uganda,106375.0,Rubirizi,30.25,-0.25,UGA,1678.0,Western,165.0,Uganda,106375.0,Rubirizi,both,identical +129302,30.75,-0.25,UGA,1678.0,Western,165.0,Uganda,106363.0,Kiruhura,30.75,-0.25,UGA,1678.0,Western,165.0,Uganda,106363.0,Kiruhura,both,identical +129303,31.25,-0.25,UGA,1675.0,Central,165.0,Uganda,106270.0,Ssembabule,31.25,-0.25,UGA,1675.0,Central,165.0,Uganda,106270.0,Ssembabule,both,identical +129304,31.75,-0.25,UGA,1675.0,Central,165.0,Uganda,106262.0,Masaka,31.75,-0.25,UGA,1675.0,Central,165.0,Uganda,106262.0,Masaka,both,identical +129305,32.25,-0.25,UGA,1675.0,Central,165.0,Uganda,900014.0,Waterbody,32.25,-0.25,UGA,1675.0,Central,165.0,Uganda,900014.0,Waterbody,both,identical +129306,32.75,-0.25,UGA,1675.0,Central,165.0,Uganda,900014.0,Waterbody,32.75,-0.25,UGA,1675.0,Central,165.0,Uganda,900014.0,Waterbody,both,identical +129307,33.25,-0.25,UGA,1675.0,Central,165.0,Uganda,900014.0,Waterbody,33.25,-0.25,UGA,1675.0,Central,165.0,Uganda,900014.0,Waterbody,both,identical +129308,33.75,-0.25,UGA,1676.0,Eastern,165.0,Uganda,900015.0,Waterbody,33.75,-0.25,UGA,1676.0,Eastern,165.0,Uganda,900015.0,Waterbody,both,identical +129309,34.25,-0.25,KEN,1390.0,Siaya,137.0,Kenya,900009.0,Waterbody,34.25,-0.25,KEN,1390.0,Siaya,137.0,Kenya,900009.0,Waterbody,both,identical +129310,34.75,-0.25,KEN,1369.0,Kisumu,137.0,Kenya,900007.0,Waterbody,34.75,-0.25,KEN,1369.0,Kisumu,137.0,Kenya,900007.0,Waterbody,both,identical +129311,35.25,-0.25,KEN,1364.0,Kericho,137.0,Kenya,103601.0,Sigowet/Soin,35.25,-0.25,KEN,1364.0,Kericho,137.0,Kenya,103601.0,Sigowet/Soin,both,identical +129312,35.75,-0.25,KEN,1383.0,Nakuru,137.0,Kenya,103738.0,Rongai,35.75,-0.25,KEN,1383.0,Nakuru,137.0,Kenya,103738.0,Rongai,both,identical +129313,36.25,-0.25,KEN,1383.0,Nakuru,137.0,Kenya,103759.0,Ol Jorok,36.25,-0.25,KEN,1387.0,Nyandarua,137.0,Kenya,103759.0,Ol Jorok,both,admin_reallocation +129314,36.75,-0.25,KEN,1388.0,Nyeri,137.0,Kenya,103761.0,Kieni,36.75,-0.25,KEN,1388.0,Nyeri,137.0,Kenya,103761.0,Kieni,both,identical +129315,37.25,-0.25,KEN,1388.0,Nyeri,137.0,Kenya,103761.0,Kieni,37.25,-0.25,KEN,1388.0,Nyeri,137.0,Kenya,103761.0,Kieni,both,identical +129316,37.75,-0.25,KEN,1393.0,Tharaka-Nithi,137.0,Kenya,103785.0,Tharaka,37.75,-0.25,KEN,1393.0,Tharaka-Nithi,137.0,Kenya,103785.0,Tharaka,both,identical +129317,38.25,-0.25,KEN,1370.0,Kitui,137.0,Kenya,103647.0,Mwingi North,38.25,-0.25,KEN,1370.0,Kitui,137.0,Kenya,103647.0,Mwingi North,both,identical +129318,38.75,-0.25,KEN,1392.0,Tana River,137.0,Kenya,103780.0,Bura,38.75,-0.25,KEN,1392.0,Tana River,137.0,Kenya,103780.0,Bura,both,identical +129319,39.25,-0.25,KEN,1392.0,Tana River,137.0,Kenya,103780.0,Bura,39.25,-0.25,KEN,1392.0,Tana River,137.0,Kenya,103780.0,Bura,both,identical +129320,39.75,-0.25,KEN,1359.0,Garissa,137.0,Kenya,103563.0,Balambala,39.75,-0.25,KEN,1359.0,Garissa,137.0,Kenya,103563.0,Balambala,both,identical +129321,40.25,-0.25,KEN,1359.0,Garissa,137.0,Kenya,103566.0,Fafi,40.25,-0.25,KEN,1359.0,Garissa,137.0,Kenya,103566.0,Fafi,both,identical +129322,40.75,-0.25,KEN,1359.0,Garissa,137.0,Kenya,103564.0,Dadaab,40.75,-0.25,KEN,1359.0,Garissa,137.0,Kenya,103564.0,Dadaab,both,identical +129323,41.25,-0.25,SOM,1597.0,Lower Juba,158.0,Somalia,105570.0,Badhaadhe,41.25,-0.25,SOM,1597.0,Lower Juba,158.0,Somalia,105570.0,Badhaadhe,both,identical +129324,41.75,-0.25,SOM,1597.0,Lower Juba,158.0,Somalia,105572.0,Kismaayo,41.75,-0.25,SOM,1597.0,Lower Juba,158.0,Somalia,105572.0,Kismaayo,both,identical +129325,42.25,-0.25,SOM,1597.0,Lower Juba,158.0,Somalia,105572.0,Kismaayo,42.25,-0.25,SOM,1597.0,Lower Juba,158.0,Somalia,105572.0,Kismaayo,both,identical +129326,42.75,-0.25,SOM,1597.0,Lower Juba,158.0,Somalia,105572.0,Kismaayo,42.75,-0.25,SOM,1597.0,Lower Juba,158.0,Somalia,105572.0,Kismaayo,both,identical +129973,6.25,0.25,STP,1564.0,São Tomé,154.0,Sao Tome And Principe,105462.0,Lembá,6.25,0.25,STP,1564.0,São Tomé,154.0,Sao Tome And Principe,105462.0,Lembá,both,identical +129974,6.75,0.25,STP,1564.0,São Tomé,154.0,Sao Tome And Principe,105461.0,Caué,6.75,0.25,STP,1564.0,São Tomé,154.0,Sao Tome And Principe,105461.0,Caué,both,identical +129979,9.25,0.25,GAB,1304.0,Estuaire,127.0,Gabon,103138.0,Komo-Mondah,9.25,0.25,GAB,1304.0,Estuaire,127.0,Gabon,103138.0,Komo-Mondah,both,identical +129980,9.75,0.25,GAB,1304.0,Estuaire,127.0,Gabon,103138.0,Komo-Mondah,9.75,0.25,GAB,1304.0,Estuaire,127.0,Gabon,103138.0,Komo-Mondah,both,identical +129981,10.25,0.25,GAB,1304.0,Estuaire,127.0,Gabon,103137.0,Komo,10.25,0.25,GAB,1304.0,Estuaire,127.0,Gabon,103137.0,Komo,both,identical +129982,10.75,0.25,GAB,1304.0,Estuaire,127.0,Gabon,103137.0,Komo,10.75,0.25,GAB,1304.0,Estuaire,127.0,Gabon,103137.0,Komo,both,identical +129983,11.25,0.25,GAB,1312.0,Woleu-Ntem,127.0,Gabon,103183.0,Okano,11.25,0.25,GAB,1312.0,Woleu-Ntem,127.0,Gabon,103183.0,Okano,both,identical +129984,11.75,0.25,GAB,1309.0,Ogooue-Ivindo,127.0,Gabon,103170.0,Lope,11.75,0.25,GAB,1309.0,Ogooue-Ivindo,127.0,Gabon,103170.0,Lope,both,identical +129985,12.25,0.25,GAB,1309.0,Ogooue-Ivindo,127.0,Gabon,103171.0,Mvoung,12.25,0.25,GAB,1309.0,Ogooue-Ivindo,127.0,Gabon,103171.0,Mvoung,both,identical +129986,12.75,0.25,GAB,1309.0,Ogooue-Ivindo,127.0,Gabon,103175.0,Mouloundou,12.75,0.25,GAB,1310.0,Ogooue-Lolo,127.0,Gabon,103175.0,Mouloundou,both,admin_reallocation +129987,13.25,0.25,GAB,1309.0,Ogooue-Ivindo,127.0,Gabon,103169.0,Ivindo,13.25,0.25,GAB,1309.0,Ogooue-Ivindo,127.0,Gabon,103169.0,Ivindo,both,identical +129988,13.75,0.25,GAB,1309.0,Ogooue-Ivindo,127.0,Gabon,103169.0,Ivindo,13.75,0.25,GAB,1309.0,Ogooue-Ivindo,127.0,Gabon,103169.0,Ivindo,both,identical +129989,14.25,0.25,COG,1189.0,Cuvette-Ouest,116.0,Congo,102193.0,Mbomo,14.25,0.25,COG,1189.0,Cuvette-Ouest,116.0,Congo,102193.0,Mbomo,both,identical +129990,14.75,0.25,COG,1189.0,Cuvette-Ouest,116.0,Congo,102193.0,Mbomo,14.75,0.25,COG,1189.0,Cuvette-Ouest,116.0,Congo,102193.0,Mbomo,both,identical +129991,15.25,0.25,COG,1188.0,Cuvette,116.0,Congo,102182.0,Makoua,15.25,0.25,COG,1188.0,Cuvette,116.0,Congo,102182.0,Makoua,both,identical +129992,15.75,0.25,COG,1188.0,Cuvette,116.0,Congo,102182.0,Makoua,15.75,0.25,COG,1188.0,Cuvette,116.0,Congo,102182.0,Makoua,both,identical +129993,16.25,0.25,COG,1197.0,Sangha,116.0,Congo,102255.0,Pikounda,16.25,0.25,COG,1197.0,Sangha,116.0,Congo,102255.0,Pikounda,both,identical +129994,16.75,0.25,COG,1188.0,Cuvette,116.0,Congo,102255.0,Pikounda,16.75,0.25,COG,1197.0,Sangha,116.0,Congo,102255.0,Pikounda,both,admin_reallocation +129995,17.25,0.25,COG,1188.0,Cuvette,116.0,Congo,102181.0,Loukolela,17.25,0.25,COG,1188.0,Cuvette,116.0,Congo,102181.0,Loukolela,both,identical +129996,17.75,0.25,COG,1192.0,Likouala,116.0,Congo,102212.0,Liranga,17.75,0.25,COG,1192.0,Likouala,116.0,Congo,102212.0,Liranga,both,identical +129997,18.25,0.25,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102505.0,Bomongo,18.25,0.25,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102505.0,Bomongo,both,identical +129998,18.75,0.25,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102504.0,Bolomba,18.75,0.25,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102504.0,Bolomba,both,identical +129999,19.25,0.25,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102504.0,Bolomba,19.25,0.25,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102504.0,Bolomba,both,identical +130000,19.75,0.25,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102504.0,Bolomba,19.75,0.25,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102504.0,Bolomba,both,identical +130001,20.25,0.25,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102504.0,Bolomba,20.25,0.25,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102504.0,Bolomba,both,identical +130002,20.75,0.25,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102494.0,Befale,20.75,0.25,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102494.0,Befale,both,identical +130003,21.25,0.25,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102494.0,Befale,21.25,0.25,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102494.0,Befale,both,identical +130004,21.75,0.25,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102494.0,Befale,21.75,0.25,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102494.0,Befale,both,identical +130005,22.25,0.25,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102498.0,Djolu,22.25,0.25,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102498.0,Djolu,both,identical +130006,22.75,0.25,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102498.0,Djolu,22.75,0.25,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102498.0,Djolu,both,identical +130007,23.25,0.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102492.0,Yahuma,23.25,0.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102492.0,Yahuma,both,identical +130008,23.75,0.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102488.0,Isangi,23.75,0.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102488.0,Isangi,both,identical +130009,24.25,0.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102488.0,Isangi,24.25,0.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102488.0,Isangi,both,identical +130010,24.75,0.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102490.0,Opala,24.75,0.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102490.0,Opala,both,identical +130011,25.25,0.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102491.0,Ubundu,25.25,0.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102491.0,Ubundu,both,identical +130012,25.75,0.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102491.0,Ubundu,25.75,0.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102491.0,Ubundu,both,identical +130013,26.25,0.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102491.0,Ubundu,26.25,0.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102491.0,Ubundu,both,identical +130014,26.75,0.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102485.0,Bafwasende,26.75,0.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102485.0,Bafwasende,both,identical +130015,27.25,0.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102485.0,Bafwasende,27.25,0.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102485.0,Bafwasende,both,identical +130016,27.75,0.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102485.0,Bafwasende,27.75,0.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102485.0,Bafwasende,both,identical +130017,28.25,0.25,COD,1229.0,Nord-Kivu,118.0,Democratic Republic of the Congo,102443.0,Lubero,28.25,0.25,COD,1229.0,Nord-Kivu,118.0,Democratic Republic of the Congo,102443.0,Lubero,both,identical +130018,28.75,0.25,COD,1229.0,Nord-Kivu,118.0,Democratic Republic of the Congo,102443.0,Lubero,28.75,0.25,COD,1229.0,Nord-Kivu,118.0,Democratic Republic of the Congo,102443.0,Lubero,both,identical +130019,29.25,0.25,COD,1229.0,Nord-Kivu,118.0,Democratic Republic of the Congo,102439.0,Beni,29.25,0.25,COD,1229.0,Nord-Kivu,118.0,Democratic Republic of the Congo,102439.0,Beni,both,identical +130020,29.75,0.25,COD,1229.0,Nord-Kivu,118.0,Democratic Republic of the Congo,102439.0,Beni,29.75,0.25,COD,1229.0,Nord-Kivu,118.0,Democratic Republic of the Congo,102439.0,Beni,both,identical +130021,30.25,0.25,UGA,1678.0,Western,165.0,Uganda,106359.0,Kasese,30.25,0.25,UGA,1678.0,Western,165.0,Uganda,106359.0,Kasese,both,identical +130022,30.75,0.25,UGA,1678.0,Western,165.0,Uganda,106357.0,Kamwenge,30.75,0.25,UGA,1678.0,Western,165.0,Uganda,106357.0,Kamwenge,both,identical +130023,31.25,0.25,UGA,1675.0,Central,165.0,Uganda,106265.0,Mubende,31.25,0.25,UGA,1675.0,Central,165.0,Uganda,106265.0,Mubende,both,identical +130024,31.75,0.25,UGA,1675.0,Central,165.0,Uganda,106250.0,Gomba,31.75,0.25,UGA,1675.0,Central,165.0,Uganda,106250.0,Gomba,both,identical +130025,32.25,0.25,UGA,1675.0,Central,165.0,Uganda,106271.0,Wakiso,32.25,0.25,UGA,1675.0,Central,165.0,Uganda,106271.0,Wakiso,both,identical +130026,32.75,0.25,UGA,1675.0,Central,165.0,Uganda,106266.0,Mukono,32.75,0.25,UGA,1675.0,Central,165.0,Uganda,106266.0,Mukono,both,identical +130027,33.25,0.25,UGA,1675.0,Central,165.0,Uganda,900014.0,Waterbody,33.25,0.25,UGA,1675.0,Central,165.0,Uganda,900014.0,Waterbody,both,identical +130028,33.75,0.25,UGA,1676.0,Eastern,165.0,Uganda,900015.0,Waterbody,33.75,0.25,UGA,1676.0,Eastern,165.0,Uganda,900015.0,Waterbody,both,identical +130029,34.25,0.25,KEN,1390.0,Siaya,137.0,Kenya,103770.0,Alego Usonga,34.25,0.25,KEN,1390.0,Siaya,137.0,Kenya,103770.0,Alego Usonga,both,identical +130030,34.75,0.25,KEN,1363.0,Kakamega,137.0,Kenya,103595.0,Shinyalu,34.75,0.25,KEN,1363.0,Kakamega,137.0,Kenya,103595.0,Shinyalu,both,identical +130031,35.25,0.25,KEN,1384.0,Nandi,137.0,Kenya,103799.0,Kesses,35.25,0.25,KEN,1396.0,Uasin Gishu,137.0,Kenya,103799.0,Kesses,both,admin_reallocation +130032,35.75,0.25,KEN,1353.0,Baringo,137.0,Kenya,103532.0,Mogotio,35.75,0.25,KEN,1353.0,Baringo,137.0,Kenya,103532.0,Mogotio,both,identical +130033,36.25,0.25,KEN,1372.0,Laikipia,137.0,Kenya,103653.0,Laikipia East,36.25,0.25,KEN,1372.0,Laikipia,137.0,Kenya,103653.0,Laikipia East,both,identical +130034,36.75,0.25,KEN,1372.0,Laikipia,137.0,Kenya,103654.0,Laikipia North,36.75,0.25,KEN,1372.0,Laikipia,137.0,Kenya,103654.0,Laikipia North,both,identical +130035,37.25,0.25,KEN,1372.0,Laikipia,137.0,Kenya,103654.0,Laikipia North,37.25,0.25,KEN,1372.0,Laikipia,137.0,Kenya,103654.0,Laikipia North,both,identical +130036,37.75,0.25,KEN,1378.0,Meru,137.0,Kenya,103689.0,Tigania East,37.75,0.25,KEN,1378.0,Meru,137.0,Kenya,103689.0,Tigania East,both,identical +130037,38.25,0.25,KEN,1361.0,Isiolo,137.0,Kenya,103578.0,Isiolo South,38.25,0.25,KEN,1361.0,Isiolo,137.0,Kenya,103578.0,Isiolo South,both,identical +130038,38.75,0.25,KEN,1359.0,Garissa,137.0,Kenya,103578.0,Isiolo South,38.75,0.25,KEN,1361.0,Isiolo,137.0,Kenya,103578.0,Isiolo South,both,admin_reallocation +130039,39.25,0.25,KEN,1359.0,Garissa,137.0,Kenya,103563.0,Balambala,39.25,0.25,KEN,1359.0,Garissa,137.0,Kenya,103563.0,Balambala,both,identical +130040,39.75,0.25,KEN,1359.0,Garissa,137.0,Kenya,103568.0,Lagdera,39.75,0.25,KEN,1359.0,Garissa,137.0,Kenya,103568.0,Lagdera,both,identical +130041,40.25,0.25,KEN,1359.0,Garissa,137.0,Kenya,103564.0,Dadaab,40.25,0.25,KEN,1359.0,Garissa,137.0,Kenya,103564.0,Dadaab,both,identical +130042,40.75,0.25,KEN,1359.0,Garissa,137.0,Kenya,103564.0,Dadaab,40.75,0.25,KEN,1359.0,Garissa,137.0,Kenya,103564.0,Dadaab,both,identical +130043,41.25,0.25,SOM,1597.0,Lower Juba,158.0,Somalia,105569.0,Afmadow,41.25,0.25,SOM,1597.0,Lower Juba,158.0,Somalia,105569.0,Afmadow,both,identical +130044,41.75,0.25,SOM,1597.0,Lower Juba,158.0,Somalia,105569.0,Afmadow,41.75,0.25,SOM,1597.0,Lower Juba,158.0,Somalia,105569.0,Afmadow,both,identical +130045,42.25,0.25,SOM,1597.0,Lower Juba,158.0,Somalia,105569.0,Afmadow,42.25,0.25,SOM,1597.0,Lower Juba,158.0,Somalia,105569.0,Afmadow,both,identical +130046,42.75,0.25,SOM,1597.0,Lower Juba,158.0,Somalia,105571.0,Jamaame,42.75,0.25,SOM,1597.0,Lower Juba,158.0,Somalia,105571.0,Jamaame,both,identical +130047,43.25,0.25,SOM,1599.0,Middle Juba,158.0,Somalia,105581.0,Jilib,43.25,0.25,SOM,1599.0,Middle Juba,158.0,Somalia,105581.0,Jilib,both,identical +130699,9.25,0.75,GAB,1304.0,Estuaire,127.0,Gabon,103138.0,Komo-Mondah,9.25,0.75,GAB,1304.0,Estuaire,127.0,Gabon,103138.0,Komo-Mondah,both,identical +130700,9.75,0.75,GAB,1304.0,Estuaire,127.0,Gabon,103140.0,Noya,9.75,0.75,GAB,1304.0,Estuaire,127.0,Gabon,103140.0,Noya,both,identical +130701,10.25,0.75,GAB,1304.0,Estuaire,127.0,Gabon,103140.0,Noya,10.25,0.75,GAB,1304.0,Estuaire,127.0,Gabon,103140.0,Noya,both,identical +130702,10.75,0.75,GAB,1312.0,Woleu-Ntem,127.0,Gabon,103180.0,Haut-Komo,10.75,0.75,GAB,1312.0,Woleu-Ntem,127.0,Gabon,103180.0,Haut-Komo,both,identical +130703,11.25,0.75,GAB,1312.0,Woleu-Ntem,127.0,Gabon,103183.0,Okano,11.25,0.75,GAB,1312.0,Woleu-Ntem,127.0,Gabon,103183.0,Okano,both,identical +130704,11.75,0.75,GAB,1312.0,Woleu-Ntem,127.0,Gabon,103183.0,Okano,11.75,0.75,GAB,1312.0,Woleu-Ntem,127.0,Gabon,103183.0,Okano,both,identical +130705,12.25,0.75,GAB,1309.0,Ogooue-Ivindo,127.0,Gabon,103169.0,Ivindo,12.25,0.75,GAB,1309.0,Ogooue-Ivindo,127.0,Gabon,103169.0,Ivindo,both,identical +130706,12.75,0.75,GAB,1309.0,Ogooue-Ivindo,127.0,Gabon,103169.0,Ivindo,12.75,0.75,GAB,1309.0,Ogooue-Ivindo,127.0,Gabon,103169.0,Ivindo,both,identical +130707,13.25,0.75,GAB,1309.0,Ogooue-Ivindo,127.0,Gabon,103169.0,Ivindo,13.25,0.75,GAB,1309.0,Ogooue-Ivindo,127.0,Gabon,103169.0,Ivindo,both,identical +130708,13.75,0.75,GAB,1309.0,Ogooue-Ivindo,127.0,Gabon,103172.0,Zadie,13.75,0.75,GAB,1309.0,Ogooue-Ivindo,127.0,Gabon,103172.0,Zadie,both,identical +130709,14.25,0.75,GAB,1309.0,Ogooue-Ivindo,127.0,Gabon,103172.0,Zadie,14.25,0.75,GAB,1309.0,Ogooue-Ivindo,127.0,Gabon,103172.0,Zadie,both,identical +130710,14.75,0.75,COG,1189.0,Cuvette-Ouest,116.0,Congo,102193.0,Mbomo,14.75,0.75,COG,1189.0,Cuvette-Ouest,116.0,Congo,102193.0,Mbomo,both,identical +130711,15.25,0.75,COG,1197.0,Sangha,116.0,Congo,102252.0,Mokeko,15.25,0.75,COG,1197.0,Sangha,116.0,Congo,102252.0,Mokeko,both,identical +130712,15.75,0.75,COG,1197.0,Sangha,116.0,Congo,102252.0,Mokeko,15.75,0.75,COG,1197.0,Sangha,116.0,Congo,102252.0,Mokeko,both,identical +130713,16.25,0.75,COG,1197.0,Sangha,116.0,Congo,102255.0,Pikounda,16.25,0.75,COG,1197.0,Sangha,116.0,Congo,102255.0,Pikounda,both,identical +130714,16.75,0.75,COG,1192.0,Likouala,116.0,Congo,102207.0,Bouanila,16.75,0.75,COG,1192.0,Likouala,116.0,Congo,102207.0,Bouanila,both,identical +130715,17.25,0.75,COG,1192.0,Likouala,116.0,Congo,102207.0,Bouanila,17.25,0.75,COG,1192.0,Likouala,116.0,Congo,102207.0,Bouanila,both,identical +130716,17.75,0.75,COG,1192.0,Likouala,116.0,Congo,102207.0,Bouanila,17.75,0.75,COG,1192.0,Likouala,116.0,Congo,102207.0,Bouanila,both,identical +130717,18.25,0.75,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102505.0,Bomongo,18.25,0.75,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102505.0,Bomongo,both,identical +130718,18.75,0.75,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102504.0,Bolomba,18.75,0.75,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102504.0,Bolomba,both,identical +130719,19.25,0.75,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102504.0,Bolomba,19.25,0.75,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102504.0,Bolomba,both,identical +130720,19.75,0.75,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102501.0,Basankusu,19.75,0.75,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102501.0,Basankusu,both,identical +130721,20.25,0.75,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102501.0,Basankusu,20.25,0.75,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102501.0,Basankusu,both,identical +130722,20.75,0.75,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102494.0,Befale,20.75,0.75,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102494.0,Befale,both,identical +130723,21.25,0.75,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102494.0,Befale,21.25,0.75,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102494.0,Befale,both,identical +130724,21.75,0.75,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102498.0,Djolu,21.75,0.75,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102498.0,Djolu,both,identical +130725,22.25,0.75,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102498.0,Djolu,22.25,0.75,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102498.0,Djolu,both,identical +130726,22.75,0.75,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102498.0,Djolu,22.75,0.75,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102498.0,Djolu,both,identical +130727,23.25,0.75,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102492.0,Yahuma,23.25,0.75,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102492.0,Yahuma,both,identical +130728,23.75,0.75,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102488.0,Isangi,23.75,0.75,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102488.0,Isangi,both,identical +130729,24.25,0.75,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102488.0,Isangi,24.25,0.75,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102488.0,Isangi,both,identical +130730,24.75,0.75,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102488.0,Isangi,24.75,0.75,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102488.0,Isangi,both,identical +130731,25.25,0.75,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102486.0,Banalia,25.25,0.75,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102486.0,Banalia,both,identical +130732,25.75,0.75,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102491.0,Ubundu,25.75,0.75,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102491.0,Ubundu,both,identical +130733,26.25,0.75,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102485.0,Bafwasende,26.25,0.75,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102485.0,Bafwasende,both,identical +130734,26.75,0.75,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102485.0,Bafwasende,26.75,0.75,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102485.0,Bafwasende,both,identical +130735,27.25,0.75,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102485.0,Bafwasende,27.25,0.75,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102485.0,Bafwasende,both,identical +130736,27.75,0.75,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102485.0,Bafwasende,27.75,0.75,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102485.0,Bafwasende,both,identical +130737,28.25,0.75,COD,1216.0,Ituri,118.0,Democratic Republic of the Congo,102325.0,Mambasa,28.25,0.75,COD,1216.0,Ituri,118.0,Democratic Republic of the Congo,102325.0,Mambasa,both,identical +130738,28.75,0.75,COD,1216.0,Ituri,118.0,Democratic Republic of the Congo,102325.0,Mambasa,28.75,0.75,COD,1216.0,Ituri,118.0,Democratic Republic of the Congo,102325.0,Mambasa,both,identical +130739,29.25,0.75,COD,1216.0,Ituri,118.0,Democratic Republic of the Congo,102325.0,Mambasa,29.25,0.75,COD,1216.0,Ituri,118.0,Democratic Republic of the Congo,102325.0,Mambasa,both,identical +130740,29.75,0.75,COD,1229.0,Nord-Kivu,118.0,Democratic Republic of the Congo,102439.0,Beni,29.75,0.75,COD,1229.0,Nord-Kivu,118.0,Democratic Republic of the Congo,102439.0,Beni,both,identical +130741,30.25,0.75,UGA,1678.0,Western,165.0,Uganda,106354.0,Kabarole,30.25,0.75,UGA,1678.0,Western,165.0,Uganda,106354.0,Kabarole,both,identical +130742,30.75,0.75,UGA,1678.0,Western,165.0,Uganda,106368.0,Kyenjojo,30.75,0.75,UGA,1678.0,Western,165.0,Uganda,106368.0,Kyenjojo,both,identical +130743,31.25,0.75,UGA,1678.0,Western,165.0,Uganda,106356.0,Kakumiro,31.25,0.75,UGA,1678.0,Western,165.0,Uganda,106356.0,Kakumiro,both,identical +130744,31.75,0.75,UGA,1675.0,Central,165.0,Uganda,106254.0,Kassanda,31.75,0.75,UGA,1675.0,Central,165.0,Uganda,106254.0,Kassanda,both,identical +130745,32.25,0.75,UGA,1675.0,Central,165.0,Uganda,106267.0,Nakaseke,32.25,0.75,UGA,1675.0,Central,165.0,Uganda,106267.0,Nakaseke,both,identical +130746,32.75,0.75,UGA,1675.0,Central,165.0,Uganda,106259.0,Luwero,32.75,0.75,UGA,1675.0,Central,165.0,Uganda,106259.0,Luwero,both,identical +130747,33.25,0.75,UGA,1676.0,Eastern,165.0,Uganda,106288.0,Kamuli,33.25,0.75,UGA,1676.0,Eastern,165.0,Uganda,106288.0,Kamuli,both,identical +130748,33.75,0.75,UGA,1676.0,Eastern,165.0,Uganda,106301.0,Namutumba,33.75,0.75,UGA,1676.0,Eastern,165.0,Uganda,106301.0,Namutumba,both,identical +130749,34.25,0.75,UGA,1676.0,Eastern,165.0,Uganda,106307.0,Tororo,34.25,0.75,UGA,1676.0,Eastern,165.0,Uganda,106307.0,Tororo,both,identical +130750,34.75,0.75,KEN,1355.0,Bungoma,137.0,Kenya,103543.0,Mt. Elgon,34.75,0.75,KEN,1355.0,Bungoma,137.0,Kenya,103543.0,Mt. Elgon,both,identical +130751,35.25,0.75,KEN,1396.0,Uasin Gishu,137.0,Kenya,103800.0,Moiben,35.25,0.75,KEN,1396.0,Uasin Gishu,137.0,Kenya,103800.0,Moiben,both,identical +130752,35.75,0.75,KEN,1353.0,Baringo,137.0,Kenya,103529.0,Baringo North,35.75,0.75,KEN,1353.0,Baringo,137.0,Kenya,103529.0,Baringo North,both,identical +130753,36.25,0.75,KEN,1353.0,Baringo,137.0,Kenya,103533.0,Tiaty,36.25,0.75,KEN,1353.0,Baringo,137.0,Kenya,103533.0,Tiaty,both,identical +130754,36.75,0.75,KEN,1372.0,Laikipia,137.0,Kenya,103654.0,Laikipia North,36.75,0.75,KEN,1372.0,Laikipia,137.0,Kenya,103654.0,Laikipia North,both,identical +130755,37.25,0.75,KEN,1389.0,Samburu,137.0,Kenya,103767.0,Samburu East,37.25,0.75,KEN,1389.0,Samburu,137.0,Kenya,103767.0,Samburu East,both,identical +130756,37.75,0.75,KEN,1389.0,Samburu,137.0,Kenya,103767.0,Samburu East,37.75,0.75,KEN,1389.0,Samburu,137.0,Kenya,103767.0,Samburu East,both,identical +130757,38.25,0.75,KEN,1361.0,Isiolo,137.0,Kenya,103578.0,Isiolo South,38.25,0.75,KEN,1361.0,Isiolo,137.0,Kenya,103578.0,Isiolo South,both,identical +130758,38.75,0.75,KEN,1361.0,Isiolo,137.0,Kenya,103578.0,Isiolo South,38.75,0.75,KEN,1361.0,Isiolo,137.0,Kenya,103578.0,Isiolo South,both,identical +130759,39.25,0.75,KEN,1359.0,Garissa,137.0,Kenya,103568.0,Lagdera,39.25,0.75,KEN,1359.0,Garissa,137.0,Kenya,103568.0,Lagdera,both,identical +130760,39.75,0.75,KEN,1398.0,Wajir,137.0,Kenya,103812.0,Wajir South,39.75,0.75,KEN,1398.0,Wajir,137.0,Kenya,103812.0,Wajir South,both,identical +130761,40.25,0.75,KEN,1398.0,Wajir,137.0,Kenya,103812.0,Wajir South,40.25,0.75,KEN,1398.0,Wajir,137.0,Kenya,103812.0,Wajir South,both,identical +130762,40.75,0.75,KEN,1398.0,Wajir,137.0,Kenya,103812.0,Wajir South,40.75,0.75,KEN,1398.0,Wajir,137.0,Kenya,103812.0,Wajir South,both,identical +130763,41.25,0.75,SOM,1597.0,Lower Juba,158.0,Somalia,105569.0,Afmadow,41.25,0.75,SOM,1597.0,Lower Juba,158.0,Somalia,105569.0,Afmadow,both,identical +130764,41.75,0.75,SOM,1597.0,Lower Juba,158.0,Somalia,105569.0,Afmadow,41.75,0.75,SOM,1597.0,Lower Juba,158.0,Somalia,105569.0,Afmadow,both,identical +130765,42.25,0.75,SOM,1597.0,Lower Juba,158.0,Somalia,105569.0,Afmadow,42.25,0.75,SOM,1597.0,Lower Juba,158.0,Somalia,105569.0,Afmadow,both,identical +130766,42.75,0.75,SOM,1599.0,Middle Juba,158.0,Somalia,105581.0,Jilib,42.75,0.75,SOM,1599.0,Middle Juba,158.0,Somalia,105581.0,Jilib,both,identical +130767,43.25,0.75,SOM,1599.0,Middle Juba,158.0,Somalia,105581.0,Jilib,43.25,0.75,SOM,1599.0,Middle Juba,158.0,Somalia,105581.0,Jilib,both,identical +130768,43.75,0.75,SOM,1598.0,Lower Shabelle,158.0,Somalia,105574.0,Baraawe,43.75,0.75,SOM,1598.0,Lower Shabelle,158.0,Somalia,105574.0,Baraawe,both,identical +131419,9.25,1.25,GNQ,1277.0,Litoral,121.0,Equatorial Guinea,102917.0,Mbini,9.25,1.25,GNQ,1277.0,Litoral,121.0,Equatorial Guinea,102917.0,Mbini,both,identical +131420,9.75,1.25,GNQ,1277.0,Litoral,121.0,Equatorial Guinea,102914.0,Cogo,9.75,1.25,GNQ,1277.0,Litoral,121.0,Equatorial Guinea,102914.0,Cogo,both,identical +131421,10.25,1.25,GNQ,1275.0,Centro Sur,121.0,Equatorial Guinea,102901.0,Acurenam,10.25,1.25,GNQ,1275.0,Centro Sur,121.0,Equatorial Guinea,102901.0,Acurenam,both,identical +131422,10.75,1.25,GNQ,1275.0,Centro Sur,121.0,Equatorial Guinea,102901.0,Acurenam,10.75,1.25,GNQ,1275.0,Centro Sur,121.0,Equatorial Guinea,102901.0,Acurenam,both,identical +131423,11.25,1.25,GNQ,1278.0,Wele-Nzas,121.0,Equatorial Guinea,102919.0,Aconibe,11.25,1.25,GAB,1312.0,Woleu-Ntem,127.0,Gabon,103184.0,Woleu,both,country_reassignment +131424,11.75,1.25,GAB,1312.0,Woleu-Ntem,127.0,Gabon,103184.0,Woleu,11.75,1.25,GAB,1312.0,Woleu-Ntem,127.0,Gabon,103184.0,Woleu,both,identical +131425,12.25,1.25,GAB,1312.0,Woleu-Ntem,127.0,Gabon,103184.0,Woleu,12.25,1.25,GAB,1312.0,Woleu-Ntem,127.0,Gabon,103184.0,Woleu,both,identical +131426,12.75,1.25,GAB,1312.0,Woleu-Ntem,127.0,Gabon,103181.0,Haut-Ntem,12.75,1.25,GAB,1312.0,Woleu-Ntem,127.0,Gabon,103181.0,Haut-Ntem,both,identical +131427,13.25,1.25,GAB,1309.0,Ogooue-Ivindo,127.0,Gabon,103169.0,Ivindo,13.25,1.25,GAB,1309.0,Ogooue-Ivindo,127.0,Gabon,103169.0,Ivindo,both,identical +131428,13.75,1.25,GAB,1309.0,Ogooue-Ivindo,127.0,Gabon,103172.0,Zadie,13.75,1.25,GAB,1309.0,Ogooue-Ivindo,127.0,Gabon,103172.0,Zadie,both,identical +131429,14.25,1.25,COG,1197.0,Sangha,116.0,Congo,102193.0,Mbomo,14.25,1.25,GAB,1309.0,Ogooue-Ivindo,127.0,Gabon,103172.0,Zadie,both,country_reassignment +131430,14.75,1.25,COG,1197.0,Sangha,116.0,Congo,102252.0,Mokeko,14.75,1.25,COG,1197.0,Sangha,116.0,Congo,102252.0,Mokeko,both,identical +131431,15.25,1.25,COG,1197.0,Sangha,116.0,Congo,102252.0,Mokeko,15.25,1.25,COG,1197.0,Sangha,116.0,Congo,102252.0,Mokeko,both,identical +131432,15.75,1.25,COG,1197.0,Sangha,116.0,Congo,102252.0,Mokeko,15.75,1.25,COG,1197.0,Sangha,116.0,Congo,102252.0,Mokeko,both,identical +131433,16.25,1.25,COG,1197.0,Sangha,116.0,Congo,102252.0,Mokeko,16.25,1.25,COG,1197.0,Sangha,116.0,Congo,102252.0,Mokeko,both,identical +131434,16.75,1.25,COG,1192.0,Likouala,116.0,Congo,102210.0,Epena,16.75,1.25,COG,1192.0,Likouala,116.0,Congo,102210.0,Epena,both,identical +131435,17.25,1.25,COG,1192.0,Likouala,116.0,Congo,102210.0,Epena,17.25,1.25,COG,1192.0,Likouala,116.0,Congo,102210.0,Epena,both,identical +131436,17.75,1.25,COG,1192.0,Likouala,116.0,Congo,102210.0,Epena,17.75,1.25,COG,1192.0,Likouala,116.0,Congo,102210.0,Epena,both,identical +131437,18.25,1.25,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102505.0,Bomongo,18.25,1.25,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102505.0,Bomongo,both,identical +131438,18.75,1.25,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102508.0,Makanza,18.75,1.25,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102508.0,Makanza,both,identical +131439,19.25,1.25,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102504.0,Bolomba,19.25,1.25,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102504.0,Bolomba,both,identical +131440,19.75,1.25,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102501.0,Basankusu,19.75,1.25,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102501.0,Basankusu,both,identical +131441,20.25,1.25,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102501.0,Basankusu,20.25,1.25,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102501.0,Basankusu,both,identical +131442,20.75,1.25,COD,1228.0,Mongala,118.0,Democratic Republic of the Congo,102434.0,Bongandanga,20.75,1.25,COD,1228.0,Mongala,118.0,Democratic Republic of the Congo,102434.0,Bongandanga,both,identical +131443,21.25,1.25,COD,1228.0,Mongala,118.0,Democratic Republic of the Congo,102434.0,Bongandanga,21.25,1.25,COD,1228.0,Mongala,118.0,Democratic Republic of the Congo,102434.0,Bongandanga,both,identical +131444,21.75,1.25,COD,1228.0,Mongala,118.0,Democratic Republic of the Congo,102434.0,Bongandanga,21.75,1.25,COD,1228.0,Mongala,118.0,Democratic Republic of the Congo,102434.0,Bongandanga,both,identical +131445,22.25,1.25,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102498.0,Djolu,22.25,1.25,COD,1236.0,Tshuapa,118.0,Democratic Republic of the Congo,102498.0,Djolu,both,identical +131446,22.75,1.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102492.0,Yahuma,22.75,1.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102492.0,Yahuma,both,identical +131447,23.25,1.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102492.0,Yahuma,23.25,1.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102492.0,Yahuma,both,identical +131448,23.75,1.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102487.0,Basoko,23.75,1.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102487.0,Basoko,both,identical +131449,24.25,1.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102487.0,Basoko,24.25,1.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102487.0,Basoko,both,identical +131450,24.75,1.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102486.0,Banalia,24.75,1.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102486.0,Banalia,both,identical +131451,25.25,1.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102486.0,Banalia,25.25,1.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102486.0,Banalia,both,identical +131452,25.75,1.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102486.0,Banalia,25.75,1.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102486.0,Banalia,both,identical +131453,26.25,1.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102485.0,Bafwasende,26.25,1.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102485.0,Bafwasende,both,identical +131454,26.75,1.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102485.0,Bafwasende,26.75,1.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102485.0,Bafwasende,both,identical +131455,27.25,1.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102485.0,Bafwasende,27.25,1.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102485.0,Bafwasende,both,identical +131456,27.75,1.25,COD,1216.0,Ituri,118.0,Democratic Republic of the Congo,102325.0,Mambasa,27.75,1.25,COD,1216.0,Ituri,118.0,Democratic Republic of the Congo,102325.0,Mambasa,both,identical +131457,28.25,1.25,COD,1216.0,Ituri,118.0,Democratic Republic of the Congo,102325.0,Mambasa,28.25,1.25,COD,1216.0,Ituri,118.0,Democratic Republic of the Congo,102325.0,Mambasa,both,identical +131458,28.75,1.25,COD,1216.0,Ituri,118.0,Democratic Republic of the Congo,102325.0,Mambasa,28.75,1.25,COD,1216.0,Ituri,118.0,Democratic Republic of the Congo,102325.0,Mambasa,both,identical +131459,29.25,1.25,COD,1216.0,Ituri,118.0,Democratic Republic of the Congo,102325.0,Mambasa,29.25,1.25,COD,1216.0,Ituri,118.0,Democratic Republic of the Congo,102325.0,Mambasa,both,identical +131460,29.75,1.25,COD,1216.0,Ituri,118.0,Democratic Republic of the Congo,102323.0,Irumu,29.75,1.25,COD,1216.0,Ituri,118.0,Democratic Republic of the Congo,102323.0,Irumu,both,identical +131461,30.25,1.25,COD,1216.0,Ituri,118.0,Democratic Republic of the Congo,102323.0,Irumu,30.25,1.25,COD,1216.0,Ituri,118.0,Democratic Republic of the Congo,102323.0,Irumu,both,identical +131462,30.75,1.25,UGA,1678.0,Western,165.0,Uganda,106362.0,Kikuube,30.75,1.25,UGA,1678.0,Western,165.0,Uganda,106362.0,Kikuube,both,identical +131463,31.25,1.25,UGA,1678.0,Western,165.0,Uganda,106362.0,Kikuube,31.25,1.25,UGA,1678.0,Western,165.0,Uganda,106362.0,Kikuube,both,identical +131464,31.75,1.25,UGA,1675.0,Central,165.0,Uganda,106257.0,Kyankwanzi,31.75,1.25,UGA,1675.0,Central,165.0,Uganda,106257.0,Kyankwanzi,both,identical +131465,32.25,1.25,UGA,1675.0,Central,165.0,Uganda,106267.0,Nakaseke,32.25,1.25,UGA,1675.0,Central,165.0,Uganda,106267.0,Nakaseke,both,identical +131466,32.75,1.25,UGA,1675.0,Central,165.0,Uganda,106268.0,Nakasongola,32.75,1.25,UGA,1675.0,Central,165.0,Uganda,106268.0,Nakasongola,both,identical +131467,33.25,1.25,UGA,1676.0,Eastern,165.0,Uganda,106282.0,Buyende,33.25,1.25,UGA,1676.0,Eastern,165.0,Uganda,106282.0,Buyende,both,identical +131468,33.75,1.25,UGA,1676.0,Eastern,165.0,Uganda,106303.0,Pallisa,33.75,1.25,UGA,1676.0,Eastern,165.0,Uganda,106303.0,Pallisa,both,identical +131469,34.25,1.25,UGA,1676.0,Eastern,165.0,Uganda,106276.0,Bukedea,34.25,1.25,UGA,1676.0,Eastern,165.0,Uganda,106276.0,Bukedea,both,identical +131470,34.75,1.25,KEN,1394.0,Trans Nzoia,137.0,Kenya,103787.0,Endebess,34.75,1.25,KEN,1394.0,Trans Nzoia,137.0,Kenya,103787.0,Endebess,both,identical +131471,35.25,1.25,KEN,1399.0,West Pokot,137.0,Kenya,103816.0,Pokot South,35.25,1.25,KEN,1399.0,West Pokot,137.0,Kenya,103816.0,Pokot South,both,identical +131472,35.75,1.25,KEN,1353.0,Baringo,137.0,Kenya,103533.0,Tiaty,35.75,1.25,KEN,1353.0,Baringo,137.0,Kenya,103533.0,Tiaty,both,identical +131473,36.25,1.25,KEN,1395.0,Turkana,137.0,Kenya,103793.0,Turkana East,36.25,1.25,KEN,1395.0,Turkana,137.0,Kenya,103793.0,Turkana East,both,identical +131474,36.75,1.25,KEN,1389.0,Samburu,137.0,Kenya,103768.0,Samburu North,36.75,1.25,KEN,1389.0,Samburu,137.0,Kenya,103768.0,Samburu North,both,identical +131475,37.25,1.25,KEN,1389.0,Samburu,137.0,Kenya,103767.0,Samburu East,37.25,1.25,KEN,1389.0,Samburu,137.0,Kenya,103767.0,Samburu East,both,identical +131476,37.75,1.25,KEN,1389.0,Samburu,137.0,Kenya,103767.0,Samburu East,37.75,1.25,KEN,1389.0,Samburu,137.0,Kenya,103767.0,Samburu East,both,identical +131477,38.25,1.25,KEN,1361.0,Isiolo,137.0,Kenya,103577.0,Isiolo North,38.25,1.25,KEN,1361.0,Isiolo,137.0,Kenya,103577.0,Isiolo North,both,identical +131478,38.75,1.25,KEN,1361.0,Isiolo,137.0,Kenya,103577.0,Isiolo North,38.75,1.25,KEN,1361.0,Isiolo,137.0,Kenya,103577.0,Isiolo North,both,identical +131479,39.25,1.25,KEN,1361.0,Isiolo,137.0,Kenya,103577.0,Isiolo North,39.25,1.25,KEN,1361.0,Isiolo,137.0,Kenya,103577.0,Isiolo North,both,identical +131480,39.75,1.25,KEN,1398.0,Wajir,137.0,Kenya,103813.0,Wajir West,39.75,1.25,KEN,1398.0,Wajir,137.0,Kenya,103813.0,Wajir West,both,identical +131481,40.25,1.25,KEN,1398.0,Wajir,137.0,Kenya,103812.0,Wajir South,40.25,1.25,KEN,1398.0,Wajir,137.0,Kenya,103812.0,Wajir South,both,identical +131482,40.75,1.25,KEN,1398.0,Wajir,137.0,Kenya,103812.0,Wajir South,40.75,1.25,KEN,1398.0,Wajir,137.0,Kenya,103812.0,Wajir South,both,identical +131483,41.25,1.25,SOM,1597.0,Lower Juba,158.0,Somalia,105569.0,Afmadow,41.25,1.25,SOM,1597.0,Lower Juba,158.0,Somalia,105569.0,Afmadow,both,identical +131484,41.75,1.25,SOM,1597.0,Lower Juba,158.0,Somalia,105569.0,Afmadow,41.75,1.25,SOM,1597.0,Lower Juba,158.0,Somalia,105569.0,Afmadow,both,identical +131485,42.25,1.25,SOM,1597.0,Lower Juba,158.0,Somalia,105569.0,Afmadow,42.25,1.25,SOM,1597.0,Lower Juba,158.0,Somalia,105569.0,Afmadow,both,identical +131486,42.75,1.25,SOM,1599.0,Middle Juba,158.0,Somalia,105580.0,Bu'Aale,42.75,1.25,SOM,1599.0,Middle Juba,158.0,Somalia,105580.0,Bu'Aale,both,identical +131487,43.25,1.25,SOM,1598.0,Lower Shabelle,158.0,Somalia,105578.0,Sablaale,43.25,1.25,SOM,1598.0,Lower Shabelle,158.0,Somalia,105578.0,Sablaale,both,identical +131488,43.75,1.25,SOM,1598.0,Lower Shabelle,158.0,Somalia,105578.0,Sablaale,43.75,1.25,SOM,1598.0,Lower Shabelle,158.0,Somalia,105578.0,Sablaale,both,identical +131489,44.25,1.25,SOM,1598.0,Lower Shabelle,158.0,Somalia,105574.0,Baraawe,44.25,1.25,SOM,1598.0,Lower Shabelle,158.0,Somalia,105574.0,Baraawe,both,identical +132135,7.25,1.75,STP,1563.0,Príncipe,154.0,Sao Tome And Principe,105459.0,Pagué,7.25,1.75,STP,1563.0,Príncipe,154.0,Sao Tome And Principe,105459.0,Pagué,both,identical +132140,9.75,1.75,GNQ,1277.0,Litoral,121.0,Equatorial Guinea,102912.0,Bata,9.75,1.75,GNQ,1277.0,Litoral,121.0,Equatorial Guinea,102912.0,Bata,both,identical +132141,10.25,1.75,GNQ,1275.0,Centro Sur,121.0,Equatorial Guinea,102904.0,Niefang,10.25,1.75,GNQ,1275.0,Centro Sur,121.0,Equatorial Guinea,102904.0,Niefang,both,identical +132142,10.75,1.75,GNQ,1278.0,Wele-Nzas,121.0,Equatorial Guinea,102921.0,Añisok,10.75,1.75,GNQ,1278.0,Wele-Nzas,121.0,Equatorial Guinea,102921.0,Añisok,both,identical +132143,11.25,1.75,GNQ,1276.0,Kié-Ntem,121.0,Equatorial Guinea,102924.0,Mongomo,11.25,1.75,GNQ,1278.0,Wele-Nzas,121.0,Equatorial Guinea,102924.0,Mongomo,both,admin_reallocation +132144,11.75,1.75,GAB,1312.0,Woleu-Ntem,127.0,Gabon,103184.0,Woleu,11.75,1.75,GAB,1312.0,Woleu-Ntem,127.0,Gabon,103184.0,Woleu,both,identical +132145,12.25,1.75,GAB,1312.0,Woleu-Ntem,127.0,Gabon,103181.0,Haut-Ntem,12.25,1.75,GAB,1312.0,Woleu-Ntem,127.0,Gabon,103181.0,Haut-Ntem,both,identical +132146,12.75,1.75,GAB,1312.0,Woleu-Ntem,127.0,Gabon,103181.0,Haut-Ntem,12.75,1.75,GAB,1312.0,Woleu-Ntem,127.0,Gabon,103181.0,Haut-Ntem,both,identical +132147,13.25,1.75,COG,1197.0,Sangha,116.0,Congo,102257.0,Souanke,13.25,1.75,COG,1197.0,Sangha,116.0,Congo,102257.0,Souanke,both,identical +132148,13.75,1.75,COG,1197.0,Sangha,116.0,Congo,102257.0,Souanke,13.75,1.75,COG,1197.0,Sangha,116.0,Congo,102257.0,Souanke,both,identical +132149,14.25,1.75,COG,1197.0,Sangha,116.0,Congo,102257.0,Souanke,14.25,1.75,COG,1197.0,Sangha,116.0,Congo,102257.0,Souanke,both,identical +132150,14.75,1.75,COG,1197.0,Sangha,116.0,Congo,102256.0,Sembe,14.75,1.75,COG,1197.0,Sangha,116.0,Congo,102256.0,Sembe,both,identical +132151,15.25,1.75,COG,1197.0,Sangha,116.0,Congo,102256.0,Sembe,15.25,1.75,COG,1197.0,Sangha,116.0,Congo,102256.0,Sembe,both,identical +132152,15.75,1.75,COG,1197.0,Sangha,116.0,Congo,102252.0,Mokeko,15.75,1.75,COG,1197.0,Sangha,116.0,Congo,102252.0,Mokeko,both,identical +132153,16.25,1.75,COG,1197.0,Sangha,116.0,Congo,102252.0,Mokeko,16.25,1.75,COG,1197.0,Sangha,116.0,Congo,102252.0,Mokeko,both,identical +132154,16.75,1.75,COG,1192.0,Likouala,116.0,Congo,102210.0,Epena,16.75,1.75,COG,1192.0,Likouala,116.0,Congo,102210.0,Epena,both,identical +132155,17.25,1.75,COG,1192.0,Likouala,116.0,Congo,102210.0,Epena,17.25,1.75,COG,1192.0,Likouala,116.0,Congo,102210.0,Epena,both,identical +132156,17.75,1.75,COG,1192.0,Likouala,116.0,Congo,102210.0,Epena,17.75,1.75,COG,1192.0,Likouala,116.0,Congo,102210.0,Epena,both,identical +132157,18.25,1.75,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102505.0,Bomongo,18.25,1.75,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102505.0,Bomongo,both,identical +132158,18.75,1.75,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102505.0,Bomongo,18.75,1.75,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102505.0,Bomongo,both,identical +132159,19.25,1.75,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102508.0,Makanza,19.25,1.75,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102508.0,Makanza,both,identical +132160,19.75,1.75,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102434.0,Bongandanga,19.75,1.75,COD,1228.0,Mongala,118.0,Democratic Republic of the Congo,102434.0,Bongandanga,both,admin_reallocation +132161,20.25,1.75,COD,1228.0,Mongala,118.0,Democratic Republic of the Congo,102501.0,Basankusu,20.25,1.75,COD,1237.0,Équateur,118.0,Democratic Republic of the Congo,102501.0,Basankusu,both,admin_reallocation +132162,20.75,1.75,COD,1228.0,Mongala,118.0,Democratic Republic of the Congo,102434.0,Bongandanga,20.75,1.75,COD,1228.0,Mongala,118.0,Democratic Republic of the Congo,102434.0,Bongandanga,both,identical +132163,21.25,1.75,COD,1228.0,Mongala,118.0,Democratic Republic of the Congo,102434.0,Bongandanga,21.25,1.75,COD,1228.0,Mongala,118.0,Democratic Republic of the Congo,102434.0,Bongandanga,both,identical +132164,21.75,1.75,COD,1228.0,Mongala,118.0,Democratic Republic of the Congo,102434.0,Bongandanga,21.75,1.75,COD,1228.0,Mongala,118.0,Democratic Republic of the Congo,102434.0,Bongandanga,both,identical +132165,22.25,1.75,COD,1228.0,Mongala,118.0,Democratic Republic of the Congo,102434.0,Bongandanga,22.25,1.75,COD,1228.0,Mongala,118.0,Democratic Republic of the Congo,102434.0,Bongandanga,both,identical +132166,22.75,1.75,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102492.0,Yahuma,22.75,1.75,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102492.0,Yahuma,both,identical +132167,23.25,1.75,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102487.0,Basoko,23.25,1.75,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102487.0,Basoko,both,identical +132168,23.75,1.75,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102487.0,Basoko,23.75,1.75,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102487.0,Basoko,both,identical +132169,24.25,1.75,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102487.0,Basoko,24.25,1.75,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102487.0,Basoko,both,identical +132170,24.75,1.75,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102487.0,Basoko,24.75,1.75,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102487.0,Basoko,both,identical +132171,25.25,1.75,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102486.0,Banalia,25.25,1.75,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102486.0,Banalia,both,identical +132172,25.75,1.75,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102486.0,Banalia,25.75,1.75,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102486.0,Banalia,both,identical +132173,26.25,1.75,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102486.0,Banalia,26.25,1.75,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102486.0,Banalia,both,identical +132174,26.75,1.75,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102485.0,Bafwasende,26.75,1.75,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102485.0,Bafwasende,both,identical +132175,27.25,1.75,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102485.0,Bafwasende,27.25,1.75,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102485.0,Bafwasende,both,identical +132176,27.75,1.75,COD,1215.0,Haut-Uélé,118.0,Democratic Republic of the Congo,102318.0,Wamba,27.75,1.75,COD,1215.0,Haut-Uélé,118.0,Democratic Republic of the Congo,102318.0,Wamba,both,identical +132177,28.25,1.75,COD,1216.0,Ituri,118.0,Democratic Republic of the Congo,102325.0,Mambasa,28.25,1.75,COD,1216.0,Ituri,118.0,Democratic Republic of the Congo,102325.0,Mambasa,both,identical +132178,28.75,1.75,COD,1216.0,Ituri,118.0,Democratic Republic of the Congo,102325.0,Mambasa,28.75,1.75,COD,1216.0,Ituri,118.0,Democratic Republic of the Congo,102325.0,Mambasa,both,identical +132179,29.25,1.75,COD,1216.0,Ituri,118.0,Democratic Republic of the Congo,102325.0,Mambasa,29.25,1.75,COD,1216.0,Ituri,118.0,Democratic Republic of the Congo,102325.0,Mambasa,both,identical +132180,29.75,1.75,COD,1216.0,Ituri,118.0,Democratic Republic of the Congo,102325.0,Mambasa,29.75,1.75,COD,1216.0,Ituri,118.0,Democratic Republic of the Congo,102325.0,Mambasa,both,identical +132181,30.25,1.75,COD,1216.0,Ituri,118.0,Democratic Republic of the Congo,102322.0,Djugu,30.25,1.75,COD,1216.0,Ituri,118.0,Democratic Republic of the Congo,102322.0,Djugu,both,identical +132182,30.75,1.75,COD,1216.0,Ituri,118.0,Democratic Republic of the Congo,102322.0,Djugu,30.75,1.75,COD,1216.0,Ituri,118.0,Democratic Republic of the Congo,102322.0,Djugu,both,identical +132183,31.25,1.75,UGA,1678.0,Western,165.0,Uganda,106350.0,Hoima,31.25,1.75,UGA,1678.0,Western,165.0,Uganda,106350.0,Hoima,both,identical +132184,31.75,1.75,UGA,1678.0,Western,165.0,Uganda,106369.0,Masindi,31.75,1.75,UGA,1678.0,Western,165.0,Uganda,106369.0,Masindi,both,identical +132185,32.25,1.75,UGA,1677.0,Northern,165.0,Uganda,106364.0,Kiryandongo,32.25,1.75,UGA,1678.0,Western,165.0,Uganda,106364.0,Kiryandongo,both,admin_reallocation +132186,32.75,1.75,UGA,1677.0,Northern,165.0,Uganda,106312.0,Amolatar,32.75,1.75,UGA,1677.0,Northern,165.0,Uganda,106312.0,Amolatar,both,identical +132187,33.25,1.75,UGA,1676.0,Eastern,165.0,Uganda,106285.0,Kaberamaido,33.25,1.75,UGA,1676.0,Eastern,165.0,Uganda,106285.0,Kaberamaido,both,identical +132188,33.75,1.75,UGA,1676.0,Eastern,165.0,Uganda,106306.0,Soroti,33.75,1.75,UGA,1676.0,Eastern,165.0,Uganda,106306.0,Soroti,both,identical +132189,34.25,1.75,UGA,1676.0,Eastern,165.0,Uganda,106291.0,Katakwi,34.25,1.75,UGA,1676.0,Eastern,165.0,Uganda,106291.0,Katakwi,both,identical +132190,34.75,1.75,UGA,1677.0,Northern,165.0,Uganda,106333.0,Nakapiripirit,34.75,1.75,UGA,1677.0,Northern,165.0,Uganda,106333.0,Nakapiripirit,both,identical +132191,35.25,1.75,KEN,1399.0,West Pokot,137.0,Kenya,103814.0,Kacheliba,35.25,1.75,KEN,1399.0,West Pokot,137.0,Kenya,103814.0,Kacheliba,both,identical +132192,35.75,1.75,KEN,1395.0,Turkana,137.0,Kenya,103793.0,Turkana East,35.75,1.75,KEN,1395.0,Turkana,137.0,Kenya,103793.0,Turkana East,both,identical +132193,36.25,1.75,KEN,1395.0,Turkana,137.0,Kenya,103793.0,Turkana East,36.25,1.75,KEN,1395.0,Turkana,137.0,Kenya,103793.0,Turkana East,both,identical +132194,36.75,1.75,KEN,1389.0,Samburu,137.0,Kenya,103768.0,Samburu North,36.75,1.75,KEN,1389.0,Samburu,137.0,Kenya,103768.0,Samburu North,both,identical +132195,37.25,1.75,KEN,1389.0,Samburu,137.0,Kenya,103768.0,Samburu North,37.25,1.75,KEN,1389.0,Samburu,137.0,Kenya,103768.0,Samburu North,both,identical +132196,37.75,1.75,KEN,1377.0,Marsabit,137.0,Kenya,103678.0,Laisamis,37.75,1.75,KEN,1377.0,Marsabit,137.0,Kenya,103678.0,Laisamis,both,identical +132197,38.25,1.75,KEN,1377.0,Marsabit,137.0,Kenya,103678.0,Laisamis,38.25,1.75,KEN,1377.0,Marsabit,137.0,Kenya,103678.0,Laisamis,both,identical +132198,38.75,1.75,KEN,1361.0,Isiolo,137.0,Kenya,103577.0,Isiolo North,38.75,1.75,KEN,1361.0,Isiolo,137.0,Kenya,103577.0,Isiolo North,both,identical +132199,39.25,1.75,KEN,1398.0,Wajir,137.0,Kenya,103813.0,Wajir West,39.25,1.75,KEN,1398.0,Wajir,137.0,Kenya,103813.0,Wajir West,both,identical +132200,39.75,1.75,KEN,1398.0,Wajir,137.0,Kenya,103813.0,Wajir West,39.75,1.75,KEN,1398.0,Wajir,137.0,Kenya,103813.0,Wajir West,both,identical +132201,40.25,1.75,KEN,1398.0,Wajir,137.0,Kenya,103812.0,Wajir South,40.25,1.75,KEN,1398.0,Wajir,137.0,Kenya,103812.0,Wajir South,both,identical +132202,40.75,1.75,KEN,1398.0,Wajir,137.0,Kenya,103810.0,Wajir East,40.75,1.75,KEN,1398.0,Wajir,137.0,Kenya,103810.0,Wajir East,both,identical +132203,41.25,1.75,SOM,1595.0,Gedo,158.0,Somalia,105560.0,Baardheere,41.25,1.75,SOM,1595.0,Gedo,158.0,Somalia,105560.0,Baardheere,both,identical +132204,41.75,1.75,SOM,1599.0,Middle Juba,158.0,Somalia,105582.0,Saakow,41.75,1.75,SOM,1599.0,Middle Juba,158.0,Somalia,105582.0,Saakow,both,identical +132205,42.25,1.75,SOM,1599.0,Middle Juba,158.0,Somalia,105582.0,Saakow,42.25,1.75,SOM,1599.0,Middle Juba,158.0,Somalia,105582.0,Saakow,both,identical +132206,42.75,1.75,SOM,1593.0,Bay,158.0,Somalia,105553.0,Diinsoor,42.75,1.75,SOM,1593.0,Bay,158.0,Somalia,105553.0,Diinsoor,both,identical +132207,43.25,1.75,SOM,1593.0,Bay,158.0,Somalia,105553.0,Diinsoor,43.25,1.75,SOM,1593.0,Bay,158.0,Somalia,105553.0,Diinsoor,both,identical +132208,43.75,1.75,SOM,1598.0,Lower Shabelle,158.0,Somalia,105552.0,Buur Hakaba,43.75,1.75,SOM,1593.0,Bay,158.0,Somalia,105552.0,Buur Hakaba,both,admin_reallocation +132209,44.25,1.75,SOM,1598.0,Lower Shabelle,158.0,Somalia,105575.0,Kurtunwaarey,44.25,1.75,SOM,1598.0,Lower Shabelle,158.0,Somalia,105575.0,Kurtunwaarey,both,identical +132210,44.75,1.75,SOM,1598.0,Lower Shabelle,158.0,Somalia,105576.0,Marka,44.75,1.75,SOM,1598.0,Lower Shabelle,158.0,Somalia,105576.0,Marka,both,identical +132211,45.25,1.75,SOM,1598.0,Lower Shabelle,158.0,Somalia,105573.0,Afgooye,45.25,1.75,SOM,1598.0,Lower Shabelle,158.0,Somalia,105573.0,Afgooye,both,identical +132860,9.75,2.25,CMR,1150.0,Sud,112.0,Cameroon,102057.0,Océan,9.75,2.25,GNQ,1277.0,Litoral,121.0,Equatorial Guinea,102916.0,Machinda,both,country_reassignment +132861,10.25,2.25,CMR,1150.0,Sud,112.0,Cameroon,102057.0,Océan,10.25,2.25,CMR,1150.0,Sud,112.0,Cameroon,102057.0,Océan,both,identical +132862,10.75,2.25,CMR,1150.0,Sud,112.0,Cameroon,102058.0,Vallée-Du-Ntem,10.75,2.25,CMR,1150.0,Sud,112.0,Cameroon,102058.0,Vallée-Du-Ntem,both,identical +132863,11.25,2.25,CMR,1150.0,Sud,112.0,Cameroon,102058.0,Vallée-Du-Ntem,11.25,2.25,CMR,1150.0,Sud,112.0,Cameroon,102058.0,Vallée-Du-Ntem,both,identical +132864,11.75,2.25,GAB,1312.0,Woleu-Ntem,127.0,Gabon,103182.0,Ntem,11.75,2.25,GAB,1312.0,Woleu-Ntem,127.0,Gabon,103182.0,Ntem,both,identical +132865,12.25,2.25,GAB,1312.0,Woleu-Ntem,127.0,Gabon,103181.0,Haut-Ntem,12.25,2.25,GAB,1312.0,Woleu-Ntem,127.0,Gabon,103181.0,Haut-Ntem,both,identical +132866,12.75,2.25,GAB,1312.0,Woleu-Ntem,127.0,Gabon,103181.0,Haut-Ntem,12.75,2.25,CMR,1150.0,Sud,112.0,Cameroon,102055.0,Dja-Et-Lobo,both,country_reassignment +132867,13.25,2.25,CMR,1150.0,Sud,112.0,Cameroon,102055.0,Dja-Et-Lobo,13.25,2.25,CMR,1150.0,Sud,112.0,Cameroon,102055.0,Dja-Et-Lobo,both,identical +132868,13.75,2.25,CMR,1144.0,Est,112.0,Cameroon,102023.0,Haut-Nyong,13.75,2.25,CMR,1144.0,Est,112.0,Cameroon,102023.0,Haut-Nyong,both,identical +132869,14.25,2.25,CMR,1144.0,Est,112.0,Cameroon,102023.0,Haut-Nyong,14.25,2.25,CMR,1144.0,Est,112.0,Cameroon,102023.0,Haut-Nyong,both,identical +132870,14.75,2.25,CMR,1144.0,Est,112.0,Cameroon,102022.0,Boumba-Et-Ngoko,14.75,2.25,CMR,1144.0,Est,112.0,Cameroon,102022.0,Boumba-Et-Ngoko,both,identical +132871,15.25,2.25,CMR,1144.0,Est,112.0,Cameroon,102022.0,Boumba-Et-Ngoko,15.25,2.25,CMR,1144.0,Est,112.0,Cameroon,102022.0,Boumba-Et-Ngoko,both,identical +132872,15.75,2.25,CMR,1144.0,Est,112.0,Cameroon,102022.0,Boumba-Et-Ngoko,15.75,2.25,CMR,1144.0,Est,112.0,Cameroon,102022.0,Boumba-Et-Ngoko,both,identical +132873,16.25,2.25,COG,1197.0,Sangha,116.0,Congo,102252.0,Mokeko,16.25,2.25,COG,1197.0,Sangha,116.0,Congo,102252.0,Mokeko,both,identical +132874,16.75,2.25,COG,1192.0,Likouala,116.0,Congo,102210.0,Epena,16.75,2.25,COG,1192.0,Likouala,116.0,Congo,102210.0,Epena,both,identical +132875,17.25,2.25,COG,1192.0,Likouala,116.0,Congo,102208.0,Dongou,17.25,2.25,COG,1192.0,Likouala,116.0,Congo,102208.0,Dongou,both,identical +132876,17.75,2.25,COG,1192.0,Likouala,116.0,Congo,102208.0,Dongou,17.75,2.25,COG,1192.0,Likouala,116.0,Congo,102208.0,Dongou,both,identical +132877,18.25,2.25,COD,1233.0,Sud-Ubangi,118.0,Democratic Republic of the Congo,102475.0,Kungu,18.25,2.25,COD,1233.0,Sud-Ubangi,118.0,Democratic Republic of the Congo,102475.0,Kungu,both,identical +132878,18.75,2.25,COD,1233.0,Sud-Ubangi,118.0,Democratic Republic of the Congo,102475.0,Kungu,18.75,2.25,COD,1233.0,Sud-Ubangi,118.0,Democratic Republic of the Congo,102475.0,Kungu,both,identical +132879,19.25,2.25,COD,1233.0,Sud-Ubangi,118.0,Democratic Republic of the Congo,102472.0,Budjala,19.25,2.25,COD,1233.0,Sud-Ubangi,118.0,Democratic Republic of the Congo,102472.0,Budjala,both,identical +132880,19.75,2.25,COD,1233.0,Sud-Ubangi,118.0,Democratic Republic of the Congo,102472.0,Budjala,19.75,2.25,COD,1233.0,Sud-Ubangi,118.0,Democratic Republic of the Congo,102472.0,Budjala,both,identical +132881,20.25,2.25,COD,1228.0,Mongala,118.0,Democratic Republic of the Congo,102437.0,Lisala,20.25,2.25,COD,1228.0,Mongala,118.0,Democratic Republic of the Congo,102437.0,Lisala,both,identical +132882,20.75,2.25,COD,1228.0,Mongala,118.0,Democratic Republic of the Congo,102437.0,Lisala,20.75,2.25,COD,1228.0,Mongala,118.0,Democratic Republic of the Congo,102437.0,Lisala,both,identical +132883,21.25,2.25,COD,1228.0,Mongala,118.0,Democratic Republic of the Congo,102437.0,Lisala,21.25,2.25,COD,1228.0,Mongala,118.0,Democratic Republic of the Congo,102437.0,Lisala,both,identical +132884,21.75,2.25,COD,1228.0,Mongala,118.0,Democratic Republic of the Congo,102437.0,Lisala,21.75,2.25,COD,1228.0,Mongala,118.0,Democratic Republic of the Congo,102437.0,Lisala,both,identical +132885,22.25,2.25,COD,1228.0,Mongala,118.0,Democratic Republic of the Congo,102435.0,Bumba,22.25,2.25,COD,1228.0,Mongala,118.0,Democratic Republic of the Congo,102435.0,Bumba,both,identical +132886,22.75,2.25,COD,1228.0,Mongala,118.0,Democratic Republic of the Congo,102435.0,Bumba,22.75,2.25,COD,1228.0,Mongala,118.0,Democratic Republic of the Congo,102435.0,Bumba,both,identical +132887,23.25,2.25,COD,1228.0,Mongala,118.0,Democratic Republic of the Congo,102435.0,Bumba,23.25,2.25,COD,1228.0,Mongala,118.0,Democratic Republic of the Congo,102435.0,Bumba,both,identical +132888,23.75,2.25,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102291.0,Aketi,23.75,2.25,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102291.0,Aketi,both,identical +132889,24.25,2.25,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102291.0,Aketi,24.25,2.25,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102291.0,Aketi,both,identical +132890,24.75,2.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102487.0,Basoko,24.75,2.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102487.0,Basoko,both,identical +132891,25.25,2.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102295.0,Buta,25.25,2.25,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102295.0,Buta,both,admin_reallocation +132892,25.75,2.25,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102486.0,Banalia,25.75,2.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102486.0,Banalia,both,admin_reallocation +132893,26.25,2.25,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102486.0,Banalia,26.25,2.25,COD,1235.0,Tshopo,118.0,Democratic Republic of the Congo,102486.0,Banalia,both,admin_reallocation +132894,26.75,2.25,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102297.0,Poko,26.75,2.25,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102297.0,Poko,both,identical +132895,27.25,2.25,COD,1215.0,Haut-Uélé,118.0,Democratic Republic of the Congo,102317.0,Rungu,27.25,2.25,COD,1215.0,Haut-Uélé,118.0,Democratic Republic of the Congo,102317.0,Rungu,both,identical +132896,27.75,2.25,COD,1215.0,Haut-Uélé,118.0,Democratic Republic of the Congo,102318.0,Wamba,27.75,2.25,COD,1215.0,Haut-Uélé,118.0,Democratic Republic of the Congo,102318.0,Wamba,both,identical +132897,28.25,2.25,COD,1215.0,Haut-Uélé,118.0,Democratic Republic of the Congo,102318.0,Wamba,28.25,2.25,COD,1215.0,Haut-Uélé,118.0,Democratic Republic of the Congo,102318.0,Wamba,both,identical +132898,28.75,2.25,COD,1216.0,Ituri,118.0,Democratic Republic of the Congo,102325.0,Mambasa,28.75,2.25,COD,1216.0,Ituri,118.0,Democratic Republic of the Congo,102325.0,Mambasa,both,identical +132899,29.25,2.25,COD,1216.0,Ituri,118.0,Democratic Republic of the Congo,102325.0,Mambasa,29.25,2.25,COD,1216.0,Ituri,118.0,Democratic Republic of the Congo,102325.0,Mambasa,both,identical +132900,29.75,2.25,COD,1216.0,Ituri,118.0,Democratic Republic of the Congo,102319.0,Watsa,29.75,2.25,COD,1215.0,Haut-Uélé,118.0,Democratic Republic of the Congo,102319.0,Watsa,both,admin_reallocation +132901,30.25,2.25,COD,1216.0,Ituri,118.0,Democratic Republic of the Congo,102322.0,Djugu,30.25,2.25,COD,1216.0,Ituri,118.0,Democratic Republic of the Congo,102322.0,Djugu,both,identical +132902,30.75,2.25,COD,1216.0,Ituri,118.0,Democratic Republic of the Congo,102324.0,Mahagi,30.75,2.25,COD,1216.0,Ituri,118.0,Democratic Republic of the Congo,102324.0,Mahagi,both,identical +132903,31.25,2.25,UGA,1677.0,Northern,165.0,Uganda,106335.0,Nebbi,31.25,2.25,COD,1216.0,Ituri,118.0,Democratic Republic of the Congo,102324.0,Mahagi,both,country_reassignment +132904,31.75,2.25,UGA,1678.0,Western,165.0,Uganda,106336.0,Nwoya,31.75,2.25,UGA,1677.0,Northern,165.0,Uganda,106336.0,Nwoya,both,admin_reallocation +132905,32.25,2.25,UGA,1677.0,Northern,165.0,Uganda,106340.0,Oyam,32.25,2.25,UGA,1677.0,Northern,165.0,Uganda,106340.0,Oyam,both,identical +132906,32.75,2.25,UGA,1677.0,Northern,165.0,Uganda,106323.0,Kole,32.75,2.25,UGA,1677.0,Northern,165.0,Uganda,106323.0,Kole,both,identical +132907,33.25,2.25,UGA,1677.0,Northern,165.0,Uganda,106311.0,Alebtong,33.25,2.25,UGA,1677.0,Northern,165.0,Uganda,106311.0,Alebtong,both,identical +132908,33.75,2.25,UGA,1676.0,Eastern,165.0,Uganda,106290.0,Kapelebyong,33.75,2.25,UGA,1676.0,Eastern,165.0,Uganda,106290.0,Kapelebyong,both,identical +132909,34.25,2.25,UGA,1677.0,Northern,165.0,Uganda,106334.0,Napak,34.25,2.25,UGA,1677.0,Northern,165.0,Uganda,106334.0,Napak,both,identical +132910,34.75,2.25,UGA,1677.0,Northern,165.0,Uganda,106330.0,Moroto,34.75,2.25,UGA,1677.0,Northern,165.0,Uganda,106330.0,Moroto,both,identical +132911,35.25,2.25,KEN,1399.0,West Pokot,137.0,Kenya,103814.0,Kacheliba,35.25,2.25,KEN,1399.0,West Pokot,137.0,Kenya,103814.0,Kacheliba,both,identical +132912,35.75,2.25,KEN,1395.0,Turkana,137.0,Kenya,103795.0,Turkana South,35.75,2.25,KEN,1395.0,Turkana,137.0,Kenya,103795.0,Turkana South,both,identical +132913,36.25,2.25,KEN,1395.0,Turkana,137.0,Kenya,103793.0,Turkana East,36.25,2.25,KEN,1395.0,Turkana,137.0,Kenya,103793.0,Turkana East,both,identical +132914,36.75,2.25,KEN,1389.0,Samburu,137.0,Kenya,103768.0,Samburu North,36.75,2.25,KEN,1389.0,Samburu,137.0,Kenya,103768.0,Samburu North,both,identical +132915,37.25,2.25,KEN,1377.0,Marsabit,137.0,Kenya,103678.0,Laisamis,37.25,2.25,KEN,1377.0,Marsabit,137.0,Kenya,103678.0,Laisamis,both,identical +132916,37.75,2.25,KEN,1377.0,Marsabit,137.0,Kenya,103678.0,Laisamis,37.75,2.25,KEN,1377.0,Marsabit,137.0,Kenya,103678.0,Laisamis,both,identical +132917,38.25,2.25,KEN,1377.0,Marsabit,137.0,Kenya,103680.0,North Horr,38.25,2.25,KEN,1377.0,Marsabit,137.0,Kenya,103680.0,North Horr,both,identical +132918,38.75,2.25,KEN,1377.0,Marsabit,137.0,Kenya,103680.0,North Horr,38.75,2.25,KEN,1377.0,Marsabit,137.0,Kenya,103680.0,North Horr,both,identical +132919,39.25,2.25,KEN,1398.0,Wajir,137.0,Kenya,103808.0,Eldas,39.25,2.25,KEN,1398.0,Wajir,137.0,Kenya,103808.0,Eldas,both,identical +132920,39.75,2.25,KEN,1398.0,Wajir,137.0,Kenya,103808.0,Eldas,39.75,2.25,KEN,1398.0,Wajir,137.0,Kenya,103808.0,Eldas,both,identical +132921,40.25,2.25,KEN,1398.0,Wajir,137.0,Kenya,103809.0,Tarbaj,40.25,2.25,KEN,1398.0,Wajir,137.0,Kenya,103809.0,Tarbaj,both,identical +132922,40.75,2.25,KEN,1398.0,Wajir,137.0,Kenya,103810.0,Wajir East,40.75,2.25,KEN,1398.0,Wajir,137.0,Kenya,103810.0,Wajir East,both,identical +132923,41.25,2.25,SOM,1595.0,Gedo,158.0,Somalia,105560.0,Baardheere,41.25,2.25,SOM,1595.0,Gedo,158.0,Somalia,105560.0,Baardheere,both,identical +132924,41.75,2.25,SOM,1595.0,Gedo,158.0,Somalia,105560.0,Baardheere,41.75,2.25,SOM,1595.0,Gedo,158.0,Somalia,105560.0,Baardheere,both,identical +132925,42.25,2.25,SOM,1595.0,Gedo,158.0,Somalia,105560.0,Baardheere,42.25,2.25,SOM,1595.0,Gedo,158.0,Somalia,105560.0,Baardheere,both,identical +132926,42.75,2.25,SOM,1593.0,Bay,158.0,Somalia,105553.0,Diinsoor,42.75,2.25,SOM,1593.0,Bay,158.0,Somalia,105553.0,Diinsoor,both,identical +132927,43.25,2.25,SOM,1593.0,Bay,158.0,Somalia,105553.0,Diinsoor,43.25,2.25,SOM,1593.0,Bay,158.0,Somalia,105553.0,Diinsoor,both,identical +132928,43.75,2.25,SOM,1593.0,Bay,158.0,Somalia,105552.0,Buur Hakaba,43.75,2.25,SOM,1593.0,Bay,158.0,Somalia,105552.0,Buur Hakaba,both,identical +132929,44.25,2.25,SOM,1593.0,Bay,158.0,Somalia,105552.0,Buur Hakaba,44.25,2.25,SOM,1593.0,Bay,158.0,Somalia,105552.0,Buur Hakaba,both,identical +132930,44.75,2.25,SOM,1598.0,Lower Shabelle,158.0,Somalia,105573.0,Afgooye,44.75,2.25,SOM,1598.0,Lower Shabelle,158.0,Somalia,105573.0,Afgooye,both,identical +132931,45.25,2.25,SOM,1598.0,Lower Shabelle,158.0,Somalia,105573.0,Afgooye,45.25,2.25,SOM,1598.0,Lower Shabelle,158.0,Somalia,105573.0,Afgooye,both,identical +132932,45.75,2.25,SOM,1600.0,Middle Shabelle,158.0,Somalia,105584.0,Balcad,45.75,2.25,SOM,1600.0,Middle Shabelle,158.0,Somalia,105584.0,Balcad,both,identical +132933,46.25,2.25,SOM,1600.0,Middle Shabelle,158.0,Somalia,105584.0,Balcad,46.25,2.25,SOM,1600.0,Middle Shabelle,158.0,Somalia,105584.0,Balcad,both,identical +133580,9.75,2.75,CMR,1150.0,Sud,112.0,Cameroon,102057.0,Océan,9.75,2.75,CMR,1150.0,Sud,112.0,Cameroon,102057.0,Océan,both,identical +133581,10.25,2.75,CMR,1150.0,Sud,112.0,Cameroon,102057.0,Océan,10.25,2.75,CMR,1150.0,Sud,112.0,Cameroon,102057.0,Océan,both,identical +133582,10.75,2.75,CMR,1150.0,Sud,112.0,Cameroon,102058.0,Vallée-Du-Ntem,10.75,2.75,CMR,1150.0,Sud,112.0,Cameroon,102058.0,Vallée-Du-Ntem,both,identical +133583,11.25,2.75,CMR,1150.0,Sud,112.0,Cameroon,102056.0,Mvila,11.25,2.75,CMR,1150.0,Sud,112.0,Cameroon,102056.0,Mvila,both,identical +133584,11.75,2.75,CMR,1150.0,Sud,112.0,Cameroon,102056.0,Mvila,11.75,2.75,CMR,1150.0,Sud,112.0,Cameroon,102056.0,Mvila,both,identical +133585,12.25,2.75,CMR,1150.0,Sud,112.0,Cameroon,102055.0,Dja-Et-Lobo,12.25,2.75,CMR,1150.0,Sud,112.0,Cameroon,102055.0,Dja-Et-Lobo,both,identical +133586,12.75,2.75,CMR,1150.0,Sud,112.0,Cameroon,102055.0,Dja-Et-Lobo,12.75,2.75,CMR,1150.0,Sud,112.0,Cameroon,102055.0,Dja-Et-Lobo,both,identical +133587,13.25,2.75,CMR,1150.0,Sud,112.0,Cameroon,102055.0,Dja-Et-Lobo,13.25,2.75,CMR,1150.0,Sud,112.0,Cameroon,102055.0,Dja-Et-Lobo,both,identical +133588,13.75,2.75,CMR,1144.0,Est,112.0,Cameroon,102023.0,Haut-Nyong,13.75,2.75,CMR,1144.0,Est,112.0,Cameroon,102023.0,Haut-Nyong,both,identical +133589,14.25,2.75,CMR,1144.0,Est,112.0,Cameroon,102023.0,Haut-Nyong,14.25,2.75,CMR,1144.0,Est,112.0,Cameroon,102023.0,Haut-Nyong,both,identical +133590,14.75,2.75,CMR,1144.0,Est,112.0,Cameroon,102022.0,Boumba-Et-Ngoko,14.75,2.75,CMR,1144.0,Est,112.0,Cameroon,102022.0,Boumba-Et-Ngoko,both,identical +133591,15.25,2.75,CMR,1144.0,Est,112.0,Cameroon,102022.0,Boumba-Et-Ngoko,15.25,2.75,CMR,1144.0,Est,112.0,Cameroon,102022.0,Boumba-Et-Ngoko,both,identical +133592,15.75,2.75,CMR,1144.0,Est,112.0,Cameroon,102022.0,Boumba-Et-Ngoko,15.75,2.75,CMR,1144.0,Est,112.0,Cameroon,102022.0,Boumba-Et-Ngoko,both,identical +133593,16.25,2.75,CAF,1153.0,Equateur,113.0,Central African Republic,102068.0,Sangha-Mbaéré,16.25,2.75,CAF,1153.0,Equateur,113.0,Central African Republic,102068.0,Sangha-Mbaéré,both,identical +133594,16.75,2.75,COG,1192.0,Likouala,116.0,Congo,102208.0,Dongou,16.75,2.75,COG,1192.0,Likouala,116.0,Congo,102208.0,Dongou,both,identical +133595,17.25,2.75,COG,1192.0,Likouala,116.0,Congo,102208.0,Dongou,17.25,2.75,COG,1192.0,Likouala,116.0,Congo,102208.0,Dongou,both,identical +133596,17.75,2.75,COG,1192.0,Likouala,116.0,Congo,102209.0,Enyelle,17.75,2.75,COG,1192.0,Likouala,116.0,Congo,102209.0,Enyelle,both,identical +133597,18.25,2.75,COG,1192.0,Likouala,116.0,Congo,102209.0,Enyelle,18.25,2.75,COG,1192.0,Likouala,116.0,Congo,102209.0,Enyelle,both,identical +133598,18.75,2.75,COD,1233.0,Sud-Ubangi,118.0,Democratic Republic of the Congo,102475.0,Kungu,18.75,2.75,COD,1233.0,Sud-Ubangi,118.0,Democratic Republic of the Congo,102475.0,Kungu,both,identical +133599,19.25,2.75,COD,1233.0,Sud-Ubangi,118.0,Democratic Republic of the Congo,102475.0,Kungu,19.25,2.75,COD,1233.0,Sud-Ubangi,118.0,Democratic Republic of the Congo,102475.0,Kungu,both,identical +133600,19.75,2.75,COD,1233.0,Sud-Ubangi,118.0,Democratic Republic of the Congo,102472.0,Budjala,19.75,2.75,COD,1233.0,Sud-Ubangi,118.0,Democratic Republic of the Congo,102472.0,Budjala,both,identical +133601,20.25,2.75,COD,1233.0,Sud-Ubangi,118.0,Democratic Republic of the Congo,102472.0,Budjala,20.25,2.75,COD,1233.0,Sud-Ubangi,118.0,Democratic Republic of the Congo,102472.0,Budjala,both,identical +133602,20.75,2.75,COD,1233.0,Sud-Ubangi,118.0,Democratic Republic of the Congo,102472.0,Budjala,20.75,2.75,COD,1233.0,Sud-Ubangi,118.0,Democratic Republic of the Congo,102472.0,Budjala,both,identical +133603,21.25,2.75,COD,1228.0,Mongala,118.0,Democratic Republic of the Congo,102437.0,Lisala,21.25,2.75,COD,1228.0,Mongala,118.0,Democratic Republic of the Congo,102437.0,Lisala,both,identical +133604,21.75,2.75,COD,1228.0,Mongala,118.0,Democratic Republic of the Congo,102435.0,Bumba,21.75,2.75,COD,1228.0,Mongala,118.0,Democratic Republic of the Congo,102435.0,Bumba,both,identical +133605,22.25,2.75,COD,1228.0,Mongala,118.0,Democratic Republic of the Congo,102435.0,Bumba,22.25,2.75,COD,1228.0,Mongala,118.0,Democratic Republic of the Congo,102435.0,Bumba,both,identical +133606,22.75,2.75,COD,1228.0,Mongala,118.0,Democratic Republic of the Congo,102435.0,Bumba,22.75,2.75,COD,1228.0,Mongala,118.0,Democratic Republic of the Congo,102435.0,Bumba,both,identical +133607,23.25,2.75,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102291.0,Aketi,23.25,2.75,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102291.0,Aketi,both,identical +133608,23.75,2.75,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102291.0,Aketi,23.75,2.75,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102291.0,Aketi,both,identical +133609,24.25,2.75,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102291.0,Aketi,24.25,2.75,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102291.0,Aketi,both,identical +133610,24.75,2.75,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102295.0,Buta,24.75,2.75,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102295.0,Buta,both,identical +133611,25.25,2.75,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102295.0,Buta,25.25,2.75,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102295.0,Buta,both,identical +133612,25.75,2.75,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102295.0,Buta,25.75,2.75,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102295.0,Buta,both,identical +133613,26.25,2.75,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102297.0,Poko,26.25,2.75,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102297.0,Poko,both,identical +133614,26.75,2.75,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102297.0,Poko,26.75,2.75,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102297.0,Poko,both,identical +133615,27.25,2.75,COD,1215.0,Haut-Uélé,118.0,Democratic Republic of the Congo,102317.0,Rungu,27.25,2.75,COD,1215.0,Haut-Uélé,118.0,Democratic Republic of the Congo,102317.0,Rungu,both,identical +133616,27.75,2.75,COD,1215.0,Haut-Uélé,118.0,Democratic Republic of the Congo,102317.0,Rungu,27.75,2.75,COD,1215.0,Haut-Uélé,118.0,Democratic Republic of the Congo,102317.0,Rungu,both,identical +133617,28.25,2.75,COD,1215.0,Haut-Uélé,118.0,Democratic Republic of the Congo,102317.0,Rungu,28.25,2.75,COD,1215.0,Haut-Uélé,118.0,Democratic Republic of the Congo,102317.0,Rungu,both,identical +133618,28.75,2.75,COD,1215.0,Haut-Uélé,118.0,Democratic Republic of the Congo,102319.0,Watsa,28.75,2.75,COD,1215.0,Haut-Uélé,118.0,Democratic Republic of the Congo,102319.0,Watsa,both,identical +133619,29.25,2.75,COD,1215.0,Haut-Uélé,118.0,Democratic Republic of the Congo,102319.0,Watsa,29.25,2.75,COD,1215.0,Haut-Uélé,118.0,Democratic Republic of the Congo,102319.0,Watsa,both,identical +133620,29.75,2.75,COD,1215.0,Haut-Uélé,118.0,Democratic Republic of the Congo,102319.0,Watsa,29.75,2.75,COD,1215.0,Haut-Uélé,118.0,Democratic Republic of the Congo,102319.0,Watsa,both,identical +133621,30.25,2.75,COD,1216.0,Ituri,118.0,Democratic Republic of the Congo,102320.0,Aru,30.25,2.75,COD,1216.0,Ituri,118.0,Democratic Republic of the Congo,102320.0,Aru,both,identical +133622,30.75,2.75,COD,1216.0,Ituri,118.0,Democratic Republic of the Congo,102320.0,Aru,30.75,2.75,COD,1216.0,Ituri,118.0,Democratic Republic of the Congo,102320.0,Aru,both,identical +133623,31.25,2.75,UGA,1677.0,Northern,165.0,Uganda,106328.0,Madi Okollo,31.25,2.75,UGA,1677.0,Northern,165.0,Uganda,106328.0,Madi Okollo,both,identical +133624,31.75,2.75,UGA,1677.0,Northern,165.0,Uganda,106336.0,Nwoya,31.75,2.75,UGA,1677.0,Northern,165.0,Uganda,106336.0,Nwoya,both,identical +133625,32.25,2.75,UGA,1677.0,Northern,165.0,Uganda,106338.0,Omoro,32.25,2.75,UGA,1677.0,Northern,165.0,Uganda,106338.0,Omoro,both,identical +133626,32.75,2.75,UGA,1677.0,Northern,165.0,Uganda,106341.0,Pader,32.75,2.75,UGA,1677.0,Northern,165.0,Uganda,106341.0,Pader,both,identical +133627,33.25,2.75,UGA,1677.0,Northern,165.0,Uganda,106310.0,Agago,33.25,2.75,UGA,1677.0,Northern,165.0,Uganda,106310.0,Agago,both,identical +133628,33.75,2.75,UGA,1677.0,Northern,165.0,Uganda,106308.0,Abim,33.75,2.75,UGA,1677.0,Northern,165.0,Uganda,106308.0,Abim,both,identical +133629,34.25,2.75,UGA,1677.0,Northern,165.0,Uganda,106334.0,Napak,34.25,2.75,UGA,1677.0,Northern,165.0,Uganda,106334.0,Napak,both,identical +133630,34.75,2.75,KEN,1395.0,Turkana,137.0,Kenya,103791.0,Loima,34.75,2.75,UGA,1677.0,Northern,165.0,Uganda,106330.0,Moroto,both,country_reassignment +133631,35.25,2.75,KEN,1395.0,Turkana,137.0,Kenya,103791.0,Loima,35.25,2.75,KEN,1395.0,Turkana,137.0,Kenya,103791.0,Loima,both,identical +133632,35.75,2.75,KEN,1395.0,Turkana,137.0,Kenya,103795.0,Turkana South,35.75,2.75,KEN,1395.0,Turkana,137.0,Kenya,103795.0,Turkana South,both,identical +133633,36.25,2.75,KEN,1395.0,Turkana,137.0,Kenya,103792.0,Turkana Central,36.25,2.75,KEN,1395.0,Turkana,137.0,Kenya,103792.0,Turkana Central,both,identical +133634,36.75,2.75,KEN,1377.0,Marsabit,137.0,Kenya,103678.0,Laisamis,36.75,2.75,KEN,1377.0,Marsabit,137.0,Kenya,103678.0,Laisamis,both,identical +133635,37.25,2.75,KEN,1377.0,Marsabit,137.0,Kenya,103678.0,Laisamis,37.25,2.75,KEN,1377.0,Marsabit,137.0,Kenya,103678.0,Laisamis,both,identical +133636,37.75,2.75,KEN,1377.0,Marsabit,137.0,Kenya,103680.0,North Horr,37.75,2.75,KEN,1377.0,Marsabit,137.0,Kenya,103680.0,North Horr,both,identical +133637,38.25,2.75,KEN,1377.0,Marsabit,137.0,Kenya,103680.0,North Horr,38.25,2.75,KEN,1377.0,Marsabit,137.0,Kenya,103680.0,North Horr,both,identical +133638,38.75,2.75,KEN,1377.0,Marsabit,137.0,Kenya,103679.0,Moyale,38.75,2.75,KEN,1377.0,Marsabit,137.0,Kenya,103679.0,Moyale,both,identical +133639,39.25,2.75,KEN,1398.0,Wajir,137.0,Kenya,103811.0,Wajir North,39.25,2.75,KEN,1398.0,Wajir,137.0,Kenya,103811.0,Wajir North,both,identical +133640,39.75,2.75,KEN,1398.0,Wajir,137.0,Kenya,103811.0,Wajir North,39.75,2.75,KEN,1398.0,Wajir,137.0,Kenya,103811.0,Wajir North,both,identical +133641,40.25,2.75,KEN,1398.0,Wajir,137.0,Kenya,103809.0,Tarbaj,40.25,2.75,KEN,1398.0,Wajir,137.0,Kenya,103809.0,Tarbaj,both,identical +133642,40.75,2.75,KEN,1376.0,Mandera,137.0,Kenya,103676.0,Mandera South,40.75,2.75,KEN,1376.0,Mandera,137.0,Kenya,103676.0,Mandera South,both,identical +133643,41.25,2.75,SOM,1595.0,Gedo,158.0,Somalia,105562.0,Ceel Waaq,41.25,2.75,SOM,1595.0,Gedo,158.0,Somalia,105562.0,Ceel Waaq,both,identical +133644,41.75,2.75,SOM,1595.0,Gedo,158.0,Somalia,105562.0,Ceel Waaq,41.75,2.75,SOM,1595.0,Gedo,158.0,Somalia,105562.0,Ceel Waaq,both,identical +133645,42.25,2.75,SOM,1595.0,Gedo,158.0,Somalia,105560.0,Baardheere,42.25,2.75,SOM,1595.0,Gedo,158.0,Somalia,105560.0,Baardheere,both,identical +133646,42.75,2.75,SOM,1593.0,Bay,158.0,Somalia,105554.0,Qansax Dheere,42.75,2.75,SOM,1593.0,Bay,158.0,Somalia,105554.0,Qansax Dheere,both,identical +133647,43.25,2.75,SOM,1593.0,Bay,158.0,Somalia,105551.0,Baydhaba,43.25,2.75,SOM,1593.0,Bay,158.0,Somalia,105551.0,Baydhaba,both,identical +133648,43.75,2.75,SOM,1593.0,Bay,158.0,Somalia,105552.0,Buur Hakaba,43.75,2.75,SOM,1593.0,Bay,158.0,Somalia,105552.0,Buur Hakaba,both,identical +133649,44.25,2.75,SOM,1593.0,Bay,158.0,Somalia,105552.0,Buur Hakaba,44.25,2.75,SOM,1593.0,Bay,158.0,Somalia,105552.0,Buur Hakaba,both,identical +133650,44.75,2.75,SOM,1598.0,Lower Shabelle,158.0,Somalia,105579.0,Wanla Weyn,44.75,2.75,SOM,1598.0,Lower Shabelle,158.0,Somalia,105579.0,Wanla Weyn,both,identical +133651,45.25,2.75,SOM,1598.0,Lower Shabelle,158.0,Somalia,105579.0,Wanla Weyn,45.25,2.75,SOM,1598.0,Lower Shabelle,158.0,Somalia,105579.0,Wanla Weyn,both,identical +133652,45.75,2.75,SOM,1600.0,Middle Shabelle,158.0,Somalia,105586.0,Jowhar,45.75,2.75,SOM,1600.0,Middle Shabelle,158.0,Somalia,105586.0,Jowhar,both,identical +133653,46.25,2.75,SOM,1600.0,Middle Shabelle,158.0,Somalia,105585.0,Cadale,46.25,2.75,SOM,1600.0,Middle Shabelle,158.0,Somalia,105585.0,Cadale,both,identical +133654,46.75,2.75,SOM,1600.0,Middle Shabelle,158.0,Somalia,105585.0,Cadale,46.75,2.75,SOM,1600.0,Middle Shabelle,158.0,Somalia,105585.0,Cadale,both,identical +134297,8.25,3.25,GNQ,1274.0,Bioko Sur,121.0,Equatorial Guinea,102899.0,Luba,8.25,3.25,GNQ,1274.0,Bioko Sur,121.0,Equatorial Guinea,102899.0,Luba,both,identical +134298,8.75,3.25,GNQ,1274.0,Bioko Sur,121.0,Equatorial Guinea,102899.0,Luba,8.75,3.25,GNQ,1274.0,Bioko Sur,121.0,Equatorial Guinea,102899.0,Luba,both,identical +134300,9.75,3.25,CMR,1146.0,Littoral,112.0,Cameroon,102034.0,Sanaga-Maritime,9.75,3.25,CMR,1146.0,Littoral,112.0,Cameroon,102034.0,Sanaga-Maritime,both,identical +134301,10.25,3.25,CMR,1150.0,Sud,112.0,Cameroon,102057.0,Océan,10.25,3.25,CMR,1150.0,Sud,112.0,Cameroon,102057.0,Océan,both,identical +134302,10.75,3.25,CMR,1150.0,Sud,112.0,Cameroon,102057.0,Océan,10.75,3.25,CMR,1150.0,Sud,112.0,Cameroon,102057.0,Océan,both,identical +134303,11.25,3.25,CMR,1143.0,Centre,112.0,Cameroon,102021.0,Nyong-Et-So'O,11.25,3.25,CMR,1143.0,Centre,112.0,Cameroon,102021.0,Nyong-Et-So'O,both,identical +134304,11.75,3.25,CMR,1150.0,Sud,112.0,Cameroon,102055.0,Dja-Et-Lobo,11.75,3.25,CMR,1150.0,Sud,112.0,Cameroon,102055.0,Dja-Et-Lobo,both,identical +134305,12.25,3.25,CMR,1150.0,Sud,112.0,Cameroon,102055.0,Dja-Et-Lobo,12.25,3.25,CMR,1150.0,Sud,112.0,Cameroon,102055.0,Dja-Et-Lobo,both,identical +134306,12.75,3.25,CMR,1144.0,Est,112.0,Cameroon,102023.0,Haut-Nyong,12.75,3.25,CMR,1144.0,Est,112.0,Cameroon,102023.0,Haut-Nyong,both,identical +134307,13.25,3.25,CMR,1144.0,Est,112.0,Cameroon,102023.0,Haut-Nyong,13.25,3.25,CMR,1144.0,Est,112.0,Cameroon,102023.0,Haut-Nyong,both,identical +134308,13.75,3.25,CMR,1144.0,Est,112.0,Cameroon,102023.0,Haut-Nyong,13.75,3.25,CMR,1144.0,Est,112.0,Cameroon,102023.0,Haut-Nyong,both,identical +134309,14.25,3.25,CMR,1144.0,Est,112.0,Cameroon,102023.0,Haut-Nyong,14.25,3.25,CMR,1144.0,Est,112.0,Cameroon,102023.0,Haut-Nyong,both,identical +134310,14.75,3.25,CMR,1144.0,Est,112.0,Cameroon,102022.0,Boumba-Et-Ngoko,14.75,3.25,CMR,1144.0,Est,112.0,Cameroon,102022.0,Boumba-Et-Ngoko,both,identical +134311,15.25,3.25,CMR,1144.0,Est,112.0,Cameroon,102022.0,Boumba-Et-Ngoko,15.25,3.25,CMR,1144.0,Est,112.0,Cameroon,102022.0,Boumba-Et-Ngoko,both,identical +134312,15.75,3.25,CAF,1153.0,Equateur,113.0,Central African Republic,102068.0,Sangha-Mbaéré,15.75,3.25,CAF,1153.0,Equateur,113.0,Central African Republic,102068.0,Sangha-Mbaéré,both,identical +134313,16.25,3.25,CAF,1153.0,Equateur,113.0,Central African Republic,102068.0,Sangha-Mbaéré,16.25,3.25,CAF,1153.0,Equateur,113.0,Central African Republic,102068.0,Sangha-Mbaéré,both,identical +134314,16.75,3.25,COG,1192.0,Likouala,116.0,Congo,102209.0,Enyelle,16.75,3.25,COG,1192.0,Likouala,116.0,Congo,102209.0,Enyelle,both,identical +134315,17.25,3.25,COG,1192.0,Likouala,116.0,Congo,102209.0,Enyelle,17.25,3.25,COG,1192.0,Likouala,116.0,Congo,102209.0,Enyelle,both,identical +134316,17.75,3.25,COG,1192.0,Likouala,116.0,Congo,102209.0,Enyelle,17.75,3.25,COG,1192.0,Likouala,116.0,Congo,102209.0,Enyelle,both,identical +134317,18.25,3.25,COG,1192.0,Likouala,116.0,Congo,102209.0,Enyelle,18.25,3.25,COG,1192.0,Likouala,116.0,Congo,102209.0,Enyelle,both,identical +134318,18.75,3.25,COD,1233.0,Sud-Ubangi,118.0,Democratic Republic of the Congo,102476.0,Libenge,18.75,3.25,COD,1233.0,Sud-Ubangi,118.0,Democratic Republic of the Congo,102476.0,Libenge,both,identical +134319,19.25,3.25,COD,1233.0,Sud-Ubangi,118.0,Democratic Republic of the Congo,102473.0,Gemena,19.25,3.25,COD,1233.0,Sud-Ubangi,118.0,Democratic Republic of the Congo,102473.0,Gemena,both,identical +134320,19.75,3.25,COD,1233.0,Sud-Ubangi,118.0,Democratic Republic of the Congo,102473.0,Gemena,19.75,3.25,COD,1233.0,Sud-Ubangi,118.0,Democratic Republic of the Congo,102473.0,Gemena,both,identical +134321,20.25,3.25,COD,1230.0,Nord-Ubangi,118.0,Democratic Republic of the Congo,102449.0,Businga,20.25,3.25,COD,1230.0,Nord-Ubangi,118.0,Democratic Republic of the Congo,102449.0,Businga,both,identical +134322,20.75,3.25,COD,1230.0,Nord-Ubangi,118.0,Democratic Republic of the Congo,102449.0,Businga,20.75,3.25,COD,1230.0,Nord-Ubangi,118.0,Democratic Republic of the Congo,102449.0,Businga,both,identical +134323,21.25,3.25,COD,1230.0,Nord-Ubangi,118.0,Democratic Republic of the Congo,102449.0,Businga,21.25,3.25,COD,1230.0,Nord-Ubangi,118.0,Democratic Republic of the Congo,102449.0,Businga,both,identical +134324,21.75,3.25,COD,1230.0,Nord-Ubangi,118.0,Democratic Republic of the Congo,102449.0,Businga,21.75,3.25,COD,1230.0,Nord-Ubangi,118.0,Democratic Republic of the Congo,102449.0,Businga,both,identical +134325,22.25,3.25,COD,1230.0,Nord-Ubangi,118.0,Democratic Republic of the Congo,102452.0,Yakoma,22.25,3.25,COD,1230.0,Nord-Ubangi,118.0,Democratic Republic of the Congo,102452.0,Yakoma,both,identical +134326,22.75,3.25,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102291.0,Aketi,22.75,3.25,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102291.0,Aketi,both,identical +134327,23.25,3.25,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102291.0,Aketi,23.25,3.25,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102291.0,Aketi,both,identical +134328,23.75,3.25,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102291.0,Aketi,23.75,3.25,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102291.0,Aketi,both,identical +134329,24.25,3.25,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102291.0,Aketi,24.25,3.25,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102291.0,Aketi,both,identical +134330,24.75,3.25,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102295.0,Buta,24.75,3.25,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102295.0,Buta,both,identical +134331,25.25,3.25,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102295.0,Buta,25.25,3.25,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102295.0,Buta,both,identical +134332,25.75,3.25,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102293.0,Bambesa,25.75,3.25,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102293.0,Bambesa,both,identical +134333,26.25,3.25,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102293.0,Bambesa,26.25,3.25,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102293.0,Bambesa,both,identical +134334,26.75,3.25,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102297.0,Poko,26.75,3.25,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102297.0,Poko,both,identical +134335,27.25,3.25,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102297.0,Poko,27.25,3.25,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102297.0,Poko,both,identical +134336,27.75,3.25,COD,1215.0,Haut-Uélé,118.0,Democratic Republic of the Congo,102316.0,Niangara,27.75,3.25,COD,1215.0,Haut-Uélé,118.0,Democratic Republic of the Congo,102316.0,Niangara,both,identical +134337,28.25,3.25,COD,1215.0,Haut-Uélé,118.0,Democratic Republic of the Congo,102316.0,Niangara,28.25,3.25,COD,1215.0,Haut-Uélé,118.0,Democratic Republic of the Congo,102316.0,Niangara,both,identical +134338,28.75,3.25,COD,1215.0,Haut-Uélé,118.0,Democratic Republic of the Congo,102313.0,Dungu,28.75,3.25,COD,1215.0,Haut-Uélé,118.0,Democratic Republic of the Congo,102313.0,Dungu,both,identical +134339,29.25,3.25,COD,1215.0,Haut-Uélé,118.0,Democratic Republic of the Congo,102319.0,Watsa,29.25,3.25,COD,1215.0,Haut-Uélé,118.0,Democratic Republic of the Congo,102319.0,Watsa,both,identical +134340,29.75,3.25,COD,1215.0,Haut-Uélé,118.0,Democratic Republic of the Congo,102314.0,Faradje,29.75,3.25,COD,1215.0,Haut-Uélé,118.0,Democratic Republic of the Congo,102314.0,Faradje,both,identical +134341,30.25,3.25,COD,1215.0,Haut-Uélé,118.0,Democratic Republic of the Congo,102314.0,Faradje,30.25,3.25,COD,1215.0,Haut-Uélé,118.0,Democratic Republic of the Congo,102314.0,Faradje,both,identical +134342,30.75,3.25,COD,1216.0,Ituri,118.0,Democratic Republic of the Congo,102320.0,Aru,30.75,3.25,COD,1216.0,Ituri,118.0,Democratic Republic of the Congo,102320.0,Aru,both,identical +134343,31.25,3.25,UGA,1677.0,Northern,165.0,Uganda,106316.0,Arua,31.25,3.25,UGA,1677.0,Northern,165.0,Uganda,106316.0,Arua,both,identical +134344,31.75,3.25,UGA,1677.0,Northern,165.0,Uganda,106309.0,Adjumani,31.75,3.25,UGA,1677.0,Northern,165.0,Uganda,106309.0,Adjumani,both,identical +134345,32.25,3.25,UGA,1677.0,Northern,165.0,Uganda,106314.0,Amuru,32.25,3.25,UGA,1677.0,Northern,165.0,Uganda,106314.0,Amuru,both,identical +134346,32.75,3.25,UGA,1677.0,Northern,165.0,Uganda,106326.0,Lamwo,32.75,3.25,UGA,1677.0,Northern,165.0,Uganda,106326.0,Lamwo,both,identical +134347,33.25,3.25,UGA,1677.0,Northern,165.0,Uganda,106321.0,Kitgum,33.25,3.25,UGA,1677.0,Northern,165.0,Uganda,106321.0,Kitgum,both,identical +134348,33.75,3.25,UGA,1677.0,Northern,165.0,Uganda,106324.0,Kotido,33.75,3.25,UGA,1677.0,Northern,165.0,Uganda,106324.0,Kotido,both,identical +134349,34.25,3.25,UGA,1677.0,Northern,165.0,Uganda,106319.0,Kaabong,34.25,3.25,UGA,1677.0,Northern,165.0,Uganda,106319.0,Kaabong,both,identical +134350,34.75,3.25,KEN,1395.0,Turkana,137.0,Kenya,103791.0,Loima,34.75,3.25,KEN,1395.0,Turkana,137.0,Kenya,103791.0,Loima,both,identical +134351,35.25,3.25,KEN,1395.0,Turkana,137.0,Kenya,103791.0,Loima,35.25,3.25,KEN,1395.0,Turkana,137.0,Kenya,103791.0,Loima,both,identical +134352,35.75,3.25,KEN,1395.0,Turkana,137.0,Kenya,103792.0,Turkana Central,35.75,3.25,KEN,1395.0,Turkana,137.0,Kenya,103792.0,Turkana Central,both,identical +134353,36.25,3.25,KEN,1377.0,Marsabit,137.0,Kenya,103678.0,Laisamis,36.25,3.25,KEN,1377.0,Marsabit,137.0,Kenya,103678.0,Laisamis,both,identical +134354,36.75,3.25,KEN,1377.0,Marsabit,137.0,Kenya,103680.0,North Horr,36.75,3.25,KEN,1377.0,Marsabit,137.0,Kenya,103680.0,North Horr,both,identical +134355,37.25,3.25,KEN,1377.0,Marsabit,137.0,Kenya,103680.0,North Horr,37.25,3.25,KEN,1377.0,Marsabit,137.0,Kenya,103680.0,North Horr,both,identical +134356,37.75,3.25,KEN,1377.0,Marsabit,137.0,Kenya,103680.0,North Horr,37.75,3.25,KEN,1377.0,Marsabit,137.0,Kenya,103680.0,North Horr,both,identical +134357,38.25,3.25,KEN,1377.0,Marsabit,137.0,Kenya,103680.0,North Horr,38.25,3.25,KEN,1377.0,Marsabit,137.0,Kenya,103680.0,North Horr,both,identical +134358,38.75,3.25,KEN,1377.0,Marsabit,137.0,Kenya,103679.0,Moyale,38.75,3.25,KEN,1377.0,Marsabit,137.0,Kenya,103679.0,Moyale,both,identical +134359,39.25,3.25,KEN,1377.0,Marsabit,137.0,Kenya,103679.0,Moyale,39.25,3.25,KEN,1377.0,Marsabit,137.0,Kenya,103679.0,Moyale,both,identical +134360,39.75,3.25,KEN,1398.0,Wajir,137.0,Kenya,103811.0,Wajir North,39.75,3.25,KEN,1398.0,Wajir,137.0,Kenya,103811.0,Wajir North,both,identical +134361,40.25,3.25,KEN,1376.0,Mandera,137.0,Kenya,103677.0,Mandera West,40.25,3.25,KEN,1376.0,Mandera,137.0,Kenya,103677.0,Mandera West,both,identical +134362,40.75,3.25,KEN,1376.0,Mandera,137.0,Kenya,103675.0,Mandera North,40.75,3.25,KEN,1376.0,Mandera,137.0,Kenya,103675.0,Mandera North,both,identical +134363,41.25,3.25,KEN,1376.0,Mandera,137.0,Kenya,103673.0,Lafey,41.25,3.25,KEN,1376.0,Mandera,137.0,Kenya,103673.0,Lafey,both,identical +134364,41.75,3.25,SOM,1595.0,Gedo,158.0,Somalia,105561.0,Belet Xaawo,41.75,3.25,SOM,1595.0,Gedo,158.0,Somalia,105561.0,Belet Xaawo,both,identical +134365,42.25,3.25,SOM,1595.0,Gedo,158.0,Somalia,105564.0,Garbahaarey,42.25,3.25,SOM,1595.0,Gedo,158.0,Somalia,105564.0,Garbahaarey,both,identical +134366,42.75,3.25,SOM,1595.0,Gedo,158.0,Somalia,105564.0,Garbahaarey,42.75,3.25,SOM,1595.0,Gedo,158.0,Somalia,105564.0,Garbahaarey,both,identical +134367,43.25,3.25,SOM,1593.0,Bay,158.0,Somalia,105551.0,Baydhaba,43.25,3.25,SOM,1593.0,Bay,158.0,Somalia,105551.0,Baydhaba,both,identical +134368,43.75,3.25,SOM,1593.0,Bay,158.0,Somalia,105551.0,Baydhaba,43.75,3.25,SOM,1593.0,Bay,158.0,Somalia,105551.0,Baydhaba,both,identical +134369,44.25,3.25,SOM,1593.0,Bay,158.0,Somalia,105552.0,Buur Hakaba,44.25,3.25,SOM,1593.0,Bay,158.0,Somalia,105552.0,Buur Hakaba,both,identical +134370,44.75,3.25,SOM,1598.0,Lower Shabelle,158.0,Somalia,105579.0,Wanla Weyn,44.75,3.25,SOM,1598.0,Lower Shabelle,158.0,Somalia,105579.0,Wanla Weyn,both,identical +134371,45.25,3.25,SOM,1596.0,Hiraan,158.0,Somalia,105586.0,Jowhar,45.25,3.25,SOM,1600.0,Middle Shabelle,158.0,Somalia,105586.0,Jowhar,both,admin_reallocation +134372,45.75,3.25,SOM,1596.0,Hiraan,158.0,Somalia,105568.0,Jalalaqsi,45.75,3.25,SOM,1596.0,Hiraan,158.0,Somalia,105568.0,Jalalaqsi,both,identical +134373,46.25,3.25,SOM,1600.0,Middle Shabelle,158.0,Somalia,105585.0,Cadale,46.25,3.25,SOM,1600.0,Middle Shabelle,158.0,Somalia,105585.0,Cadale,both,identical +134374,46.75,3.25,SOM,1600.0,Middle Shabelle,158.0,Somalia,105583.0,Adan Yabaal,46.75,3.25,SOM,1600.0,Middle Shabelle,158.0,Somalia,105583.0,Adan Yabaal,both,identical +134375,47.25,3.25,SOM,1600.0,Middle Shabelle,158.0,Somalia,105583.0,Adan Yabaal,47.25,3.25,SOM,1600.0,Middle Shabelle,158.0,Somalia,105583.0,Adan Yabaal,both,identical +135018,8.75,3.75,GNQ,1273.0,Bioko Norte,121.0,Equatorial Guinea,102899.0,Luba,8.75,3.75,GNQ,1274.0,Bioko Sur,121.0,Equatorial Guinea,102899.0,Luba,both,admin_reallocation +135019,9.25,3.75,CMR,1151.0,Sud-Ouest,112.0,Cameroon,102059.0,Fako,9.25,3.75,CMR,1151.0,Sud-Ouest,112.0,Cameroon,102059.0,Fako,both,identical +135020,9.75,3.75,CMR,1146.0,Littoral,112.0,Cameroon,102034.0,Sanaga-Maritime,9.75,3.75,CMR,1146.0,Littoral,112.0,Cameroon,102034.0,Sanaga-Maritime,both,identical +135021,10.25,3.75,CMR,1146.0,Littoral,112.0,Cameroon,102034.0,Sanaga-Maritime,10.25,3.75,CMR,1146.0,Littoral,112.0,Cameroon,102034.0,Sanaga-Maritime,both,identical +135022,10.75,3.75,CMR,1143.0,Centre,112.0,Cameroon,102019.0,Nyong-Et-Kéllé,10.75,3.75,CMR,1143.0,Centre,112.0,Cameroon,102019.0,Nyong-Et-Kéllé,both,identical +135023,11.25,3.75,CMR,1143.0,Centre,112.0,Cameroon,102019.0,Nyong-Et-Kéllé,11.25,3.75,CMR,1143.0,Centre,112.0,Cameroon,102019.0,Nyong-Et-Kéllé,both,identical +135024,11.75,3.75,CMR,1143.0,Centre,112.0,Cameroon,102016.0,Mefou-Et-Afamba,11.75,3.75,CMR,1143.0,Centre,112.0,Cameroon,102016.0,Mefou-Et-Afamba,both,identical +135025,12.25,3.75,CMR,1143.0,Centre,112.0,Cameroon,102020.0,Nyong-Et-Mfoumou,12.25,3.75,CMR,1143.0,Centre,112.0,Cameroon,102020.0,Nyong-Et-Mfoumou,both,identical +135026,12.75,3.75,CMR,1144.0,Est,112.0,Cameroon,102023.0,Haut-Nyong,12.75,3.75,CMR,1144.0,Est,112.0,Cameroon,102023.0,Haut-Nyong,both,identical +135027,13.25,3.75,CMR,1144.0,Est,112.0,Cameroon,102023.0,Haut-Nyong,13.25,3.75,CMR,1144.0,Est,112.0,Cameroon,102023.0,Haut-Nyong,both,identical +135028,13.75,3.75,CMR,1144.0,Est,112.0,Cameroon,102023.0,Haut-Nyong,13.75,3.75,CMR,1144.0,Est,112.0,Cameroon,102023.0,Haut-Nyong,both,identical +135029,14.25,3.75,CMR,1144.0,Est,112.0,Cameroon,102024.0,Kadeï,14.25,3.75,CMR,1144.0,Est,112.0,Cameroon,102024.0,Kadeï,both,identical +135030,14.75,3.75,CMR,1144.0,Est,112.0,Cameroon,102022.0,Boumba-Et-Ngoko,14.75,3.75,CMR,1144.0,Est,112.0,Cameroon,102022.0,Boumba-Et-Ngoko,both,identical +135031,15.25,3.75,CAF,1153.0,Equateur,113.0,Central African Republic,102066.0,Mambéré-Kadéï,15.25,3.75,CMR,1144.0,Est,112.0,Cameroon,102022.0,Boumba-Et-Ngoko,both,country_reassignment +135032,15.75,3.75,CAF,1153.0,Equateur,113.0,Central African Republic,102068.0,Sangha-Mbaéré,15.75,3.75,CAF,1153.0,Equateur,113.0,Central African Republic,102068.0,Sangha-Mbaéré,both,identical +135033,16.25,3.75,CAF,1153.0,Equateur,113.0,Central African Republic,102068.0,Sangha-Mbaéré,16.25,3.75,CAF,1153.0,Equateur,113.0,Central African Republic,102068.0,Sangha-Mbaéré,both,identical +135034,16.75,3.75,CAF,1153.0,Equateur,113.0,Central African Republic,102068.0,Sangha-Mbaéré,16.75,3.75,CAF,1153.0,Equateur,113.0,Central African Republic,102068.0,Sangha-Mbaéré,both,identical +135035,17.25,3.75,CAF,1153.0,Equateur,113.0,Central African Republic,102068.0,Sangha-Mbaéré,17.25,3.75,CAF,1153.0,Equateur,113.0,Central African Republic,102068.0,Sangha-Mbaéré,both,identical +135036,17.75,3.75,CAF,1157.0,Plateaux,113.0,Central African Republic,102078.0,Lobaye,17.75,3.75,CAF,1157.0,Plateaux,113.0,Central African Republic,102078.0,Lobaye,both,identical +135037,18.25,3.75,CAF,1157.0,Plateaux,113.0,Central African Republic,102078.0,Lobaye,18.25,3.75,CAF,1157.0,Plateaux,113.0,Central African Republic,102078.0,Lobaye,both,identical +135038,18.75,3.75,COD,1233.0,Sud-Ubangi,118.0,Democratic Republic of the Congo,102476.0,Libenge,18.75,3.75,COD,1233.0,Sud-Ubangi,118.0,Democratic Republic of the Congo,102476.0,Libenge,both,identical +135039,19.25,3.75,COD,1233.0,Sud-Ubangi,118.0,Democratic Republic of the Congo,102476.0,Libenge,19.25,3.75,COD,1233.0,Sud-Ubangi,118.0,Democratic Republic of the Congo,102476.0,Libenge,both,identical +135040,19.75,3.75,COD,1233.0,Sud-Ubangi,118.0,Democratic Republic of the Congo,102473.0,Gemena,19.75,3.75,COD,1233.0,Sud-Ubangi,118.0,Democratic Republic of the Congo,102473.0,Gemena,both,identical +135041,20.25,3.75,COD,1230.0,Nord-Ubangi,118.0,Democratic Republic of the Congo,102449.0,Businga,20.25,3.75,COD,1230.0,Nord-Ubangi,118.0,Democratic Republic of the Congo,102449.0,Businga,both,identical +135042,20.75,3.75,COD,1230.0,Nord-Ubangi,118.0,Democratic Republic of the Congo,102451.0,Mobayi-Mbongo,20.75,3.75,COD,1230.0,Nord-Ubangi,118.0,Democratic Republic of the Congo,102451.0,Mobayi-Mbongo,both,identical +135043,21.25,3.75,COD,1230.0,Nord-Ubangi,118.0,Democratic Republic of the Congo,102449.0,Businga,21.25,3.75,COD,1230.0,Nord-Ubangi,118.0,Democratic Republic of the Congo,102449.0,Businga,both,identical +135044,21.75,3.75,COD,1230.0,Nord-Ubangi,118.0,Democratic Republic of the Congo,102452.0,Yakoma,21.75,3.75,COD,1230.0,Nord-Ubangi,118.0,Democratic Republic of the Congo,102452.0,Yakoma,both,identical +135045,22.25,3.75,COD,1230.0,Nord-Ubangi,118.0,Democratic Republic of the Congo,102452.0,Yakoma,22.25,3.75,COD,1230.0,Nord-Ubangi,118.0,Democratic Republic of the Congo,102452.0,Yakoma,both,identical +135046,22.75,3.75,COD,1230.0,Nord-Ubangi,118.0,Democratic Republic of the Congo,102452.0,Yakoma,22.75,3.75,COD,1230.0,Nord-Ubangi,118.0,Democratic Republic of the Congo,102452.0,Yakoma,both,identical +135047,23.25,3.75,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102294.0,Bondo,23.25,3.75,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102294.0,Bondo,both,identical +135048,23.75,3.75,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102294.0,Bondo,23.75,3.75,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102294.0,Bondo,both,identical +135049,24.25,3.75,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102294.0,Bondo,24.25,3.75,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102294.0,Bondo,both,identical +135050,24.75,3.75,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102294.0,Bondo,24.75,3.75,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102294.0,Bondo,both,identical +135051,25.25,3.75,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102294.0,Bondo,25.25,3.75,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102294.0,Bondo,both,identical +135052,25.75,3.75,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102292.0,Ango,25.75,3.75,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102292.0,Ango,both,identical +135053,26.25,3.75,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102292.0,Ango,26.25,3.75,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102292.0,Ango,both,identical +135054,26.75,3.75,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102297.0,Poko,26.75,3.75,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102297.0,Poko,both,identical +135055,27.25,3.75,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102297.0,Poko,27.25,3.75,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102297.0,Poko,both,identical +135056,27.75,3.75,COD,1215.0,Haut-Uélé,118.0,Democratic Republic of the Congo,102316.0,Niangara,27.75,3.75,COD,1215.0,Haut-Uélé,118.0,Democratic Republic of the Congo,102316.0,Niangara,both,identical +135057,28.25,3.75,COD,1215.0,Haut-Uélé,118.0,Democratic Republic of the Congo,102313.0,Dungu,28.25,3.75,COD,1215.0,Haut-Uélé,118.0,Democratic Republic of the Congo,102313.0,Dungu,both,identical +135058,28.75,3.75,COD,1215.0,Haut-Uélé,118.0,Democratic Republic of the Congo,102313.0,Dungu,28.75,3.75,COD,1215.0,Haut-Uélé,118.0,Democratic Republic of the Congo,102313.0,Dungu,both,identical +135059,29.25,3.75,COD,1215.0,Haut-Uélé,118.0,Democratic Republic of the Congo,102313.0,Dungu,29.25,3.75,COD,1215.0,Haut-Uélé,118.0,Democratic Republic of the Congo,102313.0,Dungu,both,identical +135060,29.75,3.75,COD,1215.0,Haut-Uélé,118.0,Democratic Republic of the Congo,102314.0,Faradje,29.75,3.75,COD,1215.0,Haut-Uélé,118.0,Democratic Republic of the Congo,102314.0,Faradje,both,identical +135061,30.25,3.75,COD,1215.0,Haut-Uélé,118.0,Democratic Republic of the Congo,102314.0,Faradje,30.25,3.75,COD,1215.0,Haut-Uélé,118.0,Democratic Republic of the Congo,102314.0,Faradje,both,identical +135062,30.75,3.75,SSD,1617.0,Central Equatoria,160.0,South Sudan,105664.0,Morobo,30.75,3.75,SSD,1617.0,Central Equatoria,160.0,South Sudan,105664.0,Morobo,both,identical +135063,31.25,3.75,SSD,1617.0,Central Equatoria,160.0,South Sudan,105662.0,Kajo-Keji,31.25,3.75,UGA,1677.0,Northern,165.0,Uganda,106343.0,Yumbe,both,country_reassignment +135064,31.75,3.75,SSD,1617.0,Central Equatoria,160.0,South Sudan,105662.0,Kajo-Keji,31.75,3.75,UGA,1677.0,Northern,165.0,Uganda,106331.0,Moyo,both,country_reassignment +135065,32.25,3.75,SSD,1618.0,Eastern Equatoria,160.0,South Sudan,105673.0,Magwi,32.25,3.75,SSD,1618.0,Eastern Equatoria,160.0,South Sudan,105673.0,Magwi,both,identical +135066,32.75,3.75,UGA,1677.0,Northern,165.0,Uganda,106326.0,Lamwo,32.75,3.75,UGA,1677.0,Northern,165.0,Uganda,106326.0,Lamwo,both,identical +135067,33.25,3.75,UGA,1677.0,Northern,165.0,Uganda,106326.0,Lamwo,33.25,3.75,SSD,1618.0,Eastern Equatoria,160.0,South Sudan,105668.0,Ikotos,both,country_reassignment +135068,33.75,3.75,UGA,1677.0,Northern,165.0,Uganda,106320.0,Karenga,33.75,3.75,UGA,1677.0,Northern,165.0,Uganda,106320.0,Karenga,both,identical +135069,34.25,3.75,UGA,1677.0,Northern,165.0,Uganda,106319.0,Kaabong,34.25,3.75,UGA,1677.0,Northern,165.0,Uganda,106319.0,Kaabong,both,identical +135070,34.75,3.75,KEN,1395.0,Turkana,137.0,Kenya,103796.0,Turkana West,34.75,3.75,KEN,1395.0,Turkana,137.0,Kenya,103796.0,Turkana West,both,identical +135071,35.25,3.75,KEN,1395.0,Turkana,137.0,Kenya,103794.0,Turkana North,35.25,3.75,KEN,1395.0,Turkana,137.0,Kenya,103794.0,Turkana North,both,identical +135072,35.75,3.75,KEN,1395.0,Turkana,137.0,Kenya,103794.0,Turkana North,35.75,3.75,KEN,1395.0,Turkana,137.0,Kenya,103794.0,Turkana North,both,identical +135073,36.25,3.75,KEN,1377.0,Marsabit,137.0,Kenya,103680.0,North Horr,36.25,3.75,KEN,1377.0,Marsabit,137.0,Kenya,103680.0,North Horr,both,identical +135074,36.75,3.75,KEN,1377.0,Marsabit,137.0,Kenya,103680.0,North Horr,36.75,3.75,KEN,1377.0,Marsabit,137.0,Kenya,103680.0,North Horr,both,identical +135075,37.25,3.75,KEN,1377.0,Marsabit,137.0,Kenya,103680.0,North Horr,37.25,3.75,KEN,1377.0,Marsabit,137.0,Kenya,103680.0,North Horr,both,identical +135076,37.75,3.75,KEN,1377.0,Marsabit,137.0,Kenya,103680.0,North Horr,37.75,3.75,KEN,1377.0,Marsabit,137.0,Kenya,103680.0,North Horr,both,identical +135077,38.25,3.75,ETH,1296.0,Oromia,124.0,Ethiopia,103074.0,Borena,38.25,3.75,ETH,1296.0,Oromia,124.0,Ethiopia,103074.0,Borena,both,identical +135078,38.75,3.75,ETH,1296.0,Oromia,124.0,Ethiopia,103074.0,Borena,38.75,3.75,ETH,1296.0,Oromia,124.0,Ethiopia,103074.0,Borena,both,identical +135079,39.25,3.75,ETH,1296.0,Oromia,124.0,Ethiopia,103074.0,Borena,39.25,3.75,ETH,1296.0,Oromia,124.0,Ethiopia,103074.0,Borena,both,identical +135080,39.75,3.75,ETH,1299.0,Somali,124.0,Ethiopia,103112.0,Daawa,39.75,3.75,ETH,1299.0,Somali,124.0,Ethiopia,103112.0,Daawa,both,identical +135081,40.25,3.75,KEN,1376.0,Mandera,137.0,Kenya,103672.0,Banissa,40.25,3.75,KEN,1376.0,Mandera,137.0,Kenya,103672.0,Banissa,both,identical +135082,40.75,3.75,KEN,1376.0,Mandera,137.0,Kenya,103675.0,Mandera North,40.75,3.75,KEN,1376.0,Mandera,137.0,Kenya,103675.0,Mandera North,both,identical +135083,41.25,3.75,KEN,1376.0,Mandera,137.0,Kenya,103673.0,Lafey,41.25,3.75,KEN,1376.0,Mandera,137.0,Kenya,103673.0,Lafey,both,identical +135084,41.75,3.75,SOM,1595.0,Gedo,158.0,Somalia,105561.0,Belet Xaawo,41.75,3.75,KEN,1376.0,Mandera,137.0,Kenya,103674.0,Mandera East,both,country_reassignment +135085,42.25,3.75,SOM,1595.0,Gedo,158.0,Somalia,105565.0,Luuq,42.25,3.75,SOM,1595.0,Gedo,158.0,Somalia,105565.0,Luuq,both,identical +135086,42.75,3.75,SOM,1595.0,Gedo,158.0,Somalia,105565.0,Luuq,42.75,3.75,SOM,1595.0,Gedo,158.0,Somalia,105565.0,Luuq,both,identical +135087,43.25,3.75,SOM,1590.0,Bakool,158.0,Somalia,105542.0,Waajid,43.25,3.75,SOM,1590.0,Bakool,158.0,Somalia,105542.0,Waajid,both,identical +135088,43.75,3.75,SOM,1593.0,Bay,158.0,Somalia,105551.0,Baydhaba,43.75,3.75,SOM,1593.0,Bay,158.0,Somalia,105551.0,Baydhaba,both,identical +135089,44.25,3.75,SOM,1590.0,Bakool,158.0,Somalia,105541.0,Tayeeglow,44.25,3.75,SOM,1590.0,Bakool,158.0,Somalia,105541.0,Tayeeglow,both,identical +135090,44.75,3.75,SOM,1590.0,Bakool,158.0,Somalia,105541.0,Tayeeglow,44.75,3.75,SOM,1590.0,Bakool,158.0,Somalia,105541.0,Tayeeglow,both,identical +135091,45.25,3.75,SOM,1596.0,Hiraan,158.0,Somalia,105567.0,Bulo Burto,45.25,3.75,SOM,1596.0,Hiraan,158.0,Somalia,105567.0,Bulo Burto,both,identical +135092,45.75,3.75,SOM,1596.0,Hiraan,158.0,Somalia,105567.0,Bulo Burto,45.75,3.75,SOM,1596.0,Hiraan,158.0,Somalia,105567.0,Bulo Burto,both,identical +135093,46.25,3.75,SOM,1600.0,Middle Shabelle,158.0,Somalia,105583.0,Adan Yabaal,46.25,3.75,SOM,1600.0,Middle Shabelle,158.0,Somalia,105583.0,Adan Yabaal,both,identical +135094,46.75,3.75,SOM,1594.0,Galgaduud,158.0,Somalia,105558.0,Ceel Dheer,46.75,3.75,SOM,1594.0,Galgaduud,158.0,Somalia,105558.0,Ceel Dheer,both,identical +135095,47.25,3.75,SOM,1594.0,Galgaduud,158.0,Somalia,105558.0,Ceel Dheer,47.25,3.75,SOM,1594.0,Galgaduud,158.0,Somalia,105558.0,Ceel Dheer,both,identical +135096,47.75,3.75,SOM,1594.0,Galgaduud,158.0,Somalia,105558.0,Ceel Dheer,47.75,3.75,SOM,1594.0,Galgaduud,158.0,Somalia,105558.0,Ceel Dheer,both,identical +135705,-7.75,4.25,LBR,1419.0,Maryland,139.0,Liberia,103969.0,Harper,-7.75,4.25,LBR,1419.0,Maryland,139.0,Liberia,103969.0,Harper,both,identical +135706,-7.25,4.25,CIV,1199.0,Bas-Sassandra,117.0,Côte D'Ivoire,102261.0,San-Pédro,-7.25,4.25,CIV,1199.0,Bas-Sassandra,117.0,Côte D'Ivoire,102261.0,San-Pédro,both,identical +135732,5.75,4.25,NGA,1522.0,Bayelsa,151.0,Nigeria,104747.0,Southern Ijaw,5.75,4.25,NGA,1522.0,Bayelsa,151.0,Nigeria,104747.0,Southern Ijaw,both,identical +135733,6.25,4.25,NGA,1522.0,Bayelsa,151.0,Nigeria,104741.0,Brass,6.25,4.25,NGA,1522.0,Bayelsa,151.0,Nigeria,104741.0,Brass,both,identical +135734,6.75,4.25,NGA,1549.0,Rivers,151.0,Nigeria,105315.0,Akuku Toru,6.75,4.25,NGA,1549.0,Rivers,151.0,Nigeria,105315.0,Akuku Toru,both,identical +135735,7.25,4.25,NGA,1549.0,Rivers,151.0,Nigeria,105318.0,Bonny,7.25,4.25,NGA,1549.0,Rivers,151.0,Nigeria,105318.0,Bonny,both,identical +135736,7.75,4.25,NGA,1549.0,Rivers,151.0,Nigeria,105331.0,Opobo/Nkoro,7.75,4.25,NGA,1549.0,Rivers,151.0,Nigeria,105331.0,Opobo/Nkoro,both,identical +135738,8.75,4.25,CMR,1151.0,Sud-Ouest,112.0,Cameroon,102064.0,Ndian,8.75,4.25,CMR,1151.0,Sud-Ouest,112.0,Cameroon,102064.0,Ndian,both,identical +135739,9.25,4.25,CMR,1151.0,Sud-Ouest,112.0,Cameroon,102059.0,Fako,9.25,4.25,CMR,1151.0,Sud-Ouest,112.0,Cameroon,102059.0,Fako,both,identical +135740,9.75,4.25,CMR,1146.0,Littoral,112.0,Cameroon,102032.0,Moungo,9.75,4.25,CMR,1146.0,Littoral,112.0,Cameroon,102032.0,Moungo,both,identical +135741,10.25,4.25,CMR,1146.0,Littoral,112.0,Cameroon,102033.0,Nkam,10.25,4.25,CMR,1146.0,Littoral,112.0,Cameroon,102033.0,Nkam,both,identical +135742,10.75,4.25,CMR,1146.0,Littoral,112.0,Cameroon,102034.0,Sanaga-Maritime,10.75,4.25,CMR,1146.0,Littoral,112.0,Cameroon,102034.0,Sanaga-Maritime,both,identical +135743,11.25,4.25,CMR,1143.0,Centre,112.0,Cameroon,102013.0,Lekié,11.25,4.25,CMR,1143.0,Centre,112.0,Cameroon,102013.0,Lekié,both,identical +135744,11.75,4.25,CMR,1143.0,Centre,112.0,Cameroon,102016.0,Mefou-Et-Afamba,11.75,4.25,CMR,1143.0,Centre,112.0,Cameroon,102016.0,Mefou-Et-Afamba,both,identical +135745,12.25,4.25,CMR,1143.0,Centre,112.0,Cameroon,102012.0,Haute-Sanaga,12.25,4.25,CMR,1143.0,Centre,112.0,Cameroon,102012.0,Haute-Sanaga,both,identical +135746,12.75,4.25,CMR,1143.0,Centre,112.0,Cameroon,102020.0,Nyong-Et-Mfoumou,12.75,4.25,CMR,1143.0,Centre,112.0,Cameroon,102020.0,Nyong-Et-Mfoumou,both,identical +135747,13.25,4.25,CMR,1144.0,Est,112.0,Cameroon,102023.0,Haut-Nyong,13.25,4.25,CMR,1144.0,Est,112.0,Cameroon,102023.0,Haut-Nyong,both,identical +135748,13.75,4.25,CMR,1144.0,Est,112.0,Cameroon,102024.0,Kadeï,13.75,4.25,CMR,1144.0,Est,112.0,Cameroon,102024.0,Kadeï,both,identical +135749,14.25,4.25,CMR,1144.0,Est,112.0,Cameroon,102024.0,Kadeï,14.25,4.25,CMR,1144.0,Est,112.0,Cameroon,102024.0,Kadeï,both,identical +135750,14.75,4.25,CMR,1144.0,Est,112.0,Cameroon,102024.0,Kadeï,14.75,4.25,CMR,1144.0,Est,112.0,Cameroon,102024.0,Kadeï,both,identical +135751,15.25,4.25,CAF,1153.0,Equateur,113.0,Central African Republic,102066.0,Mambéré-Kadéï,15.25,4.25,CAF,1153.0,Equateur,113.0,Central African Republic,102066.0,Mambéré-Kadéï,both,identical +135752,15.75,4.25,CAF,1153.0,Equateur,113.0,Central African Republic,102066.0,Mambéré-Kadéï,15.75,4.25,CAF,1153.0,Equateur,113.0,Central African Republic,102066.0,Mambéré-Kadéï,both,identical +135753,16.25,4.25,CAF,1153.0,Equateur,113.0,Central African Republic,102066.0,Mambéré-Kadéï,16.25,4.25,CAF,1153.0,Equateur,113.0,Central African Republic,102066.0,Mambéré-Kadéï,both,identical +135754,16.75,4.25,CAF,1153.0,Equateur,113.0,Central African Republic,102066.0,Mambéré-Kadéï,16.75,4.25,CAF,1153.0,Equateur,113.0,Central African Republic,102066.0,Mambéré-Kadéï,both,identical +135755,17.25,4.25,CAF,1157.0,Plateaux,113.0,Central African Republic,102078.0,Lobaye,17.25,4.25,CAF,1157.0,Plateaux,113.0,Central African Republic,102078.0,Lobaye,both,identical +135756,17.75,4.25,CAF,1157.0,Plateaux,113.0,Central African Republic,102078.0,Lobaye,17.75,4.25,CAF,1157.0,Plateaux,113.0,Central African Republic,102078.0,Lobaye,both,identical +135757,18.25,4.25,CAF,1157.0,Plateaux,113.0,Central African Republic,102078.0,Lobaye,18.25,4.25,CAF,1157.0,Plateaux,113.0,Central African Republic,102078.0,Lobaye,both,identical +135758,18.75,4.25,COD,1233.0,Sud-Ubangi,118.0,Democratic Republic of the Congo,102476.0,Libenge,18.75,4.25,COD,1233.0,Sud-Ubangi,118.0,Democratic Republic of the Congo,102476.0,Libenge,both,identical +135759,19.25,4.25,COD,1233.0,Sud-Ubangi,118.0,Democratic Republic of the Congo,102476.0,Libenge,19.25,4.25,COD,1233.0,Sud-Ubangi,118.0,Democratic Republic of the Congo,102476.0,Libenge,both,identical +135760,19.75,4.25,COD,1230.0,Nord-Ubangi,118.0,Democratic Republic of the Congo,102448.0,Bosobolo,19.75,4.25,COD,1230.0,Nord-Ubangi,118.0,Democratic Republic of the Congo,102448.0,Bosobolo,both,identical +135761,20.25,4.25,COD,1230.0,Nord-Ubangi,118.0,Democratic Republic of the Congo,102448.0,Bosobolo,20.25,4.25,COD,1230.0,Nord-Ubangi,118.0,Democratic Republic of the Congo,102448.0,Bosobolo,both,identical +135762,20.75,4.25,COD,1230.0,Nord-Ubangi,118.0,Democratic Republic of the Congo,102451.0,Mobayi-Mbongo,20.75,4.25,COD,1230.0,Nord-Ubangi,118.0,Democratic Republic of the Congo,102451.0,Mobayi-Mbongo,both,identical +135763,21.25,4.25,COD,1230.0,Nord-Ubangi,118.0,Democratic Republic of the Congo,102451.0,Mobayi-Mbongo,21.25,4.25,COD,1230.0,Nord-Ubangi,118.0,Democratic Republic of the Congo,102451.0,Mobayi-Mbongo,both,identical +135764,21.75,4.25,COD,1230.0,Nord-Ubangi,118.0,Democratic Republic of the Congo,102451.0,Mobayi-Mbongo,21.75,4.25,COD,1230.0,Nord-Ubangi,118.0,Democratic Republic of the Congo,102451.0,Mobayi-Mbongo,both,identical +135765,22.25,4.25,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102074.0,Mbomou,22.25,4.25,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102074.0,Mbomou,both,identical +135766,22.75,4.25,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102294.0,Bondo,22.75,4.25,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102294.0,Bondo,both,identical +135767,23.25,4.25,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102294.0,Bondo,23.25,4.25,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102294.0,Bondo,both,identical +135768,23.75,4.25,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102294.0,Bondo,23.75,4.25,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102294.0,Bondo,both,identical +135769,24.25,4.25,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102294.0,Bondo,24.25,4.25,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102294.0,Bondo,both,identical +135770,24.75,4.25,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102294.0,Bondo,24.75,4.25,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102294.0,Bondo,both,identical +135771,25.25,4.25,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102294.0,Bondo,25.25,4.25,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102294.0,Bondo,both,identical +135772,25.75,4.25,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102292.0,Ango,25.75,4.25,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102292.0,Ango,both,identical +135773,26.25,4.25,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102292.0,Ango,26.25,4.25,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102292.0,Ango,both,identical +135774,26.75,4.25,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102292.0,Ango,26.75,4.25,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102292.0,Ango,both,identical +135775,27.25,4.25,COD,1215.0,Haut-Uélé,118.0,Democratic Republic of the Congo,102313.0,Dungu,27.25,4.25,COD,1215.0,Haut-Uélé,118.0,Democratic Republic of the Congo,102313.0,Dungu,both,identical +135776,27.75,4.25,COD,1215.0,Haut-Uélé,118.0,Democratic Republic of the Congo,102313.0,Dungu,27.75,4.25,COD,1215.0,Haut-Uélé,118.0,Democratic Republic of the Congo,102313.0,Dungu,both,identical +135777,28.25,4.25,COD,1215.0,Haut-Uélé,118.0,Democratic Republic of the Congo,102313.0,Dungu,28.25,4.25,COD,1215.0,Haut-Uélé,118.0,Democratic Republic of the Congo,102313.0,Dungu,both,identical +135778,28.75,4.25,COD,1215.0,Haut-Uélé,118.0,Democratic Republic of the Congo,102313.0,Dungu,28.75,4.25,COD,1215.0,Haut-Uélé,118.0,Democratic Republic of the Congo,102313.0,Dungu,both,identical +135779,29.25,4.25,COD,1215.0,Haut-Uélé,118.0,Democratic Republic of the Congo,102313.0,Dungu,29.25,4.25,COD,1215.0,Haut-Uélé,118.0,Democratic Republic of the Congo,102313.0,Dungu,both,identical +135780,29.75,4.25,COD,1215.0,Haut-Uélé,118.0,Democratic Republic of the Congo,102313.0,Dungu,29.75,4.25,COD,1215.0,Haut-Uélé,118.0,Democratic Republic of the Congo,102313.0,Dungu,both,identical +135781,30.25,4.25,SSD,1617.0,Central Equatoria,160.0,South Sudan,105666.0,Yei,30.25,4.25,SSD,1617.0,Central Equatoria,160.0,South Sudan,105666.0,Yei,both,identical +135782,30.75,4.25,SSD,1617.0,Central Equatoria,160.0,South Sudan,105663.0,Lainya,30.75,4.25,SSD,1617.0,Central Equatoria,160.0,South Sudan,105663.0,Lainya,both,identical +135783,31.25,4.25,SSD,1617.0,Central Equatoria,160.0,South Sudan,105661.0,Juba,31.25,4.25,SSD,1617.0,Central Equatoria,160.0,South Sudan,105661.0,Juba,both,identical +135784,31.75,4.25,SSD,1617.0,Central Equatoria,160.0,South Sudan,105661.0,Juba,31.75,4.25,SSD,1617.0,Central Equatoria,160.0,South Sudan,105661.0,Juba,both,identical +135785,32.25,4.25,SSD,1618.0,Eastern Equatoria,160.0,South Sudan,105674.0,Torit,32.25,4.25,SSD,1618.0,Eastern Equatoria,160.0,South Sudan,105674.0,Torit,both,identical +135786,32.75,4.25,SSD,1618.0,Eastern Equatoria,160.0,South Sudan,105674.0,Torit,32.75,4.25,SSD,1618.0,Eastern Equatoria,160.0,South Sudan,105674.0,Torit,both,identical +135787,33.25,4.25,SSD,1618.0,Eastern Equatoria,160.0,South Sudan,105667.0,Budi,33.25,4.25,SSD,1618.0,Eastern Equatoria,160.0,South Sudan,105667.0,Budi,both,identical +135788,33.75,4.25,SSD,1618.0,Eastern Equatoria,160.0,South Sudan,105667.0,Budi,33.75,4.25,SSD,1618.0,Eastern Equatoria,160.0,South Sudan,105667.0,Budi,both,identical +135789,34.25,4.25,KEN,1395.0,Turkana,137.0,Kenya,103796.0,Turkana West,34.25,4.25,KEN,1395.0,Turkana,137.0,Kenya,103796.0,Turkana West,both,identical +135790,34.75,4.25,KEN,1395.0,Turkana,137.0,Kenya,103796.0,Turkana West,34.75,4.25,KEN,1395.0,Turkana,137.0,Kenya,103796.0,Turkana West,both,identical +135791,35.25,4.25,KEN,1395.0,Turkana,137.0,Kenya,103794.0,Turkana North,35.25,4.25,KEN,1395.0,Turkana,137.0,Kenya,103794.0,Turkana North,both,identical +135792,35.75,4.25,KEN,1395.0,Turkana,137.0,Kenya,103794.0,Turkana North,35.75,4.25,KEN,1395.0,Turkana,137.0,Kenya,103794.0,Turkana North,both,identical +135793,36.25,4.25,KEN,1377.0,Marsabit,137.0,Kenya,103680.0,North Horr,36.25,4.25,KEN,1377.0,Marsabit,137.0,Kenya,103680.0,North Horr,both,identical +135794,36.75,4.25,KEN,1377.0,Marsabit,137.0,Kenya,103680.0,North Horr,36.75,4.25,KEN,1377.0,Marsabit,137.0,Kenya,103680.0,North Horr,both,identical +135795,37.25,4.25,ETH,1296.0,Oromia,124.0,Ethiopia,103074.0,Borena,37.25,4.25,ETH,1296.0,Oromia,124.0,Ethiopia,103074.0,Borena,both,identical +135796,37.75,4.25,ETH,1296.0,Oromia,124.0,Ethiopia,103074.0,Borena,37.75,4.25,ETH,1296.0,Oromia,124.0,Ethiopia,103074.0,Borena,both,identical +135797,38.25,4.25,ETH,1296.0,Oromia,124.0,Ethiopia,103074.0,Borena,38.25,4.25,ETH,1296.0,Oromia,124.0,Ethiopia,103074.0,Borena,both,identical +135798,38.75,4.25,ETH,1296.0,Oromia,124.0,Ethiopia,103074.0,Borena,38.75,4.25,ETH,1296.0,Oromia,124.0,Ethiopia,103074.0,Borena,both,identical +135799,39.25,4.25,ETH,1296.0,Oromia,124.0,Ethiopia,103074.0,Borena,39.25,4.25,ETH,1296.0,Oromia,124.0,Ethiopia,103074.0,Borena,both,identical +135800,39.75,4.25,ETH,1299.0,Somali,124.0,Ethiopia,103112.0,Daawa,39.75,4.25,ETH,1299.0,Somali,124.0,Ethiopia,103112.0,Daawa,both,identical +135801,40.25,4.25,ETH,1299.0,Somali,124.0,Ethiopia,103112.0,Daawa,40.25,4.25,ETH,1299.0,Somali,124.0,Ethiopia,103112.0,Daawa,both,identical +135802,40.75,4.25,ETH,1299.0,Somali,124.0,Ethiopia,103118.0,Liban,40.75,4.25,KEN,1376.0,Mandera,137.0,Kenya,103672.0,Banissa,both,country_reassignment +135803,41.25,4.25,ETH,1299.0,Somali,124.0,Ethiopia,103118.0,Liban,41.25,4.25,ETH,1299.0,Somali,124.0,Ethiopia,103118.0,Liban,both,identical +135804,41.75,4.25,ETH,1299.0,Somali,124.0,Ethiopia,103118.0,Liban,41.75,4.25,ETH,1299.0,Somali,124.0,Ethiopia,103118.0,Liban,both,identical +135805,42.25,4.25,ETH,1299.0,Somali,124.0,Ethiopia,103111.0,Afder,42.25,4.25,ETH,1299.0,Somali,124.0,Ethiopia,103111.0,Afder,both,identical +135806,42.75,4.25,SOM,1595.0,Gedo,158.0,Somalia,105565.0,Luuq,42.75,4.25,SOM,1595.0,Gedo,158.0,Somalia,105565.0,Luuq,both,identical +135807,43.25,4.25,SOM,1590.0,Bakool,158.0,Somalia,105540.0,Rab Dhuure,43.25,4.25,SOM,1590.0,Bakool,158.0,Somalia,105540.0,Rab Dhuure,both,identical +135808,43.75,4.25,SOM,1590.0,Bakool,158.0,Somalia,105543.0,Xudur,43.75,4.25,SOM,1590.0,Bakool,158.0,Somalia,105543.0,Xudur,both,identical +135809,44.25,4.25,SOM,1590.0,Bakool,158.0,Somalia,105543.0,Xudur,44.25,4.25,SOM,1590.0,Bakool,158.0,Somalia,105543.0,Xudur,both,identical +135810,44.75,4.25,SOM,1596.0,Hiraan,158.0,Somalia,105566.0,Belet Weyne,44.75,4.25,SOM,1596.0,Hiraan,158.0,Somalia,105566.0,Belet Weyne,both,identical +135811,45.25,4.25,SOM,1596.0,Hiraan,158.0,Somalia,105567.0,Bulo Burto,45.25,4.25,SOM,1596.0,Hiraan,158.0,Somalia,105567.0,Bulo Burto,both,identical +135812,45.75,4.25,SOM,1596.0,Hiraan,158.0,Somalia,105567.0,Bulo Burto,45.75,4.25,SOM,1596.0,Hiraan,158.0,Somalia,105567.0,Bulo Burto,both,identical +135813,46.25,4.25,SOM,1596.0,Hiraan,158.0,Somalia,105567.0,Bulo Burto,46.25,4.25,SOM,1596.0,Hiraan,158.0,Somalia,105567.0,Bulo Burto,both,identical +135814,46.75,4.25,SOM,1594.0,Galgaduud,158.0,Somalia,105558.0,Ceel Dheer,46.75,4.25,SOM,1594.0,Galgaduud,158.0,Somalia,105558.0,Ceel Dheer,both,identical +135815,47.25,4.25,SOM,1594.0,Galgaduud,158.0,Somalia,105558.0,Ceel Dheer,47.25,4.25,SOM,1594.0,Galgaduud,158.0,Somalia,105558.0,Ceel Dheer,both,identical +135816,47.75,4.25,SOM,1594.0,Galgaduud,158.0,Somalia,105558.0,Ceel Dheer,47.75,4.25,SOM,1594.0,Galgaduud,158.0,Somalia,105558.0,Ceel Dheer,both,identical +136422,-9.25,4.75,LBR,1424.0,Sinoe,139.0,Liberia,104023.0,Kpayan,-9.25,4.75,LBR,1424.0,Sinoe,139.0,Liberia,104023.0,Kpayan,both,identical +136423,-8.75,4.75,LBR,1424.0,Sinoe,139.0,Liberia,104018.0,Dugbe River,-8.75,4.75,LBR,1424.0,Sinoe,139.0,Liberia,104018.0,Dugbe River,both,identical +136424,-8.25,4.75,LBR,1416.0,Grand Kru,139.0,Liberia,103939.0,Barclayville,-8.25,4.75,LBR,1416.0,Grand Kru,139.0,Liberia,103939.0,Barclayville,both,identical +136425,-7.75,4.75,LBR,1419.0,Maryland,139.0,Liberia,103971.0,Karluway #2,-7.75,4.75,LBR,1419.0,Maryland,139.0,Liberia,103971.0,Karluway #2,both,identical +136426,-7.25,4.75,CIV,1199.0,Bas-Sassandra,117.0,Côte D'Ivoire,102261.0,San-Pédro,-7.25,4.75,CIV,1199.0,Bas-Sassandra,117.0,Côte D'Ivoire,102261.0,San-Pédro,both,identical +136427,-6.75,4.75,CIV,1199.0,Bas-Sassandra,117.0,Côte D'Ivoire,102261.0,San-Pédro,-6.75,4.75,CIV,1199.0,Bas-Sassandra,117.0,Côte D'Ivoire,102261.0,San-Pédro,both,identical +136428,-6.25,4.75,CIV,1199.0,Bas-Sassandra,117.0,Côte D'Ivoire,102259.0,Gbôklé,-6.25,4.75,CIV,1199.0,Bas-Sassandra,117.0,Côte D'Ivoire,102259.0,Gbôklé,both,identical +136429,-5.75,4.75,CIV,1199.0,Bas-Sassandra,117.0,Côte D'Ivoire,102259.0,Gbôklé,-5.75,4.75,CIV,1199.0,Bas-Sassandra,117.0,Côte D'Ivoire,102259.0,Gbôklé,both,identical +136435,-2.75,4.75,GHA,1330.0,Western,129.0,Ghana,103433.0,Ellembelle,-2.75,4.75,GHA,1330.0,Western,129.0,Ghana,103433.0,Ellembelle,both,identical +136436,-2.25,4.75,GHA,1330.0,Western,129.0,Ghana,103437.0,Nzema East,-2.25,4.75,GHA,1330.0,Western,129.0,Ghana,103437.0,Nzema East,both,identical +136437,-1.75,4.75,GHA,1330.0,Western,129.0,Ghana,103428.0,Ahanta West,-1.75,4.75,GHA,1330.0,Western,129.0,Ghana,103428.0,Ahanta West,both,identical +136451,5.25,4.75,NGA,1522.0,Bayelsa,151.0,Nigeria,104742.0,Ekeremor,5.25,4.75,NGA,1522.0,Bayelsa,151.0,Nigeria,104742.0,Ekeremor,both,identical +136452,5.75,4.75,NGA,1522.0,Bayelsa,151.0,Nigeria,104747.0,Southern Ijaw,5.75,4.75,NGA,1522.0,Bayelsa,151.0,Nigeria,104747.0,Southern Ijaw,both,identical +136453,6.25,4.75,NGA,1522.0,Bayelsa,151.0,Nigeria,104747.0,Southern Ijaw,6.25,4.75,NGA,1522.0,Bayelsa,151.0,Nigeria,104747.0,Southern Ijaw,both,identical +136454,6.75,4.75,NGA,1549.0,Rivers,151.0,Nigeria,105315.0,Akuku Toru,6.75,4.75,NGA,1549.0,Rivers,151.0,Nigeria,105315.0,Akuku Toru,both,identical +136455,7.25,4.75,NGA,1549.0,Rivers,151.0,Nigeria,105325.0,Khana,7.25,4.75,NGA,1549.0,Rivers,151.0,Nigeria,105325.0,Khana,both,identical +136456,7.75,4.75,NGA,1519.0,Akwa Lbom,151.0,Nigeria,104694.0,Oruk Anam,7.75,4.75,NGA,1519.0,Akwa Lbom,151.0,Nigeria,104694.0,Oruk Anam,both,identical +136457,8.25,4.75,NGA,1519.0,Akwa Lbom,151.0,Nigeria,104801.0,Akpabuyo,8.25,4.75,NGA,1525.0,Cross River,151.0,Nigeria,104801.0,Akpabuyo,both,admin_reallocation +136458,8.75,4.75,CMR,1151.0,Sud-Ouest,112.0,Cameroon,102064.0,Ndian,8.75,4.75,CMR,1151.0,Sud-Ouest,112.0,Cameroon,102064.0,Ndian,both,identical +136459,9.25,4.75,CMR,1151.0,Sud-Ouest,112.0,Cameroon,102063.0,Meme,9.25,4.75,CMR,1151.0,Sud-Ouest,112.0,Cameroon,102063.0,Meme,both,identical +136460,9.75,4.75,CMR,1146.0,Littoral,112.0,Cameroon,102032.0,Moungo,9.75,4.75,CMR,1146.0,Littoral,112.0,Cameroon,102032.0,Moungo,both,identical +136461,10.25,4.75,CMR,1146.0,Littoral,112.0,Cameroon,102033.0,Nkam,10.25,4.75,CMR,1146.0,Littoral,112.0,Cameroon,102033.0,Nkam,both,identical +136462,10.75,4.75,CMR,1143.0,Centre,112.0,Cameroon,102014.0,Mbam-Et-Inoubou,10.75,4.75,CMR,1143.0,Centre,112.0,Cameroon,102014.0,Mbam-Et-Inoubou,both,identical +136463,11.25,4.75,CMR,1143.0,Centre,112.0,Cameroon,102014.0,Mbam-Et-Inoubou,11.25,4.75,CMR,1143.0,Centre,112.0,Cameroon,102014.0,Mbam-Et-Inoubou,both,identical +136464,11.75,4.75,CMR,1143.0,Centre,112.0,Cameroon,102015.0,Mbam-Et-Kim,11.75,4.75,CMR,1143.0,Centre,112.0,Cameroon,102015.0,Mbam-Et-Kim,both,identical +136465,12.25,4.75,CMR,1143.0,Centre,112.0,Cameroon,102012.0,Haute-Sanaga,12.25,4.75,CMR,1143.0,Centre,112.0,Cameroon,102012.0,Haute-Sanaga,both,identical +136466,12.75,4.75,CMR,1143.0,Centre,112.0,Cameroon,102012.0,Haute-Sanaga,12.75,4.75,CMR,1143.0,Centre,112.0,Cameroon,102012.0,Haute-Sanaga,both,identical +136467,13.25,4.75,CMR,1144.0,Est,112.0,Cameroon,102025.0,Lom-Et-Djerem,13.25,4.75,CMR,1144.0,Est,112.0,Cameroon,102025.0,Lom-Et-Djerem,both,identical +136468,13.75,4.75,CMR,1144.0,Est,112.0,Cameroon,102025.0,Lom-Et-Djerem,13.75,4.75,CMR,1144.0,Est,112.0,Cameroon,102025.0,Lom-Et-Djerem,both,identical +136469,14.25,4.75,CMR,1144.0,Est,112.0,Cameroon,102024.0,Kadeï,14.25,4.75,CMR,1144.0,Est,112.0,Cameroon,102024.0,Kadeï,both,identical +136470,14.75,4.75,CAF,1153.0,Equateur,113.0,Central African Republic,102066.0,Mambéré-Kadéï,14.75,4.75,CAF,1153.0,Equateur,113.0,Central African Republic,102066.0,Mambéré-Kadéï,both,identical +136471,15.25,4.75,CAF,1153.0,Equateur,113.0,Central African Republic,102066.0,Mambéré-Kadéï,15.25,4.75,CAF,1153.0,Equateur,113.0,Central African Republic,102066.0,Mambéré-Kadéï,both,identical +136472,15.75,4.75,CAF,1153.0,Equateur,113.0,Central African Republic,102066.0,Mambéré-Kadéï,15.75,4.75,CAF,1153.0,Equateur,113.0,Central African Republic,102066.0,Mambéré-Kadéï,both,identical +136473,16.25,4.75,CAF,1153.0,Equateur,113.0,Central African Republic,102066.0,Mambéré-Kadéï,16.25,4.75,CAF,1153.0,Equateur,113.0,Central African Republic,102066.0,Mambéré-Kadéï,both,identical +136474,16.75,4.75,CAF,1153.0,Equateur,113.0,Central African Republic,102066.0,Mambéré-Kadéï,16.75,4.75,CAF,1153.0,Equateur,113.0,Central African Republic,102066.0,Mambéré-Kadéï,both,identical +136475,17.25,4.75,CAF,1157.0,Plateaux,113.0,Central African Republic,102078.0,Lobaye,17.25,4.75,CAF,1157.0,Plateaux,113.0,Central African Republic,102078.0,Lobaye,both,identical +136476,17.75,4.75,CAF,1157.0,Plateaux,113.0,Central African Republic,102079.0,Ombella-M'Poko,17.75,4.75,CAF,1157.0,Plateaux,113.0,Central African Republic,102079.0,Ombella-M'Poko,both,identical +136477,18.25,4.75,CAF,1157.0,Plateaux,113.0,Central African Republic,102079.0,Ombella-M'Poko,18.25,4.75,CAF,1157.0,Plateaux,113.0,Central African Republic,102079.0,Ombella-M'Poko,both,identical +136478,18.75,4.75,CAF,1157.0,Plateaux,113.0,Central African Republic,102079.0,Ombella-M'Poko,18.75,4.75,CAF,1157.0,Plateaux,113.0,Central African Republic,102079.0,Ombella-M'Poko,both,identical +136479,19.25,4.75,COD,1230.0,Nord-Ubangi,118.0,Democratic Republic of the Congo,102448.0,Bosobolo,19.25,4.75,COD,1230.0,Nord-Ubangi,118.0,Democratic Republic of the Congo,102448.0,Bosobolo,both,identical +136480,19.75,4.75,COD,1230.0,Nord-Ubangi,118.0,Democratic Republic of the Congo,102448.0,Bosobolo,19.75,4.75,COD,1230.0,Nord-Ubangi,118.0,Democratic Republic of the Congo,102448.0,Bosobolo,both,identical +136481,20.25,4.75,COD,1230.0,Nord-Ubangi,118.0,Democratic Republic of the Congo,102448.0,Bosobolo,20.25,4.75,COD,1230.0,Nord-Ubangi,118.0,Democratic Republic of the Congo,102448.0,Bosobolo,both,identical +136482,20.75,4.75,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102072.0,Basse-Kotto,20.75,4.75,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102072.0,Basse-Kotto,both,identical +136483,21.25,4.75,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102072.0,Basse-Kotto,21.25,4.75,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102072.0,Basse-Kotto,both,identical +136484,21.75,4.75,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102072.0,Basse-Kotto,21.75,4.75,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102072.0,Basse-Kotto,both,identical +136485,22.25,4.75,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102074.0,Mbomou,22.25,4.75,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102074.0,Mbomou,both,identical +136486,22.75,4.75,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102074.0,Mbomou,22.75,4.75,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102074.0,Mbomou,both,identical +136487,23.25,4.75,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102074.0,Mbomou,23.25,4.75,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102074.0,Mbomou,both,identical +136488,23.75,4.75,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102294.0,Bondo,23.75,4.75,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102294.0,Bondo,both,identical +136489,24.25,4.75,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102294.0,Bondo,24.25,4.75,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102294.0,Bondo,both,identical +136490,24.75,4.75,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102294.0,Bondo,24.75,4.75,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102294.0,Bondo,both,identical +136491,25.25,4.75,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102292.0,Ango,25.25,4.75,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102292.0,Ango,both,identical +136492,25.75,4.75,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102292.0,Ango,25.75,4.75,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102292.0,Ango,both,identical +136493,26.25,4.75,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102292.0,Ango,26.25,4.75,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102292.0,Ango,both,identical +136494,26.75,4.75,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102292.0,Ango,26.75,4.75,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102292.0,Ango,both,identical +136495,27.25,4.75,COD,1215.0,Haut-Uélé,118.0,Democratic Republic of the Congo,102313.0,Dungu,27.25,4.75,COD,1215.0,Haut-Uélé,118.0,Democratic Republic of the Congo,102313.0,Dungu,both,identical +136496,27.75,4.75,SSD,1626.0,Western Equatoria,160.0,South Sudan,105729.0,Ezo,27.75,4.75,COD,1215.0,Haut-Uélé,118.0,Democratic Republic of the Congo,102313.0,Dungu,both,country_reassignment +136497,28.25,4.75,SSD,1626.0,Western Equatoria,160.0,South Sudan,105736.0,Nzara,28.25,4.75,SSD,1626.0,Western Equatoria,160.0,South Sudan,105736.0,Nzara,both,identical +136498,28.75,4.75,SSD,1626.0,Western Equatoria,160.0,South Sudan,105738.0,Yambio,28.75,4.75,SSD,1626.0,Western Equatoria,160.0,South Sudan,105738.0,Yambio,both,identical +136499,29.25,4.75,SSD,1626.0,Western Equatoria,160.0,South Sudan,105730.0,Ibba,29.25,4.75,SSD,1626.0,Western Equatoria,160.0,South Sudan,105730.0,Ibba,both,identical +136500,29.75,4.75,SSD,1626.0,Western Equatoria,160.0,South Sudan,105731.0,Maridi,29.75,4.75,SSD,1626.0,Western Equatoria,160.0,South Sudan,105731.0,Maridi,both,identical +136501,30.25,4.75,SSD,1626.0,Western Equatoria,160.0,South Sudan,105733.0,Mundri West,30.25,4.75,SSD,1626.0,Western Equatoria,160.0,South Sudan,105733.0,Mundri West,both,identical +136502,30.75,4.75,SSD,1617.0,Central Equatoria,160.0,South Sudan,105661.0,Juba,30.75,4.75,SSD,1617.0,Central Equatoria,160.0,South Sudan,105661.0,Juba,both,identical +136503,31.25,4.75,SSD,1617.0,Central Equatoria,160.0,South Sudan,105661.0,Juba,31.25,4.75,SSD,1617.0,Central Equatoria,160.0,South Sudan,105661.0,Juba,both,identical +136504,31.75,4.75,SSD,1617.0,Central Equatoria,160.0,South Sudan,105661.0,Juba,31.75,4.75,SSD,1617.0,Central Equatoria,160.0,South Sudan,105661.0,Juba,both,identical +136505,32.25,4.75,SSD,1618.0,Eastern Equatoria,160.0,South Sudan,105672.0,Lafon,32.25,4.75,SSD,1618.0,Eastern Equatoria,160.0,South Sudan,105672.0,Lafon,both,identical +136506,32.75,4.75,SSD,1618.0,Eastern Equatoria,160.0,South Sudan,105672.0,Lafon,32.75,4.75,SSD,1618.0,Eastern Equatoria,160.0,South Sudan,105672.0,Lafon,both,identical +136507,33.25,4.75,SSD,1618.0,Eastern Equatoria,160.0,South Sudan,105667.0,Budi,33.25,4.75,SSD,1618.0,Eastern Equatoria,160.0,South Sudan,105667.0,Budi,both,identical +136508,33.75,4.75,SSD,1618.0,Eastern Equatoria,160.0,South Sudan,105669.0,Kapoeta East,33.75,4.75,SSD,1618.0,Eastern Equatoria,160.0,South Sudan,105669.0,Kapoeta East,both,identical +136509,34.25,4.75,SSD,1618.0,Eastern Equatoria,160.0,South Sudan,105669.0,Kapoeta East,34.25,4.75,SSD,1618.0,Eastern Equatoria,160.0,South Sudan,105669.0,Kapoeta East,both,identical +136510,34.75,4.75,KEN,1395.0,Turkana,137.0,Kenya,103796.0,Turkana West,34.75,4.75,xIT,1351.0,Administrative Unit Not Available,135.0,Ilemi Triangle,103526.0,Administrative Unit Not Available,both,country_reassignment +136511,35.25,4.75,KEN,1395.0,Turkana,137.0,Kenya,103794.0,Turkana North,35.25,4.75,xIT,1351.0,Administrative Unit Not Available,135.0,Ilemi Triangle,103526.0,Administrative Unit Not Available,both,country_reassignment +136512,35.75,4.75,SSD,1618.0,Eastern Equatoria,160.0,South Sudan,105669.0,Kapoeta East,35.75,4.75,SSD,1618.0,Eastern Equatoria,160.0,South Sudan,105669.0,Kapoeta East,both,identical +136513,36.25,4.75,ETH,1298.0,Snnp,124.0,Ethiopia,103108.0,South Omo,36.25,4.75,ETH,1298.0,Snnp,124.0,Ethiopia,103108.0,South Omo,both,identical +136514,36.75,4.75,ETH,1298.0,Snnp,124.0,Ethiopia,103108.0,South Omo,36.75,4.75,ETH,1298.0,Snnp,124.0,Ethiopia,103108.0,South Omo,both,identical +136515,37.25,4.75,ETH,1296.0,Oromia,124.0,Ethiopia,103074.0,Borena,37.25,4.75,ETH,1296.0,Oromia,124.0,Ethiopia,103074.0,Borena,both,identical +136516,37.75,4.75,ETH,1296.0,Oromia,124.0,Ethiopia,103074.0,Borena,37.75,4.75,ETH,1296.0,Oromia,124.0,Ethiopia,103074.0,Borena,both,identical +136517,38.25,4.75,ETH,1296.0,Oromia,124.0,Ethiopia,103074.0,Borena,38.25,4.75,ETH,1296.0,Oromia,124.0,Ethiopia,103074.0,Borena,both,identical +136518,38.75,4.75,ETH,1296.0,Oromia,124.0,Ethiopia,103074.0,Borena,38.75,4.75,ETH,1296.0,Oromia,124.0,Ethiopia,103074.0,Borena,both,identical +136519,39.25,4.75,ETH,1296.0,Oromia,124.0,Ethiopia,103074.0,Borena,39.25,4.75,ETH,1296.0,Oromia,124.0,Ethiopia,103074.0,Borena,both,identical +136520,39.75,4.75,ETH,1299.0,Somali,124.0,Ethiopia,103081.0,Guji,39.75,4.75,ETH,1296.0,Oromia,124.0,Ethiopia,103081.0,Guji,both,admin_reallocation +136521,40.25,4.75,ETH,1299.0,Somali,124.0,Ethiopia,103112.0,Daawa,40.25,4.75,ETH,1299.0,Somali,124.0,Ethiopia,103112.0,Daawa,both,identical +136522,40.75,4.75,ETH,1299.0,Somali,124.0,Ethiopia,103118.0,Liban,40.75,4.75,ETH,1299.0,Somali,124.0,Ethiopia,103118.0,Liban,both,identical +136523,41.25,4.75,ETH,1299.0,Somali,124.0,Ethiopia,103118.0,Liban,41.25,4.75,ETH,1299.0,Somali,124.0,Ethiopia,103118.0,Liban,both,identical +136524,41.75,4.75,ETH,1299.0,Somali,124.0,Ethiopia,103111.0,Afder,41.75,4.75,ETH,1299.0,Somali,124.0,Ethiopia,103111.0,Afder,both,identical +136525,42.25,4.75,ETH,1299.0,Somali,124.0,Ethiopia,103111.0,Afder,42.25,4.75,ETH,1299.0,Somali,124.0,Ethiopia,103111.0,Afder,both,identical +136526,42.75,4.75,ETH,1299.0,Somali,124.0,Ethiopia,103111.0,Afder,42.75,4.75,ETH,1299.0,Somali,124.0,Ethiopia,103111.0,Afder,both,identical +136527,43.25,4.75,ETH,1299.0,Somali,124.0,Ethiopia,103111.0,Afder,43.25,4.75,ETH,1299.0,Somali,124.0,Ethiopia,103111.0,Afder,both,identical +136528,43.75,4.75,SOM,1590.0,Bakool,158.0,Somalia,105539.0,Ceel Barde,43.75,4.75,SOM,1590.0,Bakool,158.0,Somalia,105539.0,Ceel Barde,both,identical +136529,44.25,4.75,SOM,1590.0,Bakool,158.0,Somalia,105539.0,Ceel Barde,44.25,4.75,SOM,1590.0,Bakool,158.0,Somalia,105539.0,Ceel Barde,both,identical +136530,44.75,4.75,SOM,1596.0,Hiraan,158.0,Somalia,105566.0,Belet Weyne,44.75,4.75,SOM,1596.0,Hiraan,158.0,Somalia,105566.0,Belet Weyne,both,identical +136531,45.25,4.75,SOM,1596.0,Hiraan,158.0,Somalia,105566.0,Belet Weyne,45.25,4.75,SOM,1596.0,Hiraan,158.0,Somalia,105566.0,Belet Weyne,both,identical +136532,45.75,4.75,SOM,1596.0,Hiraan,158.0,Somalia,105566.0,Belet Weyne,45.75,4.75,SOM,1596.0,Hiraan,158.0,Somalia,105566.0,Belet Weyne,both,identical +136533,46.25,4.75,SOM,1594.0,Galgaduud,158.0,Somalia,105557.0,Ceel Buur,46.25,4.75,SOM,1594.0,Galgaduud,158.0,Somalia,105557.0,Ceel Buur,both,identical +136534,46.75,4.75,SOM,1594.0,Galgaduud,158.0,Somalia,105557.0,Ceel Buur,46.75,4.75,SOM,1594.0,Galgaduud,158.0,Somalia,105557.0,Ceel Buur,both,identical +136535,47.25,4.75,SOM,1594.0,Galgaduud,158.0,Somalia,105557.0,Ceel Buur,47.25,4.75,SOM,1594.0,Galgaduud,158.0,Somalia,105557.0,Ceel Buur,both,identical +136536,47.75,4.75,SOM,1601.0,Mudug,158.0,Somalia,105591.0,Xarardheere,47.75,4.75,SOM,1601.0,Mudug,158.0,Somalia,105591.0,Xarardheere,both,identical +136537,48.25,4.75,SOM,1601.0,Mudug,158.0,Somalia,105591.0,Xarardheere,48.25,4.75,SOM,1601.0,Mudug,158.0,Somalia,105591.0,Xarardheere,both,identical +137141,-9.75,5.25,LBR,1423.0,Rivercess,139.0,Liberia,104013.0,Sam Gbalor,-9.75,5.25,LBR,1423.0,Rivercess,139.0,Liberia,104013.0,Sam Gbalor,both,identical +137142,-9.25,5.25,LBR,1424.0,Sinoe,139.0,Liberia,104029.0,Sanquin Dist #3,-9.25,5.25,LBR,1424.0,Sinoe,139.0,Liberia,104029.0,Sanquin Dist #3,both,identical +137143,-8.75,5.25,LBR,1424.0,Sinoe,139.0,Liberia,104023.0,Kpayan,-8.75,5.25,LBR,1424.0,Sinoe,139.0,Liberia,104023.0,Kpayan,both,identical +137144,-8.25,5.25,LBR,1424.0,Sinoe,139.0,Liberia,104021.0,Jeadepo,-8.25,5.25,LBR,1424.0,Sinoe,139.0,Liberia,104021.0,Jeadepo,both,identical +137145,-7.75,5.25,LBR,1422.0,River Gee,139.0,Liberia,104004.0,Potupo,-7.75,5.25,LBR,1422.0,River Gee,139.0,Liberia,104004.0,Potupo,both,identical +137146,-7.25,5.25,CIV,1199.0,Bas-Sassandra,117.0,Côte D'Ivoire,102261.0,San-Pédro,-7.25,5.25,CIV,1199.0,Bas-Sassandra,117.0,Côte D'Ivoire,102261.0,San-Pédro,both,identical +137147,-6.75,5.25,CIV,1199.0,Bas-Sassandra,117.0,Côte D'Ivoire,102261.0,San-Pédro,-6.75,5.25,CIV,1199.0,Bas-Sassandra,117.0,Côte D'Ivoire,102261.0,San-Pédro,both,identical +137148,-6.25,5.25,CIV,1199.0,Bas-Sassandra,117.0,Côte D'Ivoire,102259.0,Gbôklé,-6.25,5.25,CIV,1199.0,Bas-Sassandra,117.0,Côte D'Ivoire,102259.0,Gbôklé,both,identical +137149,-5.75,5.25,CIV,1199.0,Bas-Sassandra,117.0,Côte D'Ivoire,102259.0,Gbôklé,-5.75,5.25,CIV,1199.0,Bas-Sassandra,117.0,Côte D'Ivoire,102259.0,Gbôklé,both,identical +137150,-5.25,5.25,CIV,1202.0,Gôh-Djiboua,117.0,Côte D'Ivoire,102267.0,Lôh-Djiboua,-5.25,5.25,CIV,1202.0,Gôh-Djiboua,117.0,Côte D'Ivoire,102267.0,Lôh-Djiboua,both,identical +137151,-4.75,5.25,CIV,1204.0,Lagunes,117.0,Côte D'Ivoire,102273.0,Grands Ponts,-4.75,5.25,CIV,1204.0,Lagunes,117.0,Côte D'Ivoire,102273.0,Grands Ponts,both,identical +137152,-4.25,5.25,CIV,1198.0,Abidjan,117.0,Côte D'Ivoire,102258.0,Autonomous District Of Abidjan,-4.25,5.25,CIV,1198.0,Abidjan,117.0,Côte D'Ivoire,102258.0,Autonomous District Of Abidjan,both,identical +137153,-3.75,5.25,CIV,1200.0,Comoé,117.0,Côte D'Ivoire,102263.0,Sud-Comoé,-3.75,5.25,CIV,1200.0,Comoé,117.0,Côte D'Ivoire,102263.0,Sud-Comoé,both,identical +137154,-3.25,5.25,CIV,1200.0,Comoé,117.0,Côte D'Ivoire,102263.0,Sud-Comoé,-3.25,5.25,CIV,1200.0,Comoé,117.0,Côte D'Ivoire,102263.0,Sud-Comoé,both,identical +137155,-2.75,5.25,GHA,1330.0,Western,129.0,Ghana,103434.0,Jomoro,-2.75,5.25,GHA,1330.0,Western,129.0,Ghana,103434.0,Jomoro,both,identical +137156,-2.25,5.25,GHA,1330.0,Western,129.0,Ghana,103437.0,Nzema East,-2.25,5.25,GHA,1330.0,Western,129.0,Ghana,103437.0,Nzema East,both,identical +137157,-1.75,5.25,GHA,1330.0,Western,129.0,Ghana,103449.0,Wassa East,-1.75,5.25,GHA,1330.0,Western,129.0,Ghana,103449.0,Wassa East,both,identical +137158,-1.25,5.25,GHA,1323.0,Central,129.0,Ghana,103297.0,Assin South,-1.25,5.25,GHA,1323.0,Central,129.0,Ghana,103297.0,Assin South,both,identical +137159,-0.75,5.25,GHA,1323.0,Central,129.0,Ghana,103304.0,Gomoa West,-0.75,5.25,GHA,1323.0,Central,129.0,Ghana,103304.0,Gomoa West,both,identical +137160,-0.25,5.25,GHA,1323.0,Central,129.0,Ghana,103303.0,Gomoa East,-0.25,5.25,GHA,1323.0,Central,129.0,Ghana,103303.0,Gomoa East,both,identical +137171,5.25,5.25,NGA,1526.0,Delta,151.0,Nigeria,104820.0,Burutu,5.25,5.25,NGA,1526.0,Delta,151.0,Nigeria,104820.0,Burutu,both,identical +137172,5.75,5.25,NGA,1526.0,Delta,151.0,Nigeria,104820.0,Burutu,5.75,5.25,NGA,1526.0,Delta,151.0,Nigeria,104820.0,Burutu,both,identical +137173,6.25,5.25,NGA,1526.0,Delta,151.0,Nigeria,104826.0,Isoko South,6.25,5.25,NGA,1526.0,Delta,151.0,Nigeria,104826.0,Isoko South,both,identical +137174,6.75,5.25,NGA,1549.0,Rivers,151.0,Nigeria,105327.0,Ogba/Egbema/Ndoni,6.75,5.25,NGA,1549.0,Rivers,151.0,Nigeria,105327.0,Ogba/Egbema/Ndoni,both,identical +137175,7.25,5.25,NGA,1517.0,Abia,151.0,Nigeria,105322.0,Etche,7.25,5.25,NGA,1549.0,Rivers,151.0,Nigeria,105322.0,Etche,both,admin_reallocation +137176,7.75,5.25,NGA,1519.0,Akwa Lbom,151.0,Nigeria,104683.0,Ini,7.75,5.25,NGA,1519.0,Akwa Lbom,151.0,Nigeria,104683.0,Ini,both,identical +137177,8.25,5.25,NGA,1525.0,Cross River,151.0,Nigeria,104800.0,Akamkpa,8.25,5.25,NGA,1525.0,Cross River,151.0,Nigeria,104800.0,Akamkpa,both,identical +137178,8.75,5.25,NGA,1525.0,Cross River,151.0,Nigeria,104800.0,Akamkpa,8.75,5.25,NGA,1525.0,Cross River,151.0,Nigeria,104800.0,Akamkpa,both,identical +137179,9.25,5.25,CMR,1151.0,Sud-Ouest,112.0,Cameroon,102064.0,Ndian,9.25,5.25,CMR,1151.0,Sud-Ouest,112.0,Cameroon,102064.0,Ndian,both,identical +137180,9.75,5.25,CMR,1151.0,Sud-Ouest,112.0,Cameroon,102060.0,Koupé-Manenguba,9.75,5.25,CMR,1151.0,Sud-Ouest,112.0,Cameroon,102060.0,Koupé-Manenguba,both,identical +137181,10.25,5.25,CMR,1149.0,Ouest,112.0,Cameroon,102048.0,Haut-Nkam,10.25,5.25,CMR,1149.0,Ouest,112.0,Cameroon,102048.0,Haut-Nkam,both,identical +137182,10.75,5.25,CMR,1149.0,Ouest,112.0,Cameroon,102054.0,Noun,10.75,5.25,CMR,1149.0,Ouest,112.0,Cameroon,102054.0,Noun,both,identical +137183,11.25,5.25,CMR,1143.0,Centre,112.0,Cameroon,102015.0,Mbam-Et-Kim,11.25,5.25,CMR,1143.0,Centre,112.0,Cameroon,102015.0,Mbam-Et-Kim,both,identical +137184,11.75,5.25,CMR,1143.0,Centre,112.0,Cameroon,102015.0,Mbam-Et-Kim,11.75,5.25,CMR,1143.0,Centre,112.0,Cameroon,102015.0,Mbam-Et-Kim,both,identical +137185,12.25,5.25,CMR,1143.0,Centre,112.0,Cameroon,102015.0,Mbam-Et-Kim,12.25,5.25,CMR,1143.0,Centre,112.0,Cameroon,102015.0,Mbam-Et-Kim,both,identical +137186,12.75,5.25,CMR,1143.0,Centre,112.0,Cameroon,102015.0,Mbam-Et-Kim,12.75,5.25,CMR,1143.0,Centre,112.0,Cameroon,102015.0,Mbam-Et-Kim,both,identical +137187,13.25,5.25,CMR,1144.0,Est,112.0,Cameroon,102025.0,Lom-Et-Djerem,13.25,5.25,CMR,1144.0,Est,112.0,Cameroon,102025.0,Lom-Et-Djerem,both,identical +137188,13.75,5.25,CMR,1144.0,Est,112.0,Cameroon,102025.0,Lom-Et-Djerem,13.75,5.25,CMR,1144.0,Est,112.0,Cameroon,102025.0,Lom-Et-Djerem,both,identical +137189,14.25,5.25,CMR,1144.0,Est,112.0,Cameroon,102025.0,Lom-Et-Djerem,14.25,5.25,CMR,1144.0,Est,112.0,Cameroon,102025.0,Lom-Et-Djerem,both,identical +137190,14.75,5.25,CAF,1153.0,Equateur,113.0,Central African Republic,102067.0,Nana-Mambéré,14.75,5.25,CAF,1153.0,Equateur,113.0,Central African Republic,102067.0,Nana-Mambéré,both,identical +137191,15.25,5.25,CAF,1153.0,Equateur,113.0,Central African Republic,102067.0,Nana-Mambéré,15.25,5.25,CAF,1153.0,Equateur,113.0,Central African Republic,102067.0,Nana-Mambéré,both,identical +137192,15.75,5.25,CAF,1153.0,Equateur,113.0,Central African Republic,102067.0,Nana-Mambéré,15.75,5.25,CAF,1153.0,Equateur,113.0,Central African Republic,102067.0,Nana-Mambéré,both,identical +137193,16.25,5.25,CAF,1153.0,Equateur,113.0,Central African Republic,102067.0,Nana-Mambéré,16.25,5.25,CAF,1153.0,Equateur,113.0,Central African Republic,102067.0,Nana-Mambéré,both,identical +137194,16.75,5.25,CAF,1153.0,Equateur,113.0,Central African Republic,102066.0,Mambéré-Kadéï,16.75,5.25,CAF,1153.0,Equateur,113.0,Central African Republic,102066.0,Mambéré-Kadéï,both,identical +137195,17.25,5.25,CAF,1157.0,Plateaux,113.0,Central African Republic,102079.0,Ombella-M'Poko,17.25,5.25,CAF,1157.0,Plateaux,113.0,Central African Republic,102079.0,Ombella-M'Poko,both,identical +137196,17.75,5.25,CAF,1157.0,Plateaux,113.0,Central African Republic,102079.0,Ombella-M'Poko,17.75,5.25,CAF,1157.0,Plateaux,113.0,Central African Republic,102079.0,Ombella-M'Poko,both,identical +137197,18.25,5.25,CAF,1157.0,Plateaux,113.0,Central African Republic,102079.0,Ombella-M'Poko,18.25,5.25,CAF,1157.0,Plateaux,113.0,Central African Republic,102079.0,Ombella-M'Poko,both,identical +137198,18.75,5.25,CAF,1157.0,Plateaux,113.0,Central African Republic,102079.0,Ombella-M'Poko,18.75,5.25,CAF,1157.0,Plateaux,113.0,Central African Republic,102079.0,Ombella-M'Poko,both,identical +137199,19.25,5.25,CAF,1156.0,Kagas,113.0,Central African Republic,102075.0,Kémo,19.25,5.25,CAF,1156.0,Kagas,113.0,Central African Republic,102075.0,Kémo,both,identical +137200,19.75,5.25,CAF,1156.0,Kagas,113.0,Central African Republic,102075.0,Kémo,19.75,5.25,CAF,1156.0,Kagas,113.0,Central African Republic,102075.0,Kémo,both,identical +137201,20.25,5.25,CAF,1156.0,Kagas,113.0,Central African Republic,102077.0,Ouaka,20.25,5.25,CAF,1156.0,Kagas,113.0,Central African Republic,102077.0,Ouaka,both,identical +137202,20.75,5.25,CAF,1156.0,Kagas,113.0,Central African Republic,102077.0,Ouaka,20.75,5.25,CAF,1156.0,Kagas,113.0,Central African Republic,102077.0,Ouaka,both,identical +137203,21.25,5.25,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102072.0,Basse-Kotto,21.25,5.25,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102072.0,Basse-Kotto,both,identical +137204,21.75,5.25,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102072.0,Basse-Kotto,21.75,5.25,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102072.0,Basse-Kotto,both,identical +137205,22.25,5.25,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102074.0,Mbomou,22.25,5.25,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102074.0,Mbomou,both,identical +137206,22.75,5.25,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102074.0,Mbomou,22.75,5.25,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102074.0,Mbomou,both,identical +137207,23.25,5.25,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102074.0,Mbomou,23.25,5.25,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102074.0,Mbomou,both,identical +137208,23.75,5.25,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102074.0,Mbomou,23.75,5.25,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102074.0,Mbomou,both,identical +137209,24.25,5.25,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102074.0,Mbomou,24.25,5.25,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102074.0,Mbomou,both,identical +137210,24.75,5.25,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102073.0,Haut-Mbomou,24.75,5.25,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102073.0,Haut-Mbomou,both,identical +137211,25.25,5.25,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102073.0,Haut-Mbomou,25.25,5.25,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102073.0,Haut-Mbomou,both,identical +137212,25.75,5.25,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102292.0,Ango,25.75,5.25,COD,1212.0,Bas-Uélé,118.0,Democratic Republic of the Congo,102292.0,Ango,both,identical +137213,26.25,5.25,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102073.0,Haut-Mbomou,26.25,5.25,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102073.0,Haut-Mbomou,both,identical +137214,26.75,5.25,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102073.0,Haut-Mbomou,26.75,5.25,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102073.0,Haut-Mbomou,both,identical +137215,27.25,5.25,SSD,1626.0,Western Equatoria,160.0,South Sudan,105729.0,Ezo,27.25,5.25,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102073.0,Haut-Mbomou,both,country_reassignment +137216,27.75,5.25,SSD,1626.0,Western Equatoria,160.0,South Sudan,105729.0,Ezo,27.75,5.25,SSD,1626.0,Western Equatoria,160.0,South Sudan,105729.0,Ezo,both,identical +137217,28.25,5.25,SSD,1626.0,Western Equatoria,160.0,South Sudan,105738.0,Yambio,28.25,5.25,SSD,1626.0,Western Equatoria,160.0,South Sudan,105738.0,Yambio,both,identical +137218,28.75,5.25,SSD,1626.0,Western Equatoria,160.0,South Sudan,105730.0,Ibba,28.75,5.25,SSD,1626.0,Western Equatoria,160.0,South Sudan,105730.0,Ibba,both,identical +137219,29.25,5.25,SSD,1626.0,Western Equatoria,160.0,South Sudan,105730.0,Ibba,29.25,5.25,SSD,1626.0,Western Equatoria,160.0,South Sudan,105730.0,Ibba,both,identical +137220,29.75,5.25,SSD,1626.0,Western Equatoria,160.0,South Sudan,105731.0,Maridi,29.75,5.25,SSD,1626.0,Western Equatoria,160.0,South Sudan,105731.0,Maridi,both,identical +137221,30.25,5.25,SSD,1626.0,Western Equatoria,160.0,South Sudan,105733.0,Mundri West,30.25,5.25,SSD,1626.0,Western Equatoria,160.0,South Sudan,105733.0,Mundri West,both,identical +137222,30.75,5.25,SSD,1626.0,Western Equatoria,160.0,South Sudan,105732.0,Mundri East,30.75,5.25,SSD,1626.0,Western Equatoria,160.0,South Sudan,105732.0,Mundri East,both,identical +137223,31.25,5.25,SSD,1617.0,Central Equatoria,160.0,South Sudan,105661.0,Juba,31.25,5.25,SSD,1617.0,Central Equatoria,160.0,South Sudan,105661.0,Juba,both,identical +137224,31.75,5.25,SSD,1617.0,Central Equatoria,160.0,South Sudan,105661.0,Juba,31.75,5.25,SSD,1617.0,Central Equatoria,160.0,South Sudan,105661.0,Juba,both,identical +137225,32.25,5.25,SSD,1618.0,Eastern Equatoria,160.0,South Sudan,105672.0,Lafon,32.25,5.25,SSD,1618.0,Eastern Equatoria,160.0,South Sudan,105672.0,Lafon,both,identical +137226,32.75,5.25,SSD,1618.0,Eastern Equatoria,160.0,South Sudan,105672.0,Lafon,32.75,5.25,SSD,1618.0,Eastern Equatoria,160.0,South Sudan,105672.0,Lafon,both,identical +137227,33.25,5.25,SSD,1618.0,Eastern Equatoria,160.0,South Sudan,105670.0,Kapoeta North,33.25,5.25,SSD,1618.0,Eastern Equatoria,160.0,South Sudan,105670.0,Kapoeta North,both,identical +137228,33.75,5.25,SSD,1618.0,Eastern Equatoria,160.0,South Sudan,105669.0,Kapoeta East,33.75,5.25,SSD,1618.0,Eastern Equatoria,160.0,South Sudan,105669.0,Kapoeta East,both,identical +137229,34.25,5.25,SSD,1618.0,Eastern Equatoria,160.0,South Sudan,105669.0,Kapoeta East,34.25,5.25,SSD,1618.0,Eastern Equatoria,160.0,South Sudan,105669.0,Kapoeta East,both,identical +137230,34.75,5.25,SSD,1618.0,Eastern Equatoria,160.0,South Sudan,105669.0,Kapoeta East,34.75,5.25,SSD,1618.0,Eastern Equatoria,160.0,South Sudan,105669.0,Kapoeta East,both,identical +137231,35.25,5.25,SSD,1618.0,Eastern Equatoria,160.0,South Sudan,105669.0,Kapoeta East,35.25,5.25,SSD,1618.0,Eastern Equatoria,160.0,South Sudan,105669.0,Kapoeta East,both,identical +137232,35.75,5.25,ETH,1298.0,Snnp,124.0,Ethiopia,103108.0,South Omo,35.75,5.25,SSD,1618.0,Eastern Equatoria,160.0,South Sudan,105669.0,Kapoeta East,both,country_reassignment +137233,36.25,5.25,ETH,1298.0,Snnp,124.0,Ethiopia,103108.0,South Omo,36.25,5.25,ETH,1298.0,Snnp,124.0,Ethiopia,103108.0,South Omo,both,identical +137234,36.75,5.25,ETH,1298.0,Snnp,124.0,Ethiopia,103108.0,South Omo,36.75,5.25,ETH,1298.0,Snnp,124.0,Ethiopia,103108.0,South Omo,both,identical +137235,37.25,5.25,ETH,1298.0,Snnp,124.0,Ethiopia,103106.0,Konso,37.25,5.25,ETH,1298.0,Snnp,124.0,Ethiopia,103106.0,Konso,both,identical +137236,37.75,5.25,ETH,1296.0,Oromia,124.0,Ethiopia,103074.0,Borena,37.75,5.25,ETH,1296.0,Oromia,124.0,Ethiopia,103074.0,Borena,both,identical +137237,38.25,5.25,ETH,1296.0,Oromia,124.0,Ethiopia,103074.0,Borena,38.25,5.25,ETH,1296.0,Oromia,124.0,Ethiopia,103074.0,Borena,both,identical +137238,38.75,5.25,ETH,1296.0,Oromia,124.0,Ethiopia,103089.0,West Guji,38.75,5.25,ETH,1296.0,Oromia,124.0,Ethiopia,103089.0,West Guji,both,identical +137239,39.25,5.25,ETH,1296.0,Oromia,124.0,Ethiopia,103081.0,Guji,39.25,5.25,ETH,1296.0,Oromia,124.0,Ethiopia,103081.0,Guji,both,identical +137240,39.75,5.25,ETH,1296.0,Oromia,124.0,Ethiopia,103081.0,Guji,39.75,5.25,ETH,1296.0,Oromia,124.0,Ethiopia,103081.0,Guji,both,identical +137241,40.25,5.25,ETH,1299.0,Somali,124.0,Ethiopia,103118.0,Liban,40.25,5.25,ETH,1299.0,Somali,124.0,Ethiopia,103118.0,Liban,both,identical +137242,40.75,5.25,ETH,1299.0,Somali,124.0,Ethiopia,103118.0,Liban,40.75,5.25,ETH,1299.0,Somali,124.0,Ethiopia,103118.0,Liban,both,identical +137243,41.25,5.25,ETH,1299.0,Somali,124.0,Ethiopia,103118.0,Liban,41.25,5.25,ETH,1299.0,Somali,124.0,Ethiopia,103118.0,Liban,both,identical +137244,41.75,5.25,ETH,1299.0,Somali,124.0,Ethiopia,103111.0,Afder,41.75,5.25,ETH,1299.0,Somali,124.0,Ethiopia,103111.0,Afder,both,identical +137245,42.25,5.25,ETH,1299.0,Somali,124.0,Ethiopia,103111.0,Afder,42.25,5.25,ETH,1299.0,Somali,124.0,Ethiopia,103111.0,Afder,both,identical +137246,42.75,5.25,ETH,1299.0,Somali,124.0,Ethiopia,103111.0,Afder,42.75,5.25,ETH,1299.0,Somali,124.0,Ethiopia,103111.0,Afder,both,identical +137247,43.25,5.25,ETH,1299.0,Somali,124.0,Ethiopia,103111.0,Afder,43.25,5.25,ETH,1299.0,Somali,124.0,Ethiopia,103111.0,Afder,both,identical +137248,43.75,5.25,ETH,1299.0,Somali,124.0,Ethiopia,103120.0,Shabelle,43.75,5.25,ETH,1299.0,Somali,124.0,Ethiopia,103120.0,Shabelle,both,identical +137249,44.25,5.25,ETH,1299.0,Somali,124.0,Ethiopia,103120.0,Shabelle,44.25,5.25,ETH,1299.0,Somali,124.0,Ethiopia,103120.0,Shabelle,both,identical +137250,44.75,5.25,ETH,1299.0,Somali,124.0,Ethiopia,103120.0,Shabelle,44.75,5.25,ETH,1299.0,Somali,124.0,Ethiopia,103120.0,Shabelle,both,identical +137251,45.25,5.25,ETH,1299.0,Somali,124.0,Ethiopia,103120.0,Shabelle,45.25,5.25,ETH,1299.0,Somali,124.0,Ethiopia,103120.0,Shabelle,both,identical +137252,45.75,5.25,SOM,1594.0,Galgaduud,158.0,Somalia,105555.0,Cabudwaaq,45.75,5.25,SOM,1594.0,Galgaduud,158.0,Somalia,105555.0,Cabudwaaq,both,identical +137253,46.25,5.25,SOM,1594.0,Galgaduud,158.0,Somalia,105559.0,Dhuusamarreeb,46.25,5.25,SOM,1594.0,Galgaduud,158.0,Somalia,105559.0,Dhuusamarreeb,both,identical +137254,46.75,5.25,SOM,1594.0,Galgaduud,158.0,Somalia,105559.0,Dhuusamarreeb,46.75,5.25,SOM,1594.0,Galgaduud,158.0,Somalia,105559.0,Dhuusamarreeb,both,identical +137255,47.25,5.25,SOM,1594.0,Galgaduud,158.0,Somalia,105559.0,Dhuusamarreeb,47.25,5.25,SOM,1594.0,Galgaduud,158.0,Somalia,105559.0,Dhuusamarreeb,both,identical +137256,47.75,5.25,SOM,1601.0,Mudug,158.0,Somalia,105589.0,Hobyo,47.75,5.25,SOM,1601.0,Mudug,158.0,Somalia,105589.0,Hobyo,both,identical +137257,48.25,5.25,SOM,1601.0,Mudug,158.0,Somalia,105589.0,Hobyo,48.25,5.25,SOM,1601.0,Mudug,158.0,Somalia,105589.0,Hobyo,both,identical +137258,48.75,5.25,SOM,1601.0,Mudug,158.0,Somalia,105589.0,Hobyo,48.75,5.25,SOM,1601.0,Mudug,158.0,Somalia,105589.0,Hobyo,both,identical +137860,-10.25,5.75,LBR,1413.0,Grand Bassa,139.0,Liberia,103923.0,Neekreen,-10.25,5.75,LBR,1413.0,Grand Bassa,139.0,Liberia,103923.0,Neekreen,both,identical +137861,-9.75,5.75,LBR,1413.0,Grand Bassa,139.0,Liberia,103922.0,District #4,-9.75,5.75,LBR,1413.0,Grand Bassa,139.0,Liberia,103922.0,District #4,both,identical +137862,-9.25,5.75,LBR,1423.0,Rivercess,139.0,Liberia,104008.0,Central Rivercess,-9.25,5.75,LBR,1423.0,Rivercess,139.0,Liberia,104008.0,Central Rivercess,both,identical +137863,-8.75,5.75,LBR,1424.0,Sinoe,139.0,Liberia,103934.0,Gboe-Ploe,-8.75,5.75,LBR,1415.0,Grand Gedeh,139.0,Liberia,103934.0,Gboe-Ploe,both,admin_reallocation +137864,-8.25,5.75,LBR,1415.0,Grand Gedeh,139.0,Liberia,103937.0,Putu,-8.25,5.75,LBR,1415.0,Grand Gedeh,139.0,Liberia,103937.0,Putu,both,identical +137865,-7.75,5.75,LBR,1415.0,Grand Gedeh,139.0,Liberia,103936.0,Konobo,-7.75,5.75,LBR,1415.0,Grand Gedeh,139.0,Liberia,103936.0,Konobo,both,identical +137866,-7.25,5.75,CIV,1205.0,Montagnes,117.0,Côte D'Ivoire,102275.0,Cavally,-7.25,5.75,CIV,1205.0,Montagnes,117.0,Côte D'Ivoire,102275.0,Cavally,both,identical +137867,-6.75,5.75,CIV,1199.0,Bas-Sassandra,117.0,Côte D'Ivoire,102260.0,Nawa,-6.75,5.75,CIV,1199.0,Bas-Sassandra,117.0,Côte D'Ivoire,102260.0,Nawa,both,identical +137868,-6.25,5.75,CIV,1199.0,Bas-Sassandra,117.0,Côte D'Ivoire,102260.0,Nawa,-6.25,5.75,CIV,1199.0,Bas-Sassandra,117.0,Côte D'Ivoire,102260.0,Nawa,both,identical +137869,-5.75,5.75,CIV,1202.0,Gôh-Djiboua,117.0,Côte D'Ivoire,102267.0,Lôh-Djiboua,-5.75,5.75,CIV,1202.0,Gôh-Djiboua,117.0,Côte D'Ivoire,102267.0,Lôh-Djiboua,both,identical +137870,-5.25,5.75,CIV,1202.0,Gôh-Djiboua,117.0,Côte D'Ivoire,102267.0,Lôh-Djiboua,-5.25,5.75,CIV,1202.0,Gôh-Djiboua,117.0,Côte D'Ivoire,102267.0,Lôh-Djiboua,both,identical +137871,-4.75,5.75,CIV,1204.0,Lagunes,117.0,Côte D'Ivoire,102272.0,Agnéby - Tiassa,-4.75,5.75,CIV,1204.0,Lagunes,117.0,Côte D'Ivoire,102272.0,Agnéby - Tiassa,both,identical +137872,-4.25,5.75,CIV,1204.0,Lagunes,117.0,Côte D'Ivoire,102272.0,Agnéby - Tiassa,-4.25,5.75,CIV,1204.0,Lagunes,117.0,Côte D'Ivoire,102272.0,Agnéby - Tiassa,both,identical +137873,-3.75,5.75,CIV,1204.0,Lagunes,117.0,Côte D'Ivoire,102274.0,Mé,-3.75,5.75,CIV,1204.0,Lagunes,117.0,Côte D'Ivoire,102274.0,Mé,both,identical +137874,-3.25,5.75,CIV,1200.0,Comoé,117.0,Côte D'Ivoire,102263.0,Sud-Comoé,-3.25,5.75,CIV,1200.0,Comoé,117.0,Côte D'Ivoire,102263.0,Sud-Comoé,both,identical +137875,-2.75,5.75,GHA,1330.0,Western,129.0,Ghana,103429.0,Aowin,-2.75,5.75,GHA,1330.0,Western,129.0,Ghana,103429.0,Aowin,both,identical +137876,-2.25,5.75,GHA,1330.0,Western,129.0,Ghana,103446.0,Wassa Amenfi Central,-2.25,5.75,GHA,1330.0,Western,129.0,Ghana,103446.0,Wassa Amenfi Central,both,identical +137877,-1.75,5.75,GHA,1323.0,Central,129.0,Ghana,103307.0,Twifo Ati-Morkwa,-1.75,5.75,GHA,1323.0,Central,129.0,Ghana,103307.0,Twifo Ati-Morkwa,both,identical +137878,-1.25,5.75,GHA,1323.0,Central,129.0,Ghana,103296.0,Assin North,-1.25,5.75,GHA,1323.0,Central,129.0,Ghana,103296.0,Assin North,both,identical +137879,-0.75,5.75,GHA,1324.0,Eastern,129.0,Ghana,103317.0,Birim Municipal,-0.75,5.75,GHA,1324.0,Eastern,129.0,Ghana,103317.0,Birim Municipal,both,identical +137880,-0.25,5.75,GHA,1325.0,Greater Accra,129.0,Ghana,103344.0,Ga South,-0.25,5.75,GHA,1325.0,Greater Accra,129.0,Ghana,103344.0,Ga South,both,identical +137881,0.25,5.75,GHA,1325.0,Greater Accra,129.0,Ghana,103350.0,Ningo Prampram,0.25,5.75,GHA,1325.0,Greater Accra,129.0,Ghana,103350.0,Ningo Prampram,both,identical +137882,0.75,5.75,GHA,1329.0,Volta,129.0,Ghana,103415.0,Keta Municipal,0.75,5.75,GHA,1329.0,Volta,129.0,Ghana,103415.0,Keta Municipal,both,identical +137883,1.25,5.75,GHA,1329.0,Volta,129.0,Ghana,103415.0,Keta Municipal,1.25,5.75,GHA,1329.0,Volta,129.0,Ghana,103415.0,Keta Municipal,both,identical +137890,4.75,5.75,NGA,1545.0,Ondo,151.0,Nigeria,105223.0,Ilaje,4.75,5.75,NGA,1545.0,Ondo,151.0,Nigeria,105223.0,Ilaje,both,identical +137891,5.25,5.75,NGA,1526.0,Delta,151.0,Nigeria,104839.0,Warri North,5.25,5.75,NGA,1526.0,Delta,151.0,Nigeria,104839.0,Warri North,both,identical +137892,5.75,5.75,NGA,1526.0,Delta,151.0,Nigeria,104840.0,Warri South,5.75,5.75,NGA,1526.0,Delta,151.0,Nigeria,104840.0,Warri South,both,identical +137893,6.25,5.75,NGA,1526.0,Delta,151.0,Nigeria,104828.0,Ndokwa West,6.25,5.75,NGA,1526.0,Delta,151.0,Nigeria,104828.0,Ndokwa West,both,identical +137894,6.75,5.75,NGA,1533.0,Imo,151.0,Nigeria,104827.0,Ndokwa East,6.75,5.75,NGA,1526.0,Delta,151.0,Nigeria,104827.0,Ndokwa East,both,admin_reallocation +137895,7.25,5.75,NGA,1533.0,Imo,151.0,Nigeria,104941.0,Okigwe,7.25,5.75,NGA,1533.0,Imo,151.0,Nigeria,104941.0,Okigwe,both,identical +137896,7.75,5.75,NGA,1517.0,Abia,151.0,Nigeria,104634.0,Bende,7.75,5.75,NGA,1517.0,Abia,151.0,Nigeria,104634.0,Bende,both,identical +137897,8.25,5.75,NGA,1525.0,Cross River,151.0,Nigeria,104800.0,Akamkpa,8.25,5.75,NGA,1525.0,Cross River,151.0,Nigeria,104800.0,Akamkpa,both,identical +137898,8.75,5.75,NGA,1525.0,Cross River,151.0,Nigeria,104800.0,Akamkpa,8.75,5.75,NGA,1525.0,Cross River,151.0,Nigeria,104800.0,Akamkpa,both,identical +137899,9.25,5.75,CMR,1151.0,Sud-Ouest,112.0,Cameroon,102062.0,Manyu,9.25,5.75,CMR,1151.0,Sud-Ouest,112.0,Cameroon,102062.0,Manyu,both,identical +137900,9.75,5.75,CMR,1151.0,Sud-Ouest,112.0,Cameroon,102062.0,Manyu,9.75,5.75,CMR,1151.0,Sud-Ouest,112.0,Cameroon,102062.0,Manyu,both,identical +137901,10.25,5.75,CMR,1149.0,Ouest,112.0,Cameroon,102047.0,Bamboutos,10.25,5.75,CMR,1149.0,Ouest,112.0,Cameroon,102047.0,Bamboutos,both,identical +137902,10.75,5.75,CMR,1149.0,Ouest,112.0,Cameroon,102054.0,Noun,10.75,5.75,CMR,1149.0,Ouest,112.0,Cameroon,102054.0,Noun,both,identical +137903,11.25,5.75,CMR,1143.0,Centre,112.0,Cameroon,102015.0,Mbam-Et-Kim,11.25,5.75,CMR,1143.0,Centre,112.0,Cameroon,102015.0,Mbam-Et-Kim,both,identical +137904,11.75,5.75,CMR,1143.0,Centre,112.0,Cameroon,102015.0,Mbam-Et-Kim,11.75,5.75,CMR,1143.0,Centre,112.0,Cameroon,102015.0,Mbam-Et-Kim,both,identical +137905,12.25,5.75,CMR,1143.0,Centre,112.0,Cameroon,102015.0,Mbam-Et-Kim,12.25,5.75,CMR,1143.0,Centre,112.0,Cameroon,102015.0,Mbam-Et-Kim,both,identical +137906,12.75,5.75,CMR,1143.0,Centre,112.0,Cameroon,102015.0,Mbam-Et-Kim,12.75,5.75,CMR,1143.0,Centre,112.0,Cameroon,102015.0,Mbam-Et-Kim,both,identical +137907,13.25,5.75,CMR,1144.0,Est,112.0,Cameroon,102025.0,Lom-Et-Djerem,13.25,5.75,CMR,1144.0,Est,112.0,Cameroon,102025.0,Lom-Et-Djerem,both,identical +137908,13.75,5.75,CMR,1144.0,Est,112.0,Cameroon,102025.0,Lom-Et-Djerem,13.75,5.75,CMR,1144.0,Est,112.0,Cameroon,102025.0,Lom-Et-Djerem,both,identical +137909,14.25,5.75,CMR,1144.0,Est,112.0,Cameroon,102025.0,Lom-Et-Djerem,14.25,5.75,CMR,1144.0,Est,112.0,Cameroon,102025.0,Lom-Et-Djerem,both,identical +137910,14.75,5.75,CAF,1153.0,Equateur,113.0,Central African Republic,102067.0,Nana-Mambéré,14.75,5.75,CAF,1153.0,Equateur,113.0,Central African Republic,102067.0,Nana-Mambéré,both,identical +137911,15.25,5.75,CAF,1153.0,Equateur,113.0,Central African Republic,102067.0,Nana-Mambéré,15.25,5.75,CAF,1153.0,Equateur,113.0,Central African Republic,102067.0,Nana-Mambéré,both,identical +137912,15.75,5.75,CAF,1153.0,Equateur,113.0,Central African Republic,102067.0,Nana-Mambéré,15.75,5.75,CAF,1153.0,Equateur,113.0,Central African Republic,102067.0,Nana-Mambéré,both,identical +137913,16.25,5.75,CAF,1153.0,Equateur,113.0,Central African Republic,102067.0,Nana-Mambéré,16.25,5.75,CAF,1153.0,Equateur,113.0,Central African Republic,102067.0,Nana-Mambéré,both,identical +137914,16.75,5.75,CAF,1158.0,Yadé,113.0,Central African Republic,102081.0,Ouham-Pendé,16.75,5.75,CAF,1158.0,Yadé,113.0,Central African Republic,102081.0,Ouham-Pendé,both,identical +137915,17.25,5.75,CAF,1158.0,Yadé,113.0,Central African Republic,102080.0,Ouham,17.25,5.75,CAF,1158.0,Yadé,113.0,Central African Republic,102080.0,Ouham,both,identical +137916,17.75,5.75,CAF,1157.0,Plateaux,113.0,Central African Republic,102079.0,Ombella-M'Poko,17.75,5.75,CAF,1157.0,Plateaux,113.0,Central African Republic,102079.0,Ombella-M'Poko,both,identical +137917,18.25,5.75,CAF,1158.0,Yadé,113.0,Central African Republic,102080.0,Ouham,18.25,5.75,CAF,1158.0,Yadé,113.0,Central African Republic,102080.0,Ouham,both,identical +137918,18.75,5.75,CAF,1156.0,Kagas,113.0,Central African Republic,102075.0,Kémo,18.75,5.75,CAF,1156.0,Kagas,113.0,Central African Republic,102075.0,Kémo,both,identical +137919,19.25,5.75,CAF,1156.0,Kagas,113.0,Central African Republic,102075.0,Kémo,19.25,5.75,CAF,1156.0,Kagas,113.0,Central African Republic,102075.0,Kémo,both,identical +137920,19.75,5.75,CAF,1156.0,Kagas,113.0,Central African Republic,102077.0,Ouaka,19.75,5.75,CAF,1156.0,Kagas,113.0,Central African Republic,102077.0,Ouaka,both,identical +137921,20.25,5.75,CAF,1156.0,Kagas,113.0,Central African Republic,102077.0,Ouaka,20.25,5.75,CAF,1156.0,Kagas,113.0,Central African Republic,102077.0,Ouaka,both,identical +137922,20.75,5.75,CAF,1156.0,Kagas,113.0,Central African Republic,102077.0,Ouaka,20.75,5.75,CAF,1156.0,Kagas,113.0,Central African Republic,102077.0,Ouaka,both,identical +137923,21.25,5.75,CAF,1156.0,Kagas,113.0,Central African Republic,102077.0,Ouaka,21.25,5.75,CAF,1156.0,Kagas,113.0,Central African Republic,102077.0,Ouaka,both,identical +137924,21.75,5.75,CAF,1156.0,Kagas,113.0,Central African Republic,102077.0,Ouaka,21.75,5.75,CAF,1156.0,Kagas,113.0,Central African Republic,102077.0,Ouaka,both,identical +137925,22.25,5.75,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102074.0,Mbomou,22.25,5.75,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102074.0,Mbomou,both,identical +137926,22.75,5.75,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102074.0,Mbomou,22.75,5.75,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102074.0,Mbomou,both,identical +137927,23.25,5.75,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102074.0,Mbomou,23.25,5.75,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102074.0,Mbomou,both,identical +137928,23.75,5.75,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102074.0,Mbomou,23.75,5.75,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102074.0,Mbomou,both,identical +137929,24.25,5.75,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102074.0,Mbomou,24.25,5.75,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102074.0,Mbomou,both,identical +137930,24.75,5.75,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102074.0,Mbomou,24.75,5.75,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102074.0,Mbomou,both,identical +137931,25.25,5.75,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102073.0,Haut-Mbomou,25.25,5.75,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102073.0,Haut-Mbomou,both,identical +137932,25.75,5.75,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102073.0,Haut-Mbomou,25.75,5.75,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102073.0,Haut-Mbomou,both,identical +137933,26.25,5.75,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102073.0,Haut-Mbomou,26.25,5.75,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102073.0,Haut-Mbomou,both,identical +137934,26.75,5.75,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102073.0,Haut-Mbomou,26.75,5.75,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102073.0,Haut-Mbomou,both,identical +137935,27.25,5.75,SSD,1626.0,Western Equatoria,160.0,South Sudan,105735.0,Nagero,27.25,5.75,SSD,1626.0,Western Equatoria,160.0,South Sudan,105735.0,Nagero,both,identical +137936,27.75,5.75,SSD,1626.0,Western Equatoria,160.0,South Sudan,105737.0,Tambura,27.75,5.75,SSD,1626.0,Western Equatoria,160.0,South Sudan,105737.0,Tambura,both,identical +137937,28.25,5.75,SSD,1626.0,Western Equatoria,160.0,South Sudan,105736.0,Nzara,28.25,5.75,SSD,1626.0,Western Equatoria,160.0,South Sudan,105736.0,Nzara,both,identical +137938,28.75,5.75,SSD,1626.0,Western Equatoria,160.0,South Sudan,105738.0,Yambio,28.75,5.75,SSD,1626.0,Western Equatoria,160.0,South Sudan,105738.0,Yambio,both,identical +137939,29.25,5.75,SSD,1620.0,Lakes,160.0,South Sudan,105691.0,Wulu,29.25,5.75,SSD,1620.0,Lakes,160.0,South Sudan,105691.0,Wulu,both,identical +137940,29.75,5.75,SSD,1626.0,Western Equatoria,160.0,South Sudan,105734.0,Mvolo,29.75,5.75,SSD,1626.0,Western Equatoria,160.0,South Sudan,105734.0,Mvolo,both,identical +137941,30.25,5.75,SSD,1626.0,Western Equatoria,160.0,South Sudan,105734.0,Mvolo,30.25,5.75,SSD,1626.0,Western Equatoria,160.0,South Sudan,105734.0,Mvolo,both,identical +137942,30.75,5.75,SSD,1617.0,Central Equatoria,160.0,South Sudan,105665.0,Terekeka,30.75,5.75,SSD,1617.0,Central Equatoria,160.0,South Sudan,105665.0,Terekeka,both,identical +137943,31.25,5.75,SSD,1617.0,Central Equatoria,160.0,South Sudan,105665.0,Terekeka,31.25,5.75,SSD,1617.0,Central Equatoria,160.0,South Sudan,105665.0,Terekeka,both,identical +137944,31.75,5.75,SSD,1617.0,Central Equatoria,160.0,South Sudan,105665.0,Terekeka,31.75,5.75,SSD,1617.0,Central Equatoria,160.0,South Sudan,105665.0,Terekeka,both,identical +137945,32.25,5.75,SSD,1618.0,Eastern Equatoria,160.0,South Sudan,105672.0,Lafon,32.25,5.75,SSD,1618.0,Eastern Equatoria,160.0,South Sudan,105672.0,Lafon,both,identical +137946,32.75,5.75,SSD,1618.0,Eastern Equatoria,160.0,South Sudan,105672.0,Lafon,32.75,5.75,SSD,1618.0,Eastern Equatoria,160.0,South Sudan,105672.0,Lafon,both,identical +137947,33.25,5.75,SSD,1618.0,Eastern Equatoria,160.0,South Sudan,105672.0,Lafon,33.25,5.75,SSD,1618.0,Eastern Equatoria,160.0,South Sudan,105672.0,Lafon,both,identical +137948,33.75,5.75,SSD,1618.0,Eastern Equatoria,160.0,South Sudan,105682.0,Pibor,33.75,5.75,SSD,1619.0,Jonglei,160.0,South Sudan,105682.0,Pibor,both,admin_reallocation +137949,34.25,5.75,SSD,1618.0,Eastern Equatoria,160.0,South Sudan,105669.0,Kapoeta East,34.25,5.75,SSD,1618.0,Eastern Equatoria,160.0,South Sudan,105669.0,Kapoeta East,both,identical +137950,34.75,5.75,SSD,1618.0,Eastern Equatoria,160.0,South Sudan,105669.0,Kapoeta East,34.75,5.75,SSD,1618.0,Eastern Equatoria,160.0,South Sudan,105669.0,Kapoeta East,both,identical +137951,35.25,5.75,ETH,1300.0,South West Ethiopia,124.0,Ethiopia,103126.0,Mirab Omo,35.25,5.75,ETH,1300.0,South West Ethiopia,124.0,Ethiopia,103126.0,Mirab Omo,both,identical +137952,35.75,5.75,ETH,1300.0,South West Ethiopia,124.0,Ethiopia,103126.0,Mirab Omo,35.75,5.75,ETH,1300.0,South West Ethiopia,124.0,Ethiopia,103126.0,Mirab Omo,both,identical +137953,36.25,5.75,ETH,1298.0,Snnp,124.0,Ethiopia,103108.0,South Omo,36.25,5.75,ETH,1298.0,Snnp,124.0,Ethiopia,103108.0,South Omo,both,identical +137954,36.75,5.75,ETH,1298.0,Snnp,124.0,Ethiopia,103108.0,South Omo,36.75,5.75,ETH,1298.0,Snnp,124.0,Ethiopia,103108.0,South Omo,both,identical +137955,37.25,5.75,ETH,1298.0,Snnp,124.0,Ethiopia,103099.0,Gamo,37.25,5.75,ETH,1298.0,Snnp,124.0,Ethiopia,103099.0,Gamo,both,identical +137956,37.75,5.75,ETH,1298.0,Snnp,124.0,Ethiopia,103095.0,Amaro,37.75,5.75,ETH,1298.0,Snnp,124.0,Ethiopia,103095.0,Amaro,both,identical +137957,38.25,5.75,ETH,1296.0,Oromia,124.0,Ethiopia,103089.0,West Guji,38.25,5.75,ETH,1296.0,Oromia,124.0,Ethiopia,103089.0,West Guji,both,identical +137958,38.75,5.75,ETH,1296.0,Oromia,124.0,Ethiopia,103081.0,Guji,38.75,5.75,ETH,1296.0,Oromia,124.0,Ethiopia,103081.0,Guji,both,identical +137959,39.25,5.75,ETH,1296.0,Oromia,124.0,Ethiopia,103081.0,Guji,39.25,5.75,ETH,1296.0,Oromia,124.0,Ethiopia,103081.0,Guji,both,identical +137960,39.75,5.75,ETH,1296.0,Oromia,124.0,Ethiopia,103073.0,Bale,39.75,5.75,ETH,1296.0,Oromia,124.0,Ethiopia,103073.0,Bale,both,identical +137961,40.25,5.75,ETH,1296.0,Oromia,124.0,Ethiopia,103073.0,Bale,40.25,5.75,ETH,1296.0,Oromia,124.0,Ethiopia,103073.0,Bale,both,identical +137962,40.75,5.75,ETH,1296.0,Oromia,124.0,Ethiopia,103073.0,Bale,40.75,5.75,ETH,1296.0,Oromia,124.0,Ethiopia,103073.0,Bale,both,identical +137963,41.25,5.75,ETH,1299.0,Somali,124.0,Ethiopia,103118.0,Liban,41.25,5.75,ETH,1299.0,Somali,124.0,Ethiopia,103118.0,Liban,both,identical +137964,41.75,5.75,ETH,1299.0,Somali,124.0,Ethiopia,103111.0,Afder,41.75,5.75,ETH,1299.0,Somali,124.0,Ethiopia,103111.0,Afder,both,identical +137965,42.25,5.75,ETH,1299.0,Somali,124.0,Ethiopia,103111.0,Afder,42.25,5.75,ETH,1299.0,Somali,124.0,Ethiopia,103111.0,Afder,both,identical +137966,42.75,5.75,ETH,1299.0,Somali,124.0,Ethiopia,103111.0,Afder,42.75,5.75,ETH,1299.0,Somali,124.0,Ethiopia,103111.0,Afder,both,identical +137967,43.25,5.75,ETH,1299.0,Somali,124.0,Ethiopia,103120.0,Shabelle,43.25,5.75,ETH,1299.0,Somali,124.0,Ethiopia,103120.0,Shabelle,both,identical +137968,43.75,5.75,ETH,1299.0,Somali,124.0,Ethiopia,103120.0,Shabelle,43.75,5.75,ETH,1299.0,Somali,124.0,Ethiopia,103120.0,Shabelle,both,identical +137969,44.25,5.75,ETH,1299.0,Somali,124.0,Ethiopia,103120.0,Shabelle,44.25,5.75,ETH,1299.0,Somali,124.0,Ethiopia,103120.0,Shabelle,both,identical +137970,44.75,5.75,ETH,1299.0,Somali,124.0,Ethiopia,103117.0,Korahe,44.75,5.75,ETH,1299.0,Somali,124.0,Ethiopia,103117.0,Korahe,both,identical +137971,45.25,5.75,ETH,1299.0,Somali,124.0,Ethiopia,103117.0,Korahe,45.25,5.75,ETH,1299.0,Somali,124.0,Ethiopia,103117.0,Korahe,both,identical +137972,45.75,5.75,SOM,1594.0,Galgaduud,158.0,Somalia,105555.0,Cabudwaaq,45.75,5.75,ETH,1299.0,Somali,124.0,Ethiopia,103117.0,Korahe,both,country_reassignment +137973,46.25,5.75,SOM,1594.0,Galgaduud,158.0,Somalia,105555.0,Cabudwaaq,46.25,5.75,SOM,1594.0,Galgaduud,158.0,Somalia,105555.0,Cabudwaaq,both,identical +137974,46.75,5.75,SOM,1594.0,Galgaduud,158.0,Somalia,105559.0,Dhuusamarreeb,46.75,5.75,SOM,1594.0,Galgaduud,158.0,Somalia,105559.0,Dhuusamarreeb,both,identical +137975,47.25,5.75,SOM,1594.0,Galgaduud,158.0,Somalia,105559.0,Dhuusamarreeb,47.25,5.75,SOM,1594.0,Galgaduud,158.0,Somalia,105559.0,Dhuusamarreeb,both,identical +137976,47.75,5.75,SOM,1601.0,Mudug,158.0,Somalia,105589.0,Hobyo,47.75,5.75,SOM,1601.0,Mudug,158.0,Somalia,105589.0,Hobyo,both,identical +137977,48.25,5.75,SOM,1601.0,Mudug,158.0,Somalia,105589.0,Hobyo,48.25,5.75,SOM,1601.0,Mudug,158.0,Somalia,105589.0,Hobyo,both,identical +137978,48.75,5.75,SOM,1601.0,Mudug,158.0,Somalia,105589.0,Hobyo,48.75,5.75,SOM,1601.0,Mudug,158.0,Somalia,105589.0,Hobyo,both,identical +138579,-10.75,6.25,LBR,1420.0,Montserrado,139.0,Liberia,103967.0,Mambah Kaba,-10.75,6.25,LBR,1418.0,Margibi,139.0,Liberia,103967.0,Mambah Kaba,both,admin_reallocation +138580,-10.25,6.25,LBR,1413.0,Grand Bassa,139.0,Liberia,103919.0,District #1,-10.25,6.25,LBR,1413.0,Grand Bassa,139.0,Liberia,103919.0,District #1,both,identical +138581,-9.75,6.25,LBR,1413.0,Grand Bassa,139.0,Liberia,103921.0,District #3,-9.75,6.25,LBR,1413.0,Grand Bassa,139.0,Liberia,103921.0,District #3,both,identical +138582,-9.25,6.25,LBR,1423.0,Rivercess,139.0,Liberia,104009.0,Doedain,-9.25,6.25,LBR,1423.0,Rivercess,139.0,Liberia,104009.0,Doedain,both,identical +138583,-8.75,6.25,LBR,1421.0,Nimba,139.0,Liberia,103985.0,Gbi & Doru,-8.75,6.25,LBR,1421.0,Nimba,139.0,Liberia,103985.0,Gbi & Doru,both,identical +138584,-8.25,6.25,LBR,1415.0,Grand Gedeh,139.0,Liberia,103932.0,Cavala,-8.25,6.25,CIV,1205.0,Montagnes,117.0,Côte D'Ivoire,102275.0,Cavally,both,country_reassignment +138585,-7.75,6.25,CIV,1205.0,Montagnes,117.0,Côte D'Ivoire,102275.0,Cavally,-7.75,6.25,CIV,1205.0,Montagnes,117.0,Côte D'Ivoire,102275.0,Cavally,both,identical +138586,-7.25,6.25,CIV,1205.0,Montagnes,117.0,Côte D'Ivoire,102275.0,Cavally,-7.25,6.25,CIV,1205.0,Montagnes,117.0,Côte D'Ivoire,102275.0,Cavally,both,identical +138587,-6.75,6.25,CIV,1199.0,Bas-Sassandra,117.0,Côte D'Ivoire,102260.0,Nawa,-6.75,6.25,CIV,1199.0,Bas-Sassandra,117.0,Côte D'Ivoire,102260.0,Nawa,both,identical +138588,-6.25,6.25,CIV,1202.0,Gôh-Djiboua,117.0,Côte D'Ivoire,102266.0,Gôh,-6.25,6.25,CIV,1202.0,Gôh-Djiboua,117.0,Côte D'Ivoire,102266.0,Gôh,both,identical +138589,-5.75,6.25,CIV,1202.0,Gôh-Djiboua,117.0,Côte D'Ivoire,102266.0,Gôh,-5.75,6.25,CIV,1202.0,Gôh-Djiboua,117.0,Côte D'Ivoire,102266.0,Gôh,both,identical +138590,-5.25,6.25,CIV,1202.0,Gôh-Djiboua,117.0,Côte D'Ivoire,102267.0,Lôh-Djiboua,-5.25,6.25,CIV,1202.0,Gôh-Djiboua,117.0,Côte D'Ivoire,102267.0,Lôh-Djiboua,both,identical +138591,-4.75,6.25,CIV,1204.0,Lagunes,117.0,Côte D'Ivoire,102272.0,Agnéby - Tiassa,-4.75,6.25,CIV,1204.0,Lagunes,117.0,Côte D'Ivoire,102272.0,Agnéby - Tiassa,both,identical +138592,-4.25,6.25,CIV,1204.0,Lagunes,117.0,Côte D'Ivoire,102272.0,Agnéby - Tiassa,-4.25,6.25,CIV,1204.0,Lagunes,117.0,Côte D'Ivoire,102272.0,Agnéby - Tiassa,both,identical +138593,-3.75,6.25,CIV,1204.0,Lagunes,117.0,Côte D'Ivoire,102274.0,Mé,-3.75,6.25,CIV,1204.0,Lagunes,117.0,Côte D'Ivoire,102274.0,Mé,both,identical +138594,-3.25,6.25,CIV,1200.0,Comoé,117.0,Côte D'Ivoire,102262.0,Indénié-Djuablin,-3.25,6.25,CIV,1200.0,Comoé,117.0,Côte D'Ivoire,102262.0,Indénié-Djuablin,both,identical +138595,-2.75,6.25,GHA,1330.0,Western,129.0,Ghana,103439.0,Sefwi Akontombra,-2.75,6.25,GHA,1330.0,Western,129.0,Ghana,103439.0,Sefwi Akontombra,both,identical +138596,-2.25,6.25,GHA,1330.0,Western,129.0,Ghana,103440.0,Sefwi Bibiani-Anhwiaso Bekwai,-2.25,6.25,GHA,1330.0,Western,129.0,Ghana,103440.0,Sefwi Bibiani-Anhwiaso Bekwai,both,identical +138597,-1.75,6.25,GHA,1321.0,Ashanti,129.0,Ghana,103240.0,Amansie Central,-1.75,6.25,GHA,1321.0,Ashanti,129.0,Ghana,103240.0,Amansie Central,both,identical +138598,-1.25,6.25,GHA,1321.0,Ashanti,129.0,Ghana,103244.0,Asante Akim South,-1.25,6.25,GHA,1321.0,Ashanti,129.0,Ghana,103244.0,Asante Akim South,both,identical +138599,-0.75,6.25,GHA,1324.0,Eastern,129.0,Ghana,103315.0,Atiwa,-0.75,6.25,GHA,1324.0,Eastern,129.0,Ghana,103315.0,Atiwa,both,identical +138600,-0.25,6.25,GHA,1324.0,Eastern,129.0,Ghana,103333.0,Upper Manya,-0.25,6.25,GHA,1324.0,Eastern,129.0,Ghana,103333.0,Upper Manya,both,identical +138601,0.25,6.25,GHA,1329.0,Volta,129.0,Ghana,103425.0,North Tongu,0.25,6.25,GHA,1329.0,Volta,129.0,Ghana,103425.0,North Tongu,both,identical +138602,0.75,6.25,GHA,1329.0,Volta,129.0,Ghana,103409.0,Central Tongu,0.75,6.25,GHA,1329.0,Volta,129.0,Ghana,103409.0,Central Tongu,both,identical +138603,1.25,6.25,TGO,1647.0,Maritime,162.0,Togo,105946.0,Zio,1.25,6.25,TGO,1647.0,Maritime,162.0,Togo,105946.0,Zio,both,identical +138604,1.75,6.25,TGO,1647.0,Maritime,162.0,Togo,105943.0,Lacs,1.75,6.25,TGO,1647.0,Maritime,162.0,Togo,105943.0,Lacs,both,identical +138605,2.25,6.25,BEN,1073.0,Atlantique,105.0,Benin,101732.0,Ouidah,2.25,6.25,BEN,1073.0,Atlantique,105.0,Benin,101732.0,Ouidah,both,identical +138606,2.75,6.25,NGA,1541.0,Lagos,151.0,Nigeria,105141.0,Badagry,2.75,6.25,NGA,1541.0,Lagos,151.0,Nigeria,105141.0,Badagry,both,identical +138607,3.25,6.25,NGA,1541.0,Lagos,151.0,Nigeria,105152.0,Ojo,3.25,6.25,NGA,1541.0,Lagos,151.0,Nigeria,105152.0,Ojo,both,identical +138608,3.75,6.25,NGA,1541.0,Lagos,151.0,Nigeria,105144.0,Ibeju/Lekki,3.75,6.25,NGA,1541.0,Lagos,151.0,Nigeria,105144.0,Ibeju/Lekki,both,identical +138609,4.25,6.25,NGA,1544.0,Ogun,151.0,Nigeria,105211.0,Ogun Waterside,4.25,6.25,NGA,1544.0,Ogun,151.0,Nigeria,105211.0,Ogun Waterside,both,identical +138610,4.75,6.25,NGA,1545.0,Ondo,151.0,Nigeria,105223.0,Ilaje,4.75,6.25,NGA,1545.0,Ondo,151.0,Nigeria,105223.0,Ilaje,both,identical +138611,5.25,6.25,NGA,1528.0,Edo,151.0,Nigeria,104869.0,Ovia South West,5.25,6.25,NGA,1528.0,Edo,151.0,Nigeria,104869.0,Ovia South West,both,identical +138612,5.75,6.25,NGA,1528.0,Edo,151.0,Nigeria,104872.0,Uhunmwonde,5.75,6.25,NGA,1528.0,Edo,151.0,Nigeria,104872.0,Uhunmwonde,both,identical +138613,6.25,6.25,NGA,1526.0,Delta,151.0,Nigeria,104867.0,Orhionmwon,6.25,6.25,NGA,1528.0,Edo,151.0,Nigeria,104867.0,Orhionmwon,both,admin_reallocation +138614,6.75,6.25,NGA,1520.0,Anambra,151.0,Nigeria,104830.0,Oshimili North,6.75,6.25,NGA,1526.0,Delta,151.0,Nigeria,104830.0,Oshimili North,both,admin_reallocation +138615,7.25,6.25,NGA,1530.0,Enugu,151.0,Nigeria,104894.0,Ezeagu,7.25,6.25,NGA,1530.0,Enugu,151.0,Nigeria,104894.0,Ezeagu,both,identical +138616,7.75,6.25,NGA,1527.0,Ebonyi,151.0,Nigeria,104899.0,Nkanu East,7.75,6.25,NGA,1530.0,Enugu,151.0,Nigeria,104899.0,Nkanu East,both,admin_reallocation +138617,8.25,6.25,NGA,1527.0,Ebonyi,151.0,Nigeria,104842.0,Abakaliki,8.25,6.25,NGA,1527.0,Ebonyi,151.0,Nigeria,104842.0,Abakaliki,both,identical +138618,8.75,6.25,NGA,1525.0,Cross River,151.0,Nigeria,104805.0,Boki,8.75,6.25,NGA,1525.0,Cross River,151.0,Nigeria,104805.0,Boki,both,identical +138619,9.25,6.25,NGA,1525.0,Cross River,151.0,Nigeria,104805.0,Boki,9.25,6.25,NGA,1525.0,Cross River,151.0,Nigeria,104805.0,Boki,both,identical +138620,9.75,6.25,CMR,1148.0,Nord-Ouest,112.0,Cameroon,102062.0,Manyu,9.75,6.25,CMR,1151.0,Sud-Ouest,112.0,Cameroon,102062.0,Manyu,both,admin_reallocation +138621,10.25,6.25,CMR,1148.0,Nord-Ouest,112.0,Cameroon,102040.0,Boyo,10.25,6.25,CMR,1148.0,Nord-Ouest,112.0,Cameroon,102040.0,Boyo,both,identical +138622,10.75,6.25,CMR,1148.0,Nord-Ouest,112.0,Cameroon,102041.0,Bui,10.75,6.25,CMR,1148.0,Nord-Ouest,112.0,Cameroon,102041.0,Bui,both,identical +138623,11.25,6.25,CMR,1142.0,Adamaoua,112.0,Cameroon,102009.0,Mayo-Banyo,11.25,6.25,CMR,1142.0,Adamaoua,112.0,Cameroon,102009.0,Mayo-Banyo,both,identical +138624,11.75,6.25,CMR,1142.0,Adamaoua,112.0,Cameroon,102009.0,Mayo-Banyo,11.75,6.25,CMR,1142.0,Adamaoua,112.0,Cameroon,102009.0,Mayo-Banyo,both,identical +138625,12.25,6.25,CMR,1142.0,Adamaoua,112.0,Cameroon,102007.0,Djerem,12.25,6.25,CMR,1142.0,Adamaoua,112.0,Cameroon,102007.0,Djerem,both,identical +138626,12.75,6.25,CMR,1142.0,Adamaoua,112.0,Cameroon,102007.0,Djerem,12.75,6.25,CMR,1142.0,Adamaoua,112.0,Cameroon,102007.0,Djerem,both,identical +138627,13.25,6.25,CMR,1142.0,Adamaoua,112.0,Cameroon,102007.0,Djerem,13.25,6.25,CMR,1142.0,Adamaoua,112.0,Cameroon,102007.0,Djerem,both,identical +138628,13.75,6.25,CMR,1142.0,Adamaoua,112.0,Cameroon,102010.0,Mbéré,13.75,6.25,CMR,1142.0,Adamaoua,112.0,Cameroon,102010.0,Mbéré,both,identical +138629,14.25,6.25,CMR,1142.0,Adamaoua,112.0,Cameroon,102010.0,Mbéré,14.25,6.25,CMR,1142.0,Adamaoua,112.0,Cameroon,102010.0,Mbéré,both,identical +138630,14.75,6.25,CAF,1153.0,Equateur,113.0,Central African Republic,102067.0,Nana-Mambéré,14.75,6.25,CAF,1153.0,Equateur,113.0,Central African Republic,102067.0,Nana-Mambéré,both,identical +138631,15.25,6.25,CAF,1153.0,Equateur,113.0,Central African Republic,102067.0,Nana-Mambéré,15.25,6.25,CAF,1153.0,Equateur,113.0,Central African Republic,102067.0,Nana-Mambéré,both,identical +138632,15.75,6.25,CAF,1158.0,Yadé,113.0,Central African Republic,102081.0,Ouham-Pendé,15.75,6.25,CAF,1158.0,Yadé,113.0,Central African Republic,102081.0,Ouham-Pendé,both,identical +138633,16.25,6.25,CAF,1158.0,Yadé,113.0,Central African Republic,102081.0,Ouham-Pendé,16.25,6.25,CAF,1158.0,Yadé,113.0,Central African Republic,102081.0,Ouham-Pendé,both,identical +138634,16.75,6.25,CAF,1158.0,Yadé,113.0,Central African Republic,102081.0,Ouham-Pendé,16.75,6.25,CAF,1158.0,Yadé,113.0,Central African Republic,102081.0,Ouham-Pendé,both,identical +138635,17.25,6.25,CAF,1158.0,Yadé,113.0,Central African Republic,102080.0,Ouham,17.25,6.25,CAF,1158.0,Yadé,113.0,Central African Republic,102080.0,Ouham,both,identical +138636,17.75,6.25,CAF,1158.0,Yadé,113.0,Central African Republic,102080.0,Ouham,17.75,6.25,CAF,1158.0,Yadé,113.0,Central African Republic,102080.0,Ouham,both,identical +138637,18.25,6.25,CAF,1158.0,Yadé,113.0,Central African Republic,102080.0,Ouham,18.25,6.25,CAF,1158.0,Yadé,113.0,Central African Republic,102080.0,Ouham,both,identical +138638,18.75,6.25,CAF,1158.0,Yadé,113.0,Central African Republic,102080.0,Ouham,18.75,6.25,CAF,1158.0,Yadé,113.0,Central African Republic,102080.0,Ouham,both,identical +138639,19.25,6.25,CAF,1156.0,Kagas,113.0,Central African Republic,102075.0,Kémo,19.25,6.25,CAF,1156.0,Kagas,113.0,Central African Republic,102075.0,Kémo,both,identical +138640,19.75,6.25,CAF,1156.0,Kagas,113.0,Central African Republic,102075.0,Kémo,19.75,6.25,CAF,1156.0,Kagas,113.0,Central African Republic,102075.0,Kémo,both,identical +138641,20.25,6.25,CAF,1156.0,Kagas,113.0,Central African Republic,102077.0,Ouaka,20.25,6.25,CAF,1156.0,Kagas,113.0,Central African Republic,102077.0,Ouaka,both,identical +138642,20.75,6.25,CAF,1156.0,Kagas,113.0,Central African Republic,102077.0,Ouaka,20.75,6.25,CAF,1156.0,Kagas,113.0,Central African Republic,102077.0,Ouaka,both,identical +138643,21.25,6.25,CAF,1156.0,Kagas,113.0,Central African Republic,102077.0,Ouaka,21.25,6.25,CAF,1156.0,Kagas,113.0,Central African Republic,102077.0,Ouaka,both,identical +138644,21.75,6.25,CAF,1156.0,Kagas,113.0,Central African Republic,102077.0,Ouaka,21.75,6.25,CAF,1156.0,Kagas,113.0,Central African Republic,102077.0,Ouaka,both,identical +138645,22.25,6.25,CAF,1154.0,Fertit,113.0,Central African Republic,102070.0,Haute-Kotto,22.25,6.25,CAF,1154.0,Fertit,113.0,Central African Republic,102070.0,Haute-Kotto,both,identical +138646,22.75,6.25,CAF,1154.0,Fertit,113.0,Central African Republic,102070.0,Haute-Kotto,22.75,6.25,CAF,1154.0,Fertit,113.0,Central African Republic,102070.0,Haute-Kotto,both,identical +138647,23.25,6.25,CAF,1154.0,Fertit,113.0,Central African Republic,102070.0,Haute-Kotto,23.25,6.25,CAF,1154.0,Fertit,113.0,Central African Republic,102070.0,Haute-Kotto,both,identical +138648,23.75,6.25,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102074.0,Mbomou,23.75,6.25,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102074.0,Mbomou,both,identical +138649,24.25,6.25,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102074.0,Mbomou,24.25,6.25,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102074.0,Mbomou,both,identical +138650,24.75,6.25,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102074.0,Mbomou,24.75,6.25,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102074.0,Mbomou,both,identical +138651,25.25,6.25,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102073.0,Haut-Mbomou,25.25,6.25,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102073.0,Haut-Mbomou,both,identical +138652,25.75,6.25,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102073.0,Haut-Mbomou,25.75,6.25,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102073.0,Haut-Mbomou,both,identical +138653,26.25,6.25,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102073.0,Haut-Mbomou,26.25,6.25,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102073.0,Haut-Mbomou,both,identical +138654,26.75,6.25,SSD,1626.0,Western Equatoria,160.0,South Sudan,105735.0,Nagero,26.75,6.25,SSD,1626.0,Western Equatoria,160.0,South Sudan,105735.0,Nagero,both,identical +138655,27.25,6.25,SSD,1626.0,Western Equatoria,160.0,South Sudan,105735.0,Nagero,27.25,6.25,SSD,1626.0,Western Equatoria,160.0,South Sudan,105735.0,Nagero,both,identical +138656,27.75,6.25,SSD,1626.0,Western Equatoria,160.0,South Sudan,105735.0,Nagero,27.75,6.25,SSD,1626.0,Western Equatoria,160.0,South Sudan,105735.0,Nagero,both,identical +138657,28.25,6.25,SSD,1626.0,Western Equatoria,160.0,South Sudan,105729.0,Ezo,28.25,6.25,SSD,1626.0,Western Equatoria,160.0,South Sudan,105729.0,Ezo,both,identical +138658,28.75,6.25,SSD,1620.0,Lakes,160.0,South Sudan,105691.0,Wulu,28.75,6.25,SSD,1620.0,Lakes,160.0,South Sudan,105691.0,Wulu,both,identical +138659,29.25,6.25,SSD,1620.0,Lakes,160.0,South Sudan,105691.0,Wulu,29.25,6.25,SSD,1620.0,Lakes,160.0,South Sudan,105691.0,Wulu,both,identical +138660,29.75,6.25,SSD,1620.0,Lakes,160.0,South Sudan,105691.0,Wulu,29.75,6.25,SSD,1620.0,Lakes,160.0,South Sudan,105691.0,Wulu,both,identical +138661,30.25,6.25,SSD,1620.0,Lakes,160.0,South Sudan,105693.0,Yirol West,30.25,6.25,SSD,1620.0,Lakes,160.0,South Sudan,105693.0,Yirol West,both,identical +138662,30.75,6.25,SSD,1620.0,Lakes,160.0,South Sudan,105693.0,Yirol West,30.75,6.25,SSD,1620.0,Lakes,160.0,South Sudan,105693.0,Yirol West,both,identical +138663,31.25,6.25,SSD,1620.0,Lakes,160.0,South Sudan,105686.0,Awerial,31.25,6.25,SSD,1620.0,Lakes,160.0,South Sudan,105686.0,Awerial,both,identical +138664,31.75,6.25,SSD,1619.0,Jonglei,160.0,South Sudan,105677.0,Bor South,31.75,6.25,SSD,1619.0,Jonglei,160.0,South Sudan,105677.0,Bor South,both,identical +138665,32.25,6.25,SSD,1619.0,Jonglei,160.0,South Sudan,105677.0,Bor South,32.25,6.25,SSD,1619.0,Jonglei,160.0,South Sudan,105677.0,Bor South,both,identical +138666,32.75,6.25,SSD,1619.0,Jonglei,160.0,South Sudan,105682.0,Pibor,32.75,6.25,SSD,1619.0,Jonglei,160.0,South Sudan,105682.0,Pibor,both,identical +138667,33.25,6.25,SSD,1619.0,Jonglei,160.0,South Sudan,105682.0,Pibor,33.25,6.25,SSD,1619.0,Jonglei,160.0,South Sudan,105682.0,Pibor,both,identical +138668,33.75,6.25,SSD,1619.0,Jonglei,160.0,South Sudan,105682.0,Pibor,33.75,6.25,SSD,1619.0,Jonglei,160.0,South Sudan,105682.0,Pibor,both,identical +138669,34.25,6.25,SSD,1619.0,Jonglei,160.0,South Sudan,105682.0,Pibor,34.25,6.25,SSD,1619.0,Jonglei,160.0,South Sudan,105682.0,Pibor,both,identical +138670,34.75,6.25,SSD,1619.0,Jonglei,160.0,South Sudan,105682.0,Pibor,34.75,6.25,SSD,1619.0,Jonglei,160.0,South Sudan,105682.0,Pibor,both,identical +138671,35.25,6.25,ETH,1300.0,South West Ethiopia,124.0,Ethiopia,103126.0,Mirab Omo,35.25,6.25,ETH,1300.0,South West Ethiopia,124.0,Ethiopia,103126.0,Mirab Omo,both,identical +138672,35.75,6.25,ETH,1300.0,South West Ethiopia,124.0,Ethiopia,103126.0,Mirab Omo,35.75,6.25,ETH,1300.0,South West Ethiopia,124.0,Ethiopia,103126.0,Mirab Omo,both,identical +138673,36.25,6.25,ETH,1298.0,Snnp,124.0,Ethiopia,103108.0,South Omo,36.25,6.25,ETH,1298.0,Snnp,124.0,Ethiopia,103108.0,South Omo,both,identical +138674,36.75,6.25,ETH,1298.0,Snnp,124.0,Ethiopia,103101.0,Gofa,36.75,6.25,ETH,1298.0,Snnp,124.0,Ethiopia,103101.0,Gofa,both,identical +138675,37.25,6.25,ETH,1298.0,Snnp,124.0,Ethiopia,103099.0,Gamo,37.25,6.25,ETH,1298.0,Snnp,124.0,Ethiopia,103099.0,Gamo,both,identical +138676,37.75,6.25,ETH,1298.0,Snnp,124.0,Ethiopia,103099.0,Gamo,37.75,6.25,ETH,1298.0,Snnp,124.0,Ethiopia,103099.0,Gamo,both,identical +138677,38.25,6.25,ETH,1296.0,Oromia,124.0,Ethiopia,103089.0,West Guji,38.25,6.25,ETH,1296.0,Oromia,124.0,Ethiopia,103089.0,West Guji,both,identical +138678,38.75,6.25,ETH,1296.0,Oromia,124.0,Ethiopia,103081.0,Guji,38.75,6.25,ETH,1296.0,Oromia,124.0,Ethiopia,103081.0,Guji,both,identical +138679,39.25,6.25,ETH,1296.0,Oromia,124.0,Ethiopia,103073.0,Bale,39.25,6.25,ETH,1296.0,Oromia,124.0,Ethiopia,103073.0,Bale,both,identical +138680,39.75,6.25,ETH,1296.0,Oromia,124.0,Ethiopia,103073.0,Bale,39.75,6.25,ETH,1296.0,Oromia,124.0,Ethiopia,103073.0,Bale,both,identical +138681,40.25,6.25,ETH,1296.0,Oromia,124.0,Ethiopia,103073.0,Bale,40.25,6.25,ETH,1296.0,Oromia,124.0,Ethiopia,103073.0,Bale,both,identical +138682,40.75,6.25,ETH,1296.0,Oromia,124.0,Ethiopia,103073.0,Bale,40.75,6.25,ETH,1296.0,Oromia,124.0,Ethiopia,103073.0,Bale,both,identical +138683,41.25,6.25,ETH,1299.0,Somali,124.0,Ethiopia,103118.0,Liban,41.25,6.25,ETH,1299.0,Somali,124.0,Ethiopia,103118.0,Liban,both,identical +138684,41.75,6.25,ETH,1299.0,Somali,124.0,Ethiopia,103111.0,Afder,41.75,6.25,ETH,1299.0,Somali,124.0,Ethiopia,103111.0,Afder,both,identical +138685,42.25,6.25,ETH,1299.0,Somali,124.0,Ethiopia,103111.0,Afder,42.25,6.25,ETH,1299.0,Somali,124.0,Ethiopia,103111.0,Afder,both,identical +138686,42.75,6.25,ETH,1299.0,Somali,124.0,Ethiopia,103120.0,Shabelle,42.75,6.25,ETH,1299.0,Somali,124.0,Ethiopia,103120.0,Shabelle,both,identical +138687,43.25,6.25,ETH,1299.0,Somali,124.0,Ethiopia,103120.0,Shabelle,43.25,6.25,ETH,1299.0,Somali,124.0,Ethiopia,103120.0,Shabelle,both,identical +138688,43.75,6.25,ETH,1299.0,Somali,124.0,Ethiopia,103120.0,Shabelle,43.75,6.25,ETH,1299.0,Somali,124.0,Ethiopia,103120.0,Shabelle,both,identical +138689,44.25,6.25,ETH,1299.0,Somali,124.0,Ethiopia,103117.0,Korahe,44.25,6.25,ETH,1299.0,Somali,124.0,Ethiopia,103117.0,Korahe,both,identical +138690,44.75,6.25,ETH,1299.0,Somali,124.0,Ethiopia,103117.0,Korahe,44.75,6.25,ETH,1299.0,Somali,124.0,Ethiopia,103117.0,Korahe,both,identical +138691,45.25,6.25,ETH,1299.0,Somali,124.0,Ethiopia,103117.0,Korahe,45.25,6.25,ETH,1299.0,Somali,124.0,Ethiopia,103117.0,Korahe,both,identical +138692,45.75,6.25,ETH,1299.0,Somali,124.0,Ethiopia,103113.0,Doolo,45.75,6.25,ETH,1299.0,Somali,124.0,Ethiopia,103113.0,Doolo,both,identical +138693,46.25,6.25,SOM,1594.0,Galgaduud,158.0,Somalia,105555.0,Cabudwaaq,46.25,6.25,ETH,1299.0,Somali,124.0,Ethiopia,103113.0,Doolo,both,country_reassignment +138694,46.75,6.25,SOM,1594.0,Galgaduud,158.0,Somalia,105556.0,Cadaado,46.75,6.25,SOM,1594.0,Galgaduud,158.0,Somalia,105556.0,Cadaado,both,identical +138695,47.25,6.25,SOM,1594.0,Galgaduud,158.0,Somalia,105556.0,Cadaado,47.25,6.25,SOM,1594.0,Galgaduud,158.0,Somalia,105556.0,Cadaado,both,identical +138696,47.75,6.25,SOM,1601.0,Mudug,158.0,Somalia,105589.0,Hobyo,47.75,6.25,SOM,1601.0,Mudug,158.0,Somalia,105589.0,Hobyo,both,identical +138697,48.25,6.25,SOM,1601.0,Mudug,158.0,Somalia,105589.0,Hobyo,48.25,6.25,SOM,1601.0,Mudug,158.0,Somalia,105589.0,Hobyo,both,identical +138698,48.75,6.25,SOM,1601.0,Mudug,158.0,Somalia,105589.0,Hobyo,48.75,6.25,SOM,1601.0,Mudug,158.0,Somalia,105589.0,Hobyo,both,identical +138699,49.25,6.25,SOM,1601.0,Mudug,158.0,Somalia,105589.0,Hobyo,49.25,6.25,SOM,1601.0,Mudug,158.0,Somalia,105589.0,Hobyo,both,identical +139297,-11.75,6.75,SLE,1587.0,Southern,157.0,Sierra Leone,105532.0,Pujehun,-11.75,6.75,SLE,1587.0,Southern,157.0,Sierra Leone,105532.0,Pujehun,both,identical +139298,-11.25,6.75,LBR,1414.0,Grand Cape Mount,139.0,Liberia,103927.0,Garwula,-11.25,6.75,LBR,1414.0,Grand Cape Mount,139.0,Liberia,103927.0,Garwula,both,identical +139299,-10.75,6.75,LBR,1410.0,Bomi,139.0,Liberia,103897.0,Klay,-10.75,6.75,LBR,1410.0,Bomi,139.0,Liberia,103897.0,Klay,both,identical +139300,-10.25,6.75,LBR,1418.0,Margibi,139.0,Liberia,103966.0,Kakata,-10.25,6.75,LBR,1418.0,Margibi,139.0,Liberia,103966.0,Kakata,both,identical +139301,-9.75,6.75,LBR,1411.0,Bong,139.0,Liberia,103910.0,Yeallequelleh,-9.75,6.75,LBR,1411.0,Bong,139.0,Liberia,103910.0,Yeallequelleh,both,identical +139302,-9.25,6.75,LBR,1411.0,Bong,139.0,Liberia,103902.0,Jorquelleh,-9.25,6.75,LBR,1411.0,Bong,139.0,Liberia,103902.0,Jorquelleh,both,identical +139303,-8.75,6.75,LBR,1421.0,Nimba,139.0,Liberia,103982.0,Doe,-8.75,6.75,LBR,1421.0,Nimba,139.0,Liberia,103982.0,Doe,both,identical +139304,-8.25,6.75,CIV,1205.0,Montagnes,117.0,Côte D'Ivoire,102275.0,Cavally,-8.25,6.75,CIV,1205.0,Montagnes,117.0,Côte D'Ivoire,102275.0,Cavally,both,identical +139305,-7.75,6.75,CIV,1205.0,Montagnes,117.0,Côte D'Ivoire,102275.0,Cavally,-7.75,6.75,CIV,1205.0,Montagnes,117.0,Côte D'Ivoire,102275.0,Cavally,both,identical +139306,-7.25,6.75,CIV,1205.0,Montagnes,117.0,Côte D'Ivoire,102276.0,Guémon,-7.25,6.75,CIV,1205.0,Montagnes,117.0,Côte D'Ivoire,102276.0,Guémon,both,identical +139307,-6.75,6.75,CIV,1206.0,Sassandra-Marahoué,117.0,Côte D'Ivoire,102278.0,Haut-Sassandra,-6.75,6.75,CIV,1206.0,Sassandra-Marahoué,117.0,Côte D'Ivoire,102278.0,Haut-Sassandra,both,identical +139308,-6.25,6.75,CIV,1206.0,Sassandra-Marahoué,117.0,Côte D'Ivoire,102278.0,Haut-Sassandra,-6.25,6.75,CIV,1206.0,Sassandra-Marahoué,117.0,Côte D'Ivoire,102278.0,Haut-Sassandra,both,identical +139309,-5.75,6.75,CIV,1206.0,Sassandra-Marahoué,117.0,Côte D'Ivoire,102279.0,Marahoué,-5.75,6.75,CIV,1206.0,Sassandra-Marahoué,117.0,Côte D'Ivoire,102279.0,Marahoué,both,identical +139310,-5.25,6.75,CIV,1210.0,Yamoussoukro,117.0,Côte D'Ivoire,102288.0,Autonomous District Of Yamoussoukro,-5.25,6.75,CIV,1210.0,Yamoussoukro,117.0,Côte D'Ivoire,102288.0,Autonomous District Of Yamoussoukro,both,identical +139311,-4.75,6.75,CIV,1203.0,Lacs,117.0,Côte D'Ivoire,102271.0,N'Zi,-4.75,6.75,CIV,1203.0,Lacs,117.0,Côte D'Ivoire,102271.0,N'Zi,both,identical +139312,-4.25,6.75,CIV,1203.0,Lacs,117.0,Côte D'Ivoire,102270.0,Moronou,-4.25,6.75,CIV,1203.0,Lacs,117.0,Côte D'Ivoire,102270.0,Moronou,both,identical +139313,-3.75,6.75,CIV,1200.0,Comoé,117.0,Côte D'Ivoire,102262.0,Indénié-Djuablin,-3.75,6.75,CIV,1200.0,Comoé,117.0,Côte D'Ivoire,102262.0,Indénié-Djuablin,both,identical +139314,-3.25,6.75,CIV,1200.0,Comoé,117.0,Côte D'Ivoire,102262.0,Indénié-Djuablin,-3.25,6.75,CIV,1200.0,Comoé,117.0,Côte D'Ivoire,102262.0,Indénié-Djuablin,both,identical +139315,-2.75,6.75,GHA,1322.0,Brong Ahafo,129.0,Ghana,103264.0,Asunafo North,-2.75,6.75,GHA,1322.0,Brong Ahafo,129.0,Ghana,103264.0,Asunafo North,both,identical +139316,-2.25,6.75,GHA,1321.0,Ashanti,129.0,Ghana,103247.0,Atwima Mponua,-2.25,6.75,GHA,1321.0,Ashanti,129.0,Ghana,103247.0,Atwima Mponua,both,identical +139317,-1.75,6.75,GHA,1321.0,Ashanti,129.0,Ghana,103248.0,Atwima Nwabiagya,-1.75,6.75,GHA,1321.0,Ashanti,129.0,Ghana,103248.0,Atwima Nwabiagya,both,identical +139318,-1.25,6.75,GHA,1321.0,Ashanti,129.0,Ghana,103260.0,Sekyere Afram Plains,-1.25,6.75,GHA,1321.0,Ashanti,129.0,Ghana,103260.0,Sekyere Afram Plains,both,identical +139319,-0.75,6.75,GHA,1324.0,Eastern,129.0,Ghana,103326.0,Kwahu East,-0.75,6.75,GHA,1324.0,Eastern,129.0,Ghana,103326.0,Kwahu East,both,identical +139320,-0.25,6.75,GHA,1324.0,Eastern,129.0,Ghana,103325.0,Kwahu Afram Plains South,-0.25,6.75,GHA,1324.0,Eastern,129.0,Ghana,103325.0,Kwahu Afram Plains South,both,identical +139321,0.25,6.75,GHA,1329.0,Volta,129.0,Ghana,103324.0,Kwahu Afram Plains North,0.25,6.75,GHA,1324.0,Eastern,129.0,Ghana,103324.0,Kwahu Afram Plains North,both,admin_reallocation +139322,0.75,6.75,TGO,1648.0,Plateaux,162.0,Togo,105947.0,Agou,0.75,6.75,TGO,1648.0,Plateaux,162.0,Togo,105947.0,Agou,both,identical +139323,1.25,6.75,TGO,1647.0,Maritime,162.0,Togo,105953.0,Haho,1.25,6.75,TGO,1648.0,Plateaux,162.0,Togo,105953.0,Haho,both,admin_reallocation +139324,1.75,6.75,BEN,1076.0,Couffo,105.0,Benin,101763.0,Bopa,1.75,6.75,TGO,1647.0,Maritime,162.0,Togo,105945.0,Yoto,both,country_reassignment +139325,2.25,6.75,BEN,1073.0,Atlantique,105.0,Benin,101736.0,Zè,2.25,6.75,BEN,1073.0,Atlantique,105.0,Benin,101736.0,Zè,both,identical +139326,2.75,6.75,NGA,1544.0,Ogun,151.0,Nigeria,105207.0,Ipokia,2.75,6.75,NGA,1544.0,Ogun,151.0,Nigeria,105207.0,Ipokia,both,identical +139327,3.25,6.75,NGA,1544.0,Ogun,151.0,Nigeria,105196.0,Ado-Odo/Ota,3.25,6.75,NGA,1544.0,Ogun,151.0,Nigeria,105196.0,Ado-Odo/Ota,both,identical +139328,3.75,6.75,NGA,1544.0,Ogun,151.0,Nigeria,105142.0,Epe,3.75,6.75,NGA,1541.0,Lagos,151.0,Nigeria,105142.0,Epe,both,admin_reallocation +139329,4.25,6.75,NGA,1544.0,Ogun,151.0,Nigeria,105201.0,Ijebu East,4.25,6.75,NGA,1544.0,Ogun,151.0,Nigeria,105201.0,Ijebu East,both,identical +139330,4.75,6.75,NGA,1545.0,Ondo,151.0,Nigeria,105226.0,Odigbo,4.75,6.75,NGA,1545.0,Ondo,151.0,Nigeria,105226.0,Odigbo,both,identical +139331,5.25,6.75,NGA,1528.0,Edo,151.0,Nigeria,104869.0,Ovia South West,5.25,6.75,NGA,1528.0,Edo,151.0,Nigeria,104869.0,Ovia South West,both,identical +139332,5.75,6.75,NGA,1528.0,Edo,151.0,Nigeria,104868.0,Ovia North East,5.75,6.75,NGA,1528.0,Edo,151.0,Nigeria,104868.0,Ovia North East,both,identical +139333,6.25,6.75,NGA,1528.0,Edo,151.0,Nigeria,104859.0,Esan South East,6.25,6.75,NGA,1528.0,Edo,151.0,Nigeria,104859.0,Esan South East,both,identical +139334,6.75,6.75,NGA,1539.0,Kogi,151.0,Nigeria,105104.0,Ibaji,6.75,6.75,NGA,1539.0,Kogi,151.0,Nigeria,105104.0,Ibaji,both,identical +139335,7.25,6.75,NGA,1530.0,Enugu,151.0,Nigeria,104905.0,Uzo-Uwani,7.25,6.75,NGA,1530.0,Enugu,151.0,Nigeria,104905.0,Uzo-Uwani,both,identical +139336,7.75,6.75,NGA,1530.0,Enugu,151.0,Nigeria,104898.0,Isi-Uzo,7.75,6.75,NGA,1530.0,Enugu,151.0,Nigeria,104898.0,Isi-Uzo,both,identical +139337,8.25,6.75,NGA,1523.0,Benue,151.0,Nigeria,104765.0,Oju,8.25,6.75,NGA,1523.0,Benue,151.0,Nigeria,104765.0,Oju,both,identical +139338,8.75,6.75,NGA,1525.0,Cross River,151.0,Nigeria,104816.0,Yala,8.75,6.75,NGA,1525.0,Cross River,151.0,Nigeria,104816.0,Yala,both,identical +139339,9.25,6.75,NGA,1523.0,Benue,151.0,Nigeria,104759.0,Kwande,9.25,6.75,NGA,1523.0,Benue,151.0,Nigeria,104759.0,Kwande,both,identical +139340,9.75,6.75,NGA,1551.0,Taraba,151.0,Nigeria,105369.0,Takum,9.75,6.75,CMR,1148.0,Nord-Ouest,112.0,Cameroon,102043.0,Menchum,both,country_reassignment +139341,10.25,6.75,CMR,1148.0,Nord-Ouest,112.0,Cameroon,102043.0,Menchum,10.25,6.75,CMR,1148.0,Nord-Ouest,112.0,Cameroon,102043.0,Menchum,both,identical +139342,10.75,6.75,CMR,1148.0,Nord-Ouest,112.0,Cameroon,102042.0,Donga-Mantung,10.75,6.75,CMR,1148.0,Nord-Ouest,112.0,Cameroon,102042.0,Donga-Mantung,both,identical +139343,11.25,6.75,NGA,1551.0,Taraba,151.0,Nigeria,105368.0,Sardauna,11.25,6.75,NGA,1551.0,Taraba,151.0,Nigeria,105368.0,Sardauna,both,identical +139344,11.75,6.75,CMR,1142.0,Adamaoua,112.0,Cameroon,102009.0,Mayo-Banyo,11.75,6.75,CMR,1142.0,Adamaoua,112.0,Cameroon,102009.0,Mayo-Banyo,both,identical +139345,12.25,6.75,CMR,1142.0,Adamaoua,112.0,Cameroon,102007.0,Djerem,12.25,6.75,CMR,1142.0,Adamaoua,112.0,Cameroon,102007.0,Djerem,both,identical +139346,12.75,6.75,CMR,1142.0,Adamaoua,112.0,Cameroon,102007.0,Djerem,12.75,6.75,CMR,1142.0,Adamaoua,112.0,Cameroon,102007.0,Djerem,both,identical +139347,13.25,6.75,CMR,1142.0,Adamaoua,112.0,Cameroon,102011.0,Vina,13.25,6.75,CMR,1142.0,Adamaoua,112.0,Cameroon,102011.0,Vina,both,identical +139348,13.75,6.75,CMR,1142.0,Adamaoua,112.0,Cameroon,102011.0,Vina,13.75,6.75,CMR,1142.0,Adamaoua,112.0,Cameroon,102011.0,Vina,both,identical +139349,14.25,6.75,CMR,1142.0,Adamaoua,112.0,Cameroon,102010.0,Mbéré,14.25,6.75,CMR,1142.0,Adamaoua,112.0,Cameroon,102010.0,Mbéré,both,identical +139350,14.75,6.75,CMR,1142.0,Adamaoua,112.0,Cameroon,102010.0,Mbéré,14.75,6.75,CMR,1142.0,Adamaoua,112.0,Cameroon,102010.0,Mbéré,both,identical +139351,15.25,6.75,CAF,1158.0,Yadé,113.0,Central African Republic,102081.0,Ouham-Pendé,15.25,6.75,CAF,1158.0,Yadé,113.0,Central African Republic,102081.0,Ouham-Pendé,both,identical +139352,15.75,6.75,CAF,1158.0,Yadé,113.0,Central African Republic,102081.0,Ouham-Pendé,15.75,6.75,CAF,1158.0,Yadé,113.0,Central African Republic,102081.0,Ouham-Pendé,both,identical +139353,16.25,6.75,CAF,1158.0,Yadé,113.0,Central African Republic,102081.0,Ouham-Pendé,16.25,6.75,CAF,1158.0,Yadé,113.0,Central African Republic,102081.0,Ouham-Pendé,both,identical +139354,16.75,6.75,CAF,1158.0,Yadé,113.0,Central African Republic,102080.0,Ouham,16.75,6.75,CAF,1158.0,Yadé,113.0,Central African Republic,102080.0,Ouham,both,identical +139355,17.25,6.75,CAF,1158.0,Yadé,113.0,Central African Republic,102080.0,Ouham,17.25,6.75,CAF,1158.0,Yadé,113.0,Central African Republic,102080.0,Ouham,both,identical +139356,17.75,6.75,CAF,1158.0,Yadé,113.0,Central African Republic,102080.0,Ouham,17.75,6.75,CAF,1158.0,Yadé,113.0,Central African Republic,102080.0,Ouham,both,identical +139357,18.25,6.75,CAF,1158.0,Yadé,113.0,Central African Republic,102080.0,Ouham,18.25,6.75,CAF,1158.0,Yadé,113.0,Central African Republic,102080.0,Ouham,both,identical +139358,18.75,6.75,CAF,1158.0,Yadé,113.0,Central African Republic,102080.0,Ouham,18.75,6.75,CAF,1158.0,Yadé,113.0,Central African Republic,102080.0,Ouham,both,identical +139359,19.25,6.75,CAF,1156.0,Kagas,113.0,Central African Republic,102076.0,Nana-Grébizi,19.25,6.75,CAF,1156.0,Kagas,113.0,Central African Republic,102076.0,Nana-Grébizi,both,identical +139360,19.75,6.75,CAF,1156.0,Kagas,113.0,Central African Republic,102076.0,Nana-Grébizi,19.75,6.75,CAF,1156.0,Kagas,113.0,Central African Republic,102076.0,Nana-Grébizi,both,identical +139361,20.25,6.75,CAF,1156.0,Kagas,113.0,Central African Republic,102077.0,Ouaka,20.25,6.75,CAF,1156.0,Kagas,113.0,Central African Republic,102077.0,Ouaka,both,identical +139362,20.75,6.75,CAF,1156.0,Kagas,113.0,Central African Republic,102077.0,Ouaka,20.75,6.75,CAF,1156.0,Kagas,113.0,Central African Republic,102077.0,Ouaka,both,identical +139363,21.25,6.75,CAF,1156.0,Kagas,113.0,Central African Republic,102077.0,Ouaka,21.25,6.75,CAF,1156.0,Kagas,113.0,Central African Republic,102077.0,Ouaka,both,identical +139364,21.75,6.75,CAF,1154.0,Fertit,113.0,Central African Republic,102070.0,Haute-Kotto,21.75,6.75,CAF,1154.0,Fertit,113.0,Central African Republic,102070.0,Haute-Kotto,both,identical +139365,22.25,6.75,CAF,1154.0,Fertit,113.0,Central African Republic,102070.0,Haute-Kotto,22.25,6.75,CAF,1154.0,Fertit,113.0,Central African Republic,102070.0,Haute-Kotto,both,identical +139366,22.75,6.75,CAF,1154.0,Fertit,113.0,Central African Republic,102070.0,Haute-Kotto,22.75,6.75,CAF,1154.0,Fertit,113.0,Central African Republic,102070.0,Haute-Kotto,both,identical +139367,23.25,6.75,CAF,1154.0,Fertit,113.0,Central African Republic,102070.0,Haute-Kotto,23.25,6.75,CAF,1154.0,Fertit,113.0,Central African Republic,102070.0,Haute-Kotto,both,identical +139368,23.75,6.75,CAF,1154.0,Fertit,113.0,Central African Republic,102070.0,Haute-Kotto,23.75,6.75,CAF,1154.0,Fertit,113.0,Central African Republic,102070.0,Haute-Kotto,both,identical +139369,24.25,6.75,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102070.0,Haute-Kotto,24.25,6.75,CAF,1154.0,Fertit,113.0,Central African Republic,102070.0,Haute-Kotto,both,admin_reallocation +139370,24.75,6.75,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102073.0,Haut-Mbomou,24.75,6.75,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102073.0,Haut-Mbomou,both,identical +139371,25.25,6.75,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102073.0,Haut-Mbomou,25.25,6.75,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102073.0,Haut-Mbomou,both,identical +139372,25.75,6.75,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102073.0,Haut-Mbomou,25.75,6.75,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102073.0,Haut-Mbomou,both,identical +139373,26.25,6.75,SSD,1625.0,Western Bahr El Ghazal,160.0,South Sudan,105727.0,Raja,26.25,6.75,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102073.0,Haut-Mbomou,both,country_reassignment +139374,26.75,6.75,SSD,1625.0,Western Bahr El Ghazal,160.0,South Sudan,105728.0,Wau,26.75,6.75,SSD,1625.0,Western Bahr El Ghazal,160.0,South Sudan,105728.0,Wau,both,identical +139375,27.25,6.75,SSD,1625.0,Western Bahr El Ghazal,160.0,South Sudan,105728.0,Wau,27.25,6.75,SSD,1625.0,Western Bahr El Ghazal,160.0,South Sudan,105728.0,Wau,both,identical +139376,27.75,6.75,SSD,1626.0,Western Equatoria,160.0,South Sudan,105735.0,Nagero,27.75,6.75,SSD,1626.0,Western Equatoria,160.0,South Sudan,105735.0,Nagero,both,identical +139377,28.25,6.75,SSD,1626.0,Western Equatoria,160.0,South Sudan,105735.0,Nagero,28.25,6.75,SSD,1626.0,Western Equatoria,160.0,South Sudan,105735.0,Nagero,both,identical +139378,28.75,6.75,SSD,1624.0,Warrap,160.0,South Sudan,105724.0,Tonj South,28.75,6.75,SSD,1624.0,Warrap,160.0,South Sudan,105724.0,Tonj South,both,identical +139379,29.25,6.75,SSD,1620.0,Lakes,160.0,South Sudan,105687.0,Cueibet,29.25,6.75,SSD,1620.0,Lakes,160.0,South Sudan,105687.0,Cueibet,both,identical +139380,29.75,6.75,SSD,1620.0,Lakes,160.0,South Sudan,105688.0,Rumbek Centre,29.75,6.75,SSD,1620.0,Lakes,160.0,South Sudan,105688.0,Rumbek Centre,both,identical +139381,30.25,6.75,SSD,1620.0,Lakes,160.0,South Sudan,105689.0,Rumbek East,30.25,6.75,SSD,1620.0,Lakes,160.0,South Sudan,105689.0,Rumbek East,both,identical +139382,30.75,6.75,SSD,1620.0,Lakes,160.0,South Sudan,105692.0,Yirol East,30.75,6.75,SSD,1620.0,Lakes,160.0,South Sudan,105692.0,Yirol East,both,identical +139383,31.25,6.75,SSD,1619.0,Jonglei,160.0,South Sudan,105684.0,Twic East,31.25,6.75,SSD,1619.0,Jonglei,160.0,South Sudan,105684.0,Twic East,both,identical +139384,31.75,6.75,SSD,1619.0,Jonglei,160.0,South Sudan,105677.0,Bor South,31.75,6.75,SSD,1619.0,Jonglei,160.0,South Sudan,105677.0,Bor South,both,identical +139385,32.25,6.75,SSD,1619.0,Jonglei,160.0,South Sudan,105677.0,Bor South,32.25,6.75,SSD,1619.0,Jonglei,160.0,South Sudan,105677.0,Bor South,both,identical +139386,32.75,6.75,SSD,1619.0,Jonglei,160.0,South Sudan,105682.0,Pibor,32.75,6.75,SSD,1619.0,Jonglei,160.0,South Sudan,105682.0,Pibor,both,identical +139387,33.25,6.75,SSD,1619.0,Jonglei,160.0,South Sudan,105682.0,Pibor,33.25,6.75,SSD,1619.0,Jonglei,160.0,South Sudan,105682.0,Pibor,both,identical +139388,33.75,6.75,SSD,1619.0,Jonglei,160.0,South Sudan,105682.0,Pibor,33.75,6.75,SSD,1619.0,Jonglei,160.0,South Sudan,105682.0,Pibor,both,identical +139389,34.25,6.75,SSD,1619.0,Jonglei,160.0,South Sudan,105683.0,Pochalla,34.25,6.75,SSD,1619.0,Jonglei,160.0,South Sudan,105683.0,Pochalla,both,identical +139390,34.75,6.75,ETH,1294.0,Gambela,124.0,Ethiopia,103067.0,Agnewak,34.75,6.75,ETH,1294.0,Gambela,124.0,Ethiopia,103067.0,Agnewak,both,identical +139391,35.25,6.75,ETH,1300.0,South West Ethiopia,124.0,Ethiopia,103122.0,Bench Sheko,35.25,6.75,ETH,1300.0,South West Ethiopia,124.0,Ethiopia,103122.0,Bench Sheko,both,identical +139392,35.75,6.75,ETH,1300.0,South West Ethiopia,124.0,Ethiopia,103126.0,Mirab Omo,35.75,6.75,ETH,1300.0,South West Ethiopia,124.0,Ethiopia,103126.0,Mirab Omo,both,identical +139393,36.25,6.75,ETH,1300.0,South West Ethiopia,124.0,Ethiopia,103124.0,Kefa,36.25,6.75,ETH,1300.0,South West Ethiopia,124.0,Ethiopia,103124.0,Kefa,both,identical +139394,36.75,6.75,ETH,1300.0,South West Ethiopia,124.0,Ethiopia,103125.0,Konta Special,36.75,6.75,ETH,1300.0,South West Ethiopia,124.0,Ethiopia,103125.0,Konta Special,both,identical +139395,37.25,6.75,ETH,1298.0,Snnp,124.0,Ethiopia,103123.0,Dawuro,37.25,6.75,ETH,1300.0,South West Ethiopia,124.0,Ethiopia,103123.0,Dawuro,both,admin_reallocation +139396,37.75,6.75,ETH,1298.0,Snnp,124.0,Ethiopia,103109.0,Wolayita,37.75,6.75,ETH,1298.0,Snnp,124.0,Ethiopia,103109.0,Wolayita,both,identical +139397,38.25,6.75,ETH,1297.0,Sidama,124.0,Ethiopia,103093.0,Sidama,38.25,6.75,ETH,1297.0,Sidama,124.0,Ethiopia,103093.0,Sidama,both,identical +139398,38.75,6.75,ETH,1297.0,Sidama,124.0,Ethiopia,103093.0,Sidama,38.75,6.75,ETH,1297.0,Sidama,124.0,Ethiopia,103093.0,Sidama,both,identical +139399,39.25,6.75,ETH,1296.0,Oromia,124.0,Ethiopia,103088.0,West Arsi,39.25,6.75,ETH,1296.0,Oromia,124.0,Ethiopia,103088.0,West Arsi,both,identical +139400,39.75,6.75,ETH,1296.0,Oromia,124.0,Ethiopia,103073.0,Bale,39.75,6.75,ETH,1296.0,Oromia,124.0,Ethiopia,103073.0,Bale,both,identical +139401,40.25,6.75,ETH,1296.0,Oromia,124.0,Ethiopia,103073.0,Bale,40.25,6.75,ETH,1296.0,Oromia,124.0,Ethiopia,103073.0,Bale,both,identical +139402,40.75,6.75,ETH,1296.0,Oromia,124.0,Ethiopia,103076.0,East Bale,40.75,6.75,ETH,1296.0,Oromia,124.0,Ethiopia,103076.0,East Bale,both,identical +139403,41.25,6.75,ETH,1296.0,Oromia,124.0,Ethiopia,103076.0,East Bale,41.25,6.75,ETH,1296.0,Oromia,124.0,Ethiopia,103076.0,East Bale,both,identical +139404,41.75,6.75,ETH,1296.0,Oromia,124.0,Ethiopia,103076.0,East Bale,41.75,6.75,ETH,1296.0,Oromia,124.0,Ethiopia,103076.0,East Bale,both,identical +139405,42.25,6.75,ETH,1299.0,Somali,124.0,Ethiopia,103120.0,Shabelle,42.25,6.75,ETH,1299.0,Somali,124.0,Ethiopia,103120.0,Shabelle,both,identical +139406,42.75,6.75,ETH,1299.0,Somali,124.0,Ethiopia,103119.0,Nogob,42.75,6.75,ETH,1299.0,Somali,124.0,Ethiopia,103119.0,Nogob,both,identical +139407,43.25,6.75,ETH,1299.0,Somali,124.0,Ethiopia,103119.0,Nogob,43.25,6.75,ETH,1299.0,Somali,124.0,Ethiopia,103119.0,Nogob,both,identical +139408,43.75,6.75,ETH,1299.0,Somali,124.0,Ethiopia,103117.0,Korahe,43.75,6.75,ETH,1299.0,Somali,124.0,Ethiopia,103117.0,Korahe,both,identical +139409,44.25,6.75,ETH,1299.0,Somali,124.0,Ethiopia,103117.0,Korahe,44.25,6.75,ETH,1299.0,Somali,124.0,Ethiopia,103117.0,Korahe,both,identical +139410,44.75,6.75,ETH,1299.0,Somali,124.0,Ethiopia,103117.0,Korahe,44.75,6.75,ETH,1299.0,Somali,124.0,Ethiopia,103117.0,Korahe,both,identical +139411,45.25,6.75,ETH,1299.0,Somali,124.0,Ethiopia,103113.0,Doolo,45.25,6.75,ETH,1299.0,Somali,124.0,Ethiopia,103113.0,Doolo,both,identical +139412,45.75,6.75,ETH,1299.0,Somali,124.0,Ethiopia,103113.0,Doolo,45.75,6.75,ETH,1299.0,Somali,124.0,Ethiopia,103113.0,Doolo,both,identical +139413,46.25,6.75,ETH,1299.0,Somali,124.0,Ethiopia,103113.0,Doolo,46.25,6.75,ETH,1299.0,Somali,124.0,Ethiopia,103113.0,Doolo,both,identical +139414,46.75,6.75,SOM,1601.0,Mudug,158.0,Somalia,105587.0,Gaalkacyo,46.75,6.75,ETH,1299.0,Somali,124.0,Ethiopia,103113.0,Doolo,both,country_reassignment +139415,47.25,6.75,SOM,1601.0,Mudug,158.0,Somalia,105587.0,Gaalkacyo,47.25,6.75,SOM,1601.0,Mudug,158.0,Somalia,105587.0,Gaalkacyo,both,identical +139416,47.75,6.75,SOM,1601.0,Mudug,158.0,Somalia,105587.0,Gaalkacyo,47.75,6.75,SOM,1601.0,Mudug,158.0,Somalia,105587.0,Gaalkacyo,both,identical +139417,48.25,6.75,SOM,1601.0,Mudug,158.0,Somalia,105589.0,Hobyo,48.25,6.75,SOM,1601.0,Mudug,158.0,Somalia,105589.0,Hobyo,both,identical +139418,48.75,6.75,SOM,1601.0,Mudug,158.0,Somalia,105590.0,Jariiban,48.75,6.75,SOM,1601.0,Mudug,158.0,Somalia,105590.0,Jariiban,both,identical +139419,49.25,6.75,SOM,1601.0,Mudug,158.0,Somalia,105590.0,Jariiban,49.25,6.75,SOM,1601.0,Mudug,158.0,Somalia,105590.0,Jariiban,both,identical +140015,-12.75,7.25,SLE,1587.0,Southern,157.0,Sierra Leone,105530.0,Bonthe,-12.75,7.25,SLE,1587.0,Southern,157.0,Sierra Leone,105530.0,Bonthe,both,identical +140016,-12.25,7.25,SLE,1587.0,Southern,157.0,Sierra Leone,105530.0,Bonthe,-12.25,7.25,SLE,1587.0,Southern,157.0,Sierra Leone,105530.0,Bonthe,both,identical +140017,-11.75,7.25,SLE,1587.0,Southern,157.0,Sierra Leone,105532.0,Pujehun,-11.75,7.25,SLE,1587.0,Southern,157.0,Sierra Leone,105532.0,Pujehun,both,identical +140018,-11.25,7.25,SLE,1587.0,Southern,157.0,Sierra Leone,105532.0,Pujehun,-11.25,7.25,SLE,1587.0,Southern,157.0,Sierra Leone,105532.0,Pujehun,both,identical +140019,-10.75,7.25,LBR,1414.0,Grand Cape Mount,139.0,Liberia,103928.0,Golakonneh,-10.75,7.25,LBR,1414.0,Grand Cape Mount,139.0,Liberia,103928.0,Golakonneh,both,identical +140020,-10.25,7.25,LBR,1412.0,Gbarpolu,139.0,Liberia,103914.0,Bopolu,-10.25,7.25,LBR,1412.0,Gbarpolu,139.0,Liberia,103914.0,Bopolu,both,identical +140021,-9.75,7.25,LBR,1411.0,Bong,139.0,Liberia,103960.0,Salayea,-9.75,7.25,LBR,1417.0,Lofa,139.0,Liberia,103960.0,Salayea,both,admin_reallocation +140022,-9.25,7.25,LBR,1411.0,Bong,139.0,Liberia,103911.0,Zota,-9.25,7.25,GIN,1339.0,Nzerekore,131.0,Guinea,103484.0,Yomou,both,country_reassignment +140023,-8.75,7.25,LBR,1421.0,Nimba,139.0,Liberia,103990.0,Sanniquellie Mahn,-8.75,7.25,GIN,1339.0,Nzerekore,131.0,Guinea,103484.0,Yomou,both,country_reassignment +140024,-8.25,7.25,CIV,1205.0,Montagnes,117.0,Côte D'Ivoire,102277.0,Tonkpi,-8.25,7.25,CIV,1205.0,Montagnes,117.0,Côte D'Ivoire,102277.0,Tonkpi,both,identical +140025,-7.75,7.25,CIV,1205.0,Montagnes,117.0,Côte D'Ivoire,102277.0,Tonkpi,-7.75,7.25,CIV,1205.0,Montagnes,117.0,Côte D'Ivoire,102277.0,Tonkpi,both,identical +140026,-7.25,7.25,CIV,1205.0,Montagnes,117.0,Côte D'Ivoire,102276.0,Guémon,-7.25,7.25,CIV,1205.0,Montagnes,117.0,Côte D'Ivoire,102276.0,Guémon,both,identical +140027,-6.75,7.25,CIV,1206.0,Sassandra-Marahoué,117.0,Côte D'Ivoire,102278.0,Haut-Sassandra,-6.75,7.25,CIV,1206.0,Sassandra-Marahoué,117.0,Côte D'Ivoire,102278.0,Haut-Sassandra,both,identical +140028,-6.25,7.25,CIV,1206.0,Sassandra-Marahoué,117.0,Côte D'Ivoire,102278.0,Haut-Sassandra,-6.25,7.25,CIV,1206.0,Sassandra-Marahoué,117.0,Côte D'Ivoire,102278.0,Haut-Sassandra,both,identical +140029,-5.75,7.25,CIV,1206.0,Sassandra-Marahoué,117.0,Côte D'Ivoire,102279.0,Marahoué,-5.75,7.25,CIV,1206.0,Sassandra-Marahoué,117.0,Côte D'Ivoire,102279.0,Marahoué,both,identical +140030,-5.25,7.25,CIV,1203.0,Lacs,117.0,Côte D'Ivoire,102268.0,Bélier,-5.25,7.25,CIV,1203.0,Lacs,117.0,Côte D'Ivoire,102268.0,Bélier,both,identical +140031,-4.75,7.25,CIV,1203.0,Lacs,117.0,Côte D'Ivoire,102268.0,Bélier,-4.75,7.25,CIV,1203.0,Lacs,117.0,Côte D'Ivoire,102268.0,Bélier,both,identical +140032,-4.25,7.25,CIV,1203.0,Lacs,117.0,Côte D'Ivoire,102269.0,Iffou,-4.25,7.25,CIV,1203.0,Lacs,117.0,Côte D'Ivoire,102269.0,Iffou,both,identical +140033,-3.75,7.25,CIV,1203.0,Lacs,117.0,Côte D'Ivoire,102269.0,Iffou,-3.75,7.25,CIV,1203.0,Lacs,117.0,Côte D'Ivoire,102269.0,Iffou,both,identical +140034,-3.25,7.25,CIV,1211.0,Zanzan,117.0,Côte D'Ivoire,102290.0,Gontougo,-3.25,7.25,CIV,1211.0,Zanzan,117.0,Côte D'Ivoire,102290.0,Gontougo,both,identical +140035,-2.75,7.25,GHA,1322.0,Brong Ahafo,129.0,Ghana,103272.0,Dormaa Municipal,-2.75,7.25,GHA,1322.0,Brong Ahafo,129.0,Ghana,103272.0,Dormaa Municipal,both,identical +140036,-2.25,7.25,GHA,1322.0,Brong Ahafo,129.0,Ghana,103286.0,Tano North,-2.25,7.25,GHA,1322.0,Brong Ahafo,129.0,Ghana,103286.0,Tano North,both,identical +140037,-1.75,7.25,GHA,1321.0,Ashanti,129.0,Ghana,103259.0,Offinso North,-1.75,7.25,GHA,1321.0,Ashanti,129.0,Ghana,103259.0,Offinso North,both,identical +140038,-1.25,7.25,GHA,1321.0,Ashanti,129.0,Ghana,103262.0,Sekyere Central,-1.25,7.25,GHA,1321.0,Ashanti,129.0,Ghana,103262.0,Sekyere Central,both,identical +140039,-0.75,7.25,GHA,1321.0,Ashanti,129.0,Ghana,103261.0,Sekyere Afram Plains North,-0.75,7.25,GHA,1321.0,Ashanti,129.0,Ghana,103261.0,Sekyere Afram Plains North,both,identical +140040,-0.25,7.25,GHA,1322.0,Brong Ahafo,129.0,Ghana,103281.0,Sene East,-0.25,7.25,GHA,1322.0,Brong Ahafo,129.0,Ghana,103281.0,Sene East,both,identical +140041,0.25,7.25,GHA,1329.0,Volta,129.0,Ghana,103408.0,Biakoye,0.25,7.25,GHA,1329.0,Volta,129.0,Ghana,103408.0,Biakoye,both,identical +140042,0.75,7.25,TGO,1648.0,Plateaux,162.0,Togo,105955.0,Kpélé,0.75,7.25,TGO,1648.0,Plateaux,162.0,Togo,105955.0,Kpélé,both,identical +140043,1.25,7.25,TGO,1648.0,Plateaux,162.0,Togo,105953.0,Haho,1.25,7.25,TGO,1648.0,Plateaux,162.0,Togo,105953.0,Haho,both,identical +140044,1.75,7.25,BEN,1082.0,Zou,105.0,Benin,101786.0,Djidja,1.75,7.25,BEN,1082.0,Zou,105.0,Benin,101786.0,Djidja,both,identical +140045,2.25,7.25,BEN,1082.0,Zou,105.0,Benin,101789.0,Zangnanado,2.25,7.25,BEN,1082.0,Zou,105.0,Benin,101789.0,Zangnanado,both,identical +140046,2.75,7.25,BEN,1081.0,Plateau,105.0,Benin,101779.0,Kétou,2.75,7.25,NGA,1544.0,Ogun,151.0,Nigeria,105197.0,Egbado North,both,country_reassignment +140047,3.25,7.25,NGA,1544.0,Ogun,151.0,Nigeria,105194.0,Abeokuta North,3.25,7.25,NGA,1544.0,Ogun,151.0,Nigeria,105194.0,Abeokuta North,both,identical +140048,3.75,7.25,NGA,1544.0,Ogun,151.0,Nigeria,105209.0,Odeda,3.75,7.25,NGA,1544.0,Ogun,151.0,Nigeria,105209.0,Odeda,both,identical +140049,4.25,7.25,NGA,1546.0,Osun,151.0,Nigeria,105235.0,Ayedaade,4.25,7.25,NGA,1546.0,Osun,151.0,Nigeria,105235.0,Ayedaade,both,identical +140050,4.75,7.25,NGA,1546.0,Osun,151.0,Nigeria,105245.0,Ife South,4.75,7.25,NGA,1546.0,Osun,151.0,Nigeria,105245.0,Ife South,both,identical +140051,5.25,7.25,NGA,1545.0,Ondo,151.0,Nigeria,105221.0,Idanre,5.25,7.25,NGA,1545.0,Ondo,151.0,Nigeria,105221.0,Idanre,both,identical +140052,5.75,7.25,NGA,1545.0,Ondo,151.0,Nigeria,105230.0,Ose,5.75,7.25,NGA,1545.0,Ondo,151.0,Nigeria,105230.0,Ose,both,identical +140053,6.25,7.25,NGA,1528.0,Edo,151.0,Nigeria,104855.0,Akoko-Edo,6.25,7.25,NGA,1528.0,Edo,151.0,Nigeria,104855.0,Akoko-Edo,both,identical +140054,6.75,7.25,NGA,1539.0,Kogi,151.0,Nigeria,105112.0,Ofu,6.75,7.25,NGA,1539.0,Kogi,151.0,Nigeria,105112.0,Ofu,both,identical +140055,7.25,7.25,NGA,1539.0,Kogi,151.0,Nigeria,105112.0,Ofu,7.25,7.25,NGA,1539.0,Kogi,151.0,Nigeria,105112.0,Ofu,both,identical +140056,7.75,7.25,NGA,1523.0,Benue,151.0,Nigeria,105101.0,Ankpa,7.75,7.25,NGA,1539.0,Kogi,151.0,Nigeria,105101.0,Ankpa,both,admin_reallocation +140057,8.25,7.25,NGA,1523.0,Benue,151.0,Nigeria,104755.0,Gwer East,8.25,7.25,NGA,1523.0,Benue,151.0,Nigeria,104755.0,Gwer East,both,identical +140058,8.75,7.25,NGA,1523.0,Benue,151.0,Nigeria,104753.0,Gboko,8.75,7.25,NGA,1523.0,Benue,151.0,Nigeria,104753.0,Gboko,both,identical +140059,9.25,7.25,NGA,1523.0,Benue,151.0,Nigeria,104757.0,Katsina-Ala,9.25,7.25,NGA,1523.0,Benue,151.0,Nigeria,104757.0,Katsina-Ala,both,identical +140060,9.75,7.25,NGA,1523.0,Benue,151.0,Nigeria,104757.0,Katsina-Ala,9.75,7.25,NGA,1523.0,Benue,151.0,Nigeria,104757.0,Katsina-Ala,both,identical +140061,10.25,7.25,NGA,1551.0,Taraba,151.0,Nigeria,105366.0,Kurmi,10.25,7.25,NGA,1551.0,Taraba,151.0,Nigeria,105366.0,Kurmi,both,identical +140062,10.75,7.25,NGA,1551.0,Taraba,151.0,Nigeria,105366.0,Kurmi,10.75,7.25,NGA,1551.0,Taraba,151.0,Nigeria,105366.0,Kurmi,both,identical +140063,11.25,7.25,NGA,1551.0,Taraba,151.0,Nigeria,105361.0,Gashaka,11.25,7.25,NGA,1551.0,Taraba,151.0,Nigeria,105361.0,Gashaka,both,identical +140064,11.75,7.25,NGA,1551.0,Taraba,151.0,Nigeria,105361.0,Gashaka,11.75,7.25,NGA,1551.0,Taraba,151.0,Nigeria,105361.0,Gashaka,both,identical +140065,12.25,7.25,CMR,1142.0,Adamaoua,112.0,Cameroon,102008.0,Faro-Et-Déo,12.25,7.25,CMR,1142.0,Adamaoua,112.0,Cameroon,102008.0,Faro-Et-Déo,both,identical +140066,12.75,7.25,CMR,1142.0,Adamaoua,112.0,Cameroon,102008.0,Faro-Et-Déo,12.75,7.25,CMR,1142.0,Adamaoua,112.0,Cameroon,102008.0,Faro-Et-Déo,both,identical +140067,13.25,7.25,CMR,1142.0,Adamaoua,112.0,Cameroon,102011.0,Vina,13.25,7.25,CMR,1142.0,Adamaoua,112.0,Cameroon,102011.0,Vina,both,identical +140068,13.75,7.25,CMR,1142.0,Adamaoua,112.0,Cameroon,102011.0,Vina,13.75,7.25,CMR,1142.0,Adamaoua,112.0,Cameroon,102011.0,Vina,both,identical +140069,14.25,7.25,CMR,1142.0,Adamaoua,112.0,Cameroon,102011.0,Vina,14.25,7.25,CMR,1142.0,Adamaoua,112.0,Cameroon,102011.0,Vina,both,identical +140070,14.75,7.25,CMR,1147.0,Nord,112.0,Cameroon,102039.0,Mayo-Rey,14.75,7.25,CMR,1147.0,Nord,112.0,Cameroon,102039.0,Mayo-Rey,both,identical +140071,15.25,7.25,CMR,1147.0,Nord,112.0,Cameroon,102039.0,Mayo-Rey,15.25,7.25,CAF,1158.0,Yadé,113.0,Central African Republic,102081.0,Ouham-Pendé,both,country_reassignment +140072,15.75,7.25,CAF,1158.0,Yadé,113.0,Central African Republic,102081.0,Ouham-Pendé,15.75,7.25,CAF,1158.0,Yadé,113.0,Central African Republic,102081.0,Ouham-Pendé,both,identical +140073,16.25,7.25,CAF,1158.0,Yadé,113.0,Central African Republic,102081.0,Ouham-Pendé,16.25,7.25,CAF,1158.0,Yadé,113.0,Central African Republic,102081.0,Ouham-Pendé,both,identical +140074,16.75,7.25,CAF,1158.0,Yadé,113.0,Central African Republic,102081.0,Ouham-Pendé,16.75,7.25,CAF,1158.0,Yadé,113.0,Central African Republic,102081.0,Ouham-Pendé,both,identical +140075,17.25,7.25,CAF,1158.0,Yadé,113.0,Central African Republic,102080.0,Ouham,17.25,7.25,CAF,1158.0,Yadé,113.0,Central African Republic,102080.0,Ouham,both,identical +140076,17.75,7.25,CAF,1158.0,Yadé,113.0,Central African Republic,102080.0,Ouham,17.75,7.25,CAF,1158.0,Yadé,113.0,Central African Republic,102080.0,Ouham,both,identical +140077,18.25,7.25,CAF,1158.0,Yadé,113.0,Central African Republic,102080.0,Ouham,18.25,7.25,CAF,1158.0,Yadé,113.0,Central African Republic,102080.0,Ouham,both,identical +140078,18.75,7.25,CAF,1158.0,Yadé,113.0,Central African Republic,102080.0,Ouham,18.75,7.25,CAF,1158.0,Yadé,113.0,Central African Republic,102080.0,Ouham,both,identical +140079,19.25,7.25,CAF,1156.0,Kagas,113.0,Central African Republic,102076.0,Nana-Grébizi,19.25,7.25,CAF,1156.0,Kagas,113.0,Central African Republic,102076.0,Nana-Grébizi,both,identical +140080,19.75,7.25,CAF,1156.0,Kagas,113.0,Central African Republic,102076.0,Nana-Grébizi,19.75,7.25,CAF,1156.0,Kagas,113.0,Central African Republic,102076.0,Nana-Grébizi,both,identical +140081,20.25,7.25,CAF,1154.0,Fertit,113.0,Central African Republic,102069.0,Bamingui-Bangoran,20.25,7.25,CAF,1154.0,Fertit,113.0,Central African Republic,102069.0,Bamingui-Bangoran,both,identical +140082,20.75,7.25,CAF,1154.0,Fertit,113.0,Central African Republic,102069.0,Bamingui-Bangoran,20.75,7.25,CAF,1154.0,Fertit,113.0,Central African Republic,102069.0,Bamingui-Bangoran,both,identical +140083,21.25,7.25,CAF,1156.0,Kagas,113.0,Central African Republic,102077.0,Ouaka,21.25,7.25,CAF,1156.0,Kagas,113.0,Central African Republic,102077.0,Ouaka,both,identical +140084,21.75,7.25,CAF,1154.0,Fertit,113.0,Central African Republic,102070.0,Haute-Kotto,21.75,7.25,CAF,1154.0,Fertit,113.0,Central African Republic,102070.0,Haute-Kotto,both,identical +140085,22.25,7.25,CAF,1154.0,Fertit,113.0,Central African Republic,102070.0,Haute-Kotto,22.25,7.25,CAF,1154.0,Fertit,113.0,Central African Republic,102070.0,Haute-Kotto,both,identical +140086,22.75,7.25,CAF,1154.0,Fertit,113.0,Central African Republic,102070.0,Haute-Kotto,22.75,7.25,CAF,1154.0,Fertit,113.0,Central African Republic,102070.0,Haute-Kotto,both,identical +140087,23.25,7.25,CAF,1154.0,Fertit,113.0,Central African Republic,102070.0,Haute-Kotto,23.25,7.25,CAF,1154.0,Fertit,113.0,Central African Republic,102070.0,Haute-Kotto,both,identical +140088,23.75,7.25,CAF,1154.0,Fertit,113.0,Central African Republic,102070.0,Haute-Kotto,23.75,7.25,CAF,1154.0,Fertit,113.0,Central African Republic,102070.0,Haute-Kotto,both,identical +140089,24.25,7.25,CAF,1154.0,Fertit,113.0,Central African Republic,102070.0,Haute-Kotto,24.25,7.25,CAF,1154.0,Fertit,113.0,Central African Republic,102070.0,Haute-Kotto,both,identical +140090,24.75,7.25,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102073.0,Haut-Mbomou,24.75,7.25,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102073.0,Haut-Mbomou,both,identical +140091,25.25,7.25,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102073.0,Haut-Mbomou,25.25,7.25,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102073.0,Haut-Mbomou,both,identical +140092,25.75,7.25,SSD,1625.0,Western Bahr El Ghazal,160.0,South Sudan,105727.0,Raja,25.75,7.25,SSD,1625.0,Western Bahr El Ghazal,160.0,South Sudan,105727.0,Raja,both,identical +140093,26.25,7.25,SSD,1625.0,Western Bahr El Ghazal,160.0,South Sudan,105727.0,Raja,26.25,7.25,SSD,1625.0,Western Bahr El Ghazal,160.0,South Sudan,105727.0,Raja,both,identical +140094,26.75,7.25,SSD,1625.0,Western Bahr El Ghazal,160.0,South Sudan,105728.0,Wau,26.75,7.25,SSD,1625.0,Western Bahr El Ghazal,160.0,South Sudan,105728.0,Wau,both,identical +140095,27.25,7.25,SSD,1625.0,Western Bahr El Ghazal,160.0,South Sudan,105728.0,Wau,27.25,7.25,SSD,1625.0,Western Bahr El Ghazal,160.0,South Sudan,105728.0,Wau,both,identical +140096,27.75,7.25,SSD,1625.0,Western Bahr El Ghazal,160.0,South Sudan,105728.0,Wau,27.75,7.25,SSD,1625.0,Western Bahr El Ghazal,160.0,South Sudan,105728.0,Wau,both,identical +140097,28.25,7.25,SSD,1625.0,Western Bahr El Ghazal,160.0,South Sudan,105726.0,Jur River,28.25,7.25,SSD,1625.0,Western Bahr El Ghazal,160.0,South Sudan,105726.0,Jur River,both,identical +140098,28.75,7.25,SSD,1624.0,Warrap,160.0,South Sudan,105724.0,Tonj South,28.75,7.25,SSD,1624.0,Warrap,160.0,South Sudan,105724.0,Tonj South,both,identical +140099,29.25,7.25,SSD,1620.0,Lakes,160.0,South Sudan,105687.0,Cueibet,29.25,7.25,SSD,1620.0,Lakes,160.0,South Sudan,105687.0,Cueibet,both,identical +140100,29.75,7.25,SSD,1620.0,Lakes,160.0,South Sudan,105688.0,Rumbek Centre,29.75,7.25,SSD,1620.0,Lakes,160.0,South Sudan,105688.0,Rumbek Centre,both,identical +140101,30.25,7.25,SSD,1622.0,Unity,160.0,South Sudan,105705.0,Panyijiar,30.25,7.25,SSD,1622.0,Unity,160.0,South Sudan,105705.0,Panyijiar,both,identical +140102,30.75,7.25,SSD,1619.0,Jonglei,160.0,South Sudan,105679.0,Duk,30.75,7.25,SSD,1619.0,Jonglei,160.0,South Sudan,105679.0,Duk,both,identical +140103,31.25,7.25,SSD,1619.0,Jonglei,160.0,South Sudan,105684.0,Twic East,31.25,7.25,SSD,1619.0,Jonglei,160.0,South Sudan,105684.0,Twic East,both,identical +140104,31.75,7.25,SSD,1619.0,Jonglei,160.0,South Sudan,105685.0,Uror,31.75,7.25,SSD,1619.0,Jonglei,160.0,South Sudan,105685.0,Uror,both,identical +140105,32.25,7.25,SSD,1619.0,Jonglei,160.0,South Sudan,105685.0,Uror,32.25,7.25,SSD,1619.0,Jonglei,160.0,South Sudan,105685.0,Uror,both,identical +140106,32.75,7.25,SSD,1619.0,Jonglei,160.0,South Sudan,105682.0,Pibor,32.75,7.25,SSD,1619.0,Jonglei,160.0,South Sudan,105682.0,Pibor,both,identical +140107,33.25,7.25,SSD,1619.0,Jonglei,160.0,South Sudan,105675.0,Akobo,33.25,7.25,SSD,1619.0,Jonglei,160.0,South Sudan,105675.0,Akobo,both,identical +140108,33.75,7.25,SSD,1619.0,Jonglei,160.0,South Sudan,105683.0,Pochalla,33.75,7.25,SSD,1619.0,Jonglei,160.0,South Sudan,105683.0,Pochalla,both,identical +140109,34.25,7.25,ETH,1294.0,Gambela,124.0,Ethiopia,103067.0,Agnewak,34.25,7.25,ETH,1294.0,Gambela,124.0,Ethiopia,103067.0,Agnewak,both,identical +140110,34.75,7.25,ETH,1294.0,Gambela,124.0,Ethiopia,103067.0,Agnewak,34.75,7.25,ETH,1294.0,Gambela,124.0,Ethiopia,103067.0,Agnewak,both,identical +140111,35.25,7.25,ETH,1294.0,Gambela,124.0,Ethiopia,103069.0,Majang,35.25,7.25,ETH,1294.0,Gambela,124.0,Ethiopia,103069.0,Majang,both,identical +140112,35.75,7.25,ETH,1300.0,South West Ethiopia,124.0,Ethiopia,103124.0,Kefa,35.75,7.25,ETH,1300.0,South West Ethiopia,124.0,Ethiopia,103124.0,Kefa,both,identical +140113,36.25,7.25,ETH,1300.0,South West Ethiopia,124.0,Ethiopia,103124.0,Kefa,36.25,7.25,ETH,1300.0,South West Ethiopia,124.0,Ethiopia,103124.0,Kefa,both,identical +140114,36.75,7.25,ETH,1300.0,South West Ethiopia,124.0,Ethiopia,103084.0,Jimma,36.75,7.25,ETH,1296.0,Oromia,124.0,Ethiopia,103084.0,Jimma,both,admin_reallocation +140115,37.25,7.25,ETH,1300.0,South West Ethiopia,124.0,Ethiopia,103123.0,Dawuro,37.25,7.25,ETH,1300.0,South West Ethiopia,124.0,Ethiopia,103123.0,Dawuro,both,identical +140116,37.75,7.25,ETH,1298.0,Snnp,124.0,Ethiopia,103105.0,Kembata Tembaro,37.75,7.25,ETH,1298.0,Snnp,124.0,Ethiopia,103105.0,Kembata Tembaro,both,identical +140117,38.25,7.25,ETH,1296.0,Oromia,124.0,Ethiopia,103088.0,West Arsi,38.25,7.25,ETH,1296.0,Oromia,124.0,Ethiopia,103088.0,West Arsi,both,identical +140118,38.75,7.25,ETH,1296.0,Oromia,124.0,Ethiopia,103088.0,West Arsi,38.75,7.25,ETH,1296.0,Oromia,124.0,Ethiopia,103088.0,West Arsi,both,identical +140119,39.25,7.25,ETH,1296.0,Oromia,124.0,Ethiopia,103088.0,West Arsi,39.25,7.25,ETH,1296.0,Oromia,124.0,Ethiopia,103088.0,West Arsi,both,identical +140120,39.75,7.25,ETH,1296.0,Oromia,124.0,Ethiopia,103073.0,Bale,39.75,7.25,ETH,1296.0,Oromia,124.0,Ethiopia,103073.0,Bale,both,identical +140121,40.25,7.25,ETH,1296.0,Oromia,124.0,Ethiopia,103073.0,Bale,40.25,7.25,ETH,1296.0,Oromia,124.0,Ethiopia,103073.0,Bale,both,identical +140122,40.75,7.25,ETH,1296.0,Oromia,124.0,Ethiopia,103076.0,East Bale,40.75,7.25,ETH,1296.0,Oromia,124.0,Ethiopia,103076.0,East Bale,both,identical +140123,41.25,7.25,ETH,1296.0,Oromia,124.0,Ethiopia,103076.0,East Bale,41.25,7.25,ETH,1296.0,Oromia,124.0,Ethiopia,103076.0,East Bale,both,identical +140124,41.75,7.25,ETH,1296.0,Oromia,124.0,Ethiopia,103076.0,East Bale,41.75,7.25,ETH,1296.0,Oromia,124.0,Ethiopia,103076.0,East Bale,both,identical +140125,42.25,7.25,ETH,1299.0,Somali,124.0,Ethiopia,103114.0,Erer,42.25,7.25,ETH,1299.0,Somali,124.0,Ethiopia,103114.0,Erer,both,identical +140126,42.75,7.25,ETH,1299.0,Somali,124.0,Ethiopia,103119.0,Nogob,42.75,7.25,ETH,1299.0,Somali,124.0,Ethiopia,103119.0,Nogob,both,identical +140127,43.25,7.25,ETH,1299.0,Somali,124.0,Ethiopia,103119.0,Nogob,43.25,7.25,ETH,1299.0,Somali,124.0,Ethiopia,103119.0,Nogob,both,identical +140128,43.75,7.25,ETH,1299.0,Somali,124.0,Ethiopia,103117.0,Korahe,43.75,7.25,ETH,1299.0,Somali,124.0,Ethiopia,103117.0,Korahe,both,identical +140129,44.25,7.25,ETH,1299.0,Somali,124.0,Ethiopia,103117.0,Korahe,44.25,7.25,ETH,1299.0,Somali,124.0,Ethiopia,103117.0,Korahe,both,identical +140130,44.75,7.25,ETH,1299.0,Somali,124.0,Ethiopia,103117.0,Korahe,44.75,7.25,ETH,1299.0,Somali,124.0,Ethiopia,103117.0,Korahe,both,identical +140131,45.25,7.25,ETH,1299.0,Somali,124.0,Ethiopia,103113.0,Doolo,45.25,7.25,ETH,1299.0,Somali,124.0,Ethiopia,103113.0,Doolo,both,identical +140132,45.75,7.25,ETH,1299.0,Somali,124.0,Ethiopia,103113.0,Doolo,45.75,7.25,ETH,1299.0,Somali,124.0,Ethiopia,103113.0,Doolo,both,identical +140133,46.25,7.25,ETH,1299.0,Somali,124.0,Ethiopia,103113.0,Doolo,46.25,7.25,ETH,1299.0,Somali,124.0,Ethiopia,103113.0,Doolo,both,identical +140134,46.75,7.25,ETH,1299.0,Somali,124.0,Ethiopia,103113.0,Doolo,46.75,7.25,ETH,1299.0,Somali,124.0,Ethiopia,103113.0,Doolo,both,identical +140135,47.25,7.25,SOM,1601.0,Mudug,158.0,Somalia,105588.0,Galdogob,47.25,7.25,ETH,1299.0,Somali,124.0,Ethiopia,103113.0,Doolo,both,country_reassignment +140136,47.75,7.25,SOM,1601.0,Mudug,158.0,Somalia,105587.0,Gaalkacyo,47.75,7.25,SOM,1601.0,Mudug,158.0,Somalia,105587.0,Gaalkacyo,both,identical +140137,48.25,7.25,SOM,1601.0,Mudug,158.0,Somalia,105587.0,Gaalkacyo,48.25,7.25,SOM,1601.0,Mudug,158.0,Somalia,105587.0,Gaalkacyo,both,identical +140138,48.75,7.25,SOM,1601.0,Mudug,158.0,Somalia,105590.0,Jariiban,48.75,7.25,SOM,1601.0,Mudug,158.0,Somalia,105590.0,Jariiban,both,identical +140139,49.25,7.25,SOM,1601.0,Mudug,158.0,Somalia,105590.0,Jariiban,49.25,7.25,SOM,1601.0,Mudug,158.0,Somalia,105590.0,Jariiban,both,identical +140140,49.75,7.25,SOM,1601.0,Mudug,158.0,Somalia,105590.0,Jariiban,49.75,7.25,SOM,1601.0,Mudug,158.0,Somalia,105590.0,Jariiban,both,identical +140735,-12.75,7.75,SLE,1587.0,Southern,157.0,Sierra Leone,105531.0,Moyamba,-12.75,7.75,SLE,1587.0,Southern,157.0,Sierra Leone,105531.0,Moyamba,both,identical +140736,-12.25,7.75,SLE,1587.0,Southern,157.0,Sierra Leone,105530.0,Bonthe,-12.25,7.75,SLE,1587.0,Southern,157.0,Sierra Leone,105530.0,Bonthe,both,identical +140737,-11.75,7.75,SLE,1587.0,Southern,157.0,Sierra Leone,105529.0,Bo,-11.75,7.75,SLE,1587.0,Southern,157.0,Sierra Leone,105529.0,Bo,both,identical +140738,-11.25,7.75,SLE,1584.0,Eastern,157.0,Sierra Leone,105520.0,Kailahun,-11.25,7.75,SLE,1584.0,Eastern,157.0,Sierra Leone,105520.0,Kailahun,both,identical +140739,-10.75,7.75,SLE,1584.0,Eastern,157.0,Sierra Leone,105520.0,Kailahun,-10.75,7.75,SLE,1584.0,Eastern,157.0,Sierra Leone,105520.0,Kailahun,both,identical +140740,-10.25,7.75,LBR,1412.0,Gbarpolu,139.0,Liberia,103917.0,Kongba,-10.25,7.75,LBR,1412.0,Gbarpolu,139.0,Liberia,103917.0,Kongba,both,identical +140741,-9.75,7.75,LBR,1417.0,Lofa,139.0,Liberia,103963.0,Zorzor,-9.75,7.75,LBR,1417.0,Lofa,139.0,Liberia,103963.0,Zorzor,both,identical +140742,-9.25,7.75,GIN,1339.0,Nzerekore,131.0,Guinea,103484.0,Yomou,-9.25,7.75,GIN,1339.0,Nzerekore,131.0,Guinea,103484.0,Yomou,both,identical +140743,-8.75,7.75,GIN,1339.0,Nzerekore,131.0,Guinea,103483.0,Nzerekore,-8.75,7.75,GIN,1339.0,Nzerekore,131.0,Guinea,103483.0,Nzerekore,both,identical +140744,-8.25,7.75,GIN,1339.0,Nzerekore,131.0,Guinea,103481.0,Lola,-8.25,7.75,GIN,1339.0,Nzerekore,131.0,Guinea,103481.0,Lola,both,identical +140745,-7.75,7.75,CIV,1205.0,Montagnes,117.0,Côte D'Ivoire,102277.0,Tonkpi,-7.75,7.75,CIV,1205.0,Montagnes,117.0,Côte D'Ivoire,102277.0,Tonkpi,both,identical +140746,-7.25,7.75,CIV,1205.0,Montagnes,117.0,Côte D'Ivoire,102277.0,Tonkpi,-7.25,7.75,CIV,1205.0,Montagnes,117.0,Côte D'Ivoire,102277.0,Tonkpi,both,identical +140747,-6.75,7.75,CIV,1206.0,Sassandra-Marahoué,117.0,Côte D'Ivoire,102278.0,Haut-Sassandra,-6.75,7.75,CIV,1206.0,Sassandra-Marahoué,117.0,Côte D'Ivoire,102278.0,Haut-Sassandra,both,identical +140748,-6.25,7.75,CIV,1209.0,Woroba,117.0,Côte D'Ivoire,102286.0,Béré,-6.25,7.75,CIV,1209.0,Woroba,117.0,Côte D'Ivoire,102286.0,Béré,both,identical +140749,-5.75,7.75,CIV,1208.0,Vallée Du Bandama,117.0,Côte D'Ivoire,102283.0,Gbêkê,-5.75,7.75,CIV,1208.0,Vallée Du Bandama,117.0,Côte D'Ivoire,102283.0,Gbêkê,both,identical +140750,-5.25,7.75,CIV,1208.0,Vallée Du Bandama,117.0,Côte D'Ivoire,102283.0,Gbêkê,-5.25,7.75,CIV,1208.0,Vallée Du Bandama,117.0,Côte D'Ivoire,102283.0,Gbêkê,both,identical +140751,-4.75,7.75,CIV,1208.0,Vallée Du Bandama,117.0,Côte D'Ivoire,102283.0,Gbêkê,-4.75,7.75,CIV,1208.0,Vallée Du Bandama,117.0,Côte D'Ivoire,102283.0,Gbêkê,both,identical +140752,-4.25,7.75,CIV,1203.0,Lacs,117.0,Côte D'Ivoire,102269.0,Iffou,-4.25,7.75,CIV,1203.0,Lacs,117.0,Côte D'Ivoire,102269.0,Iffou,both,identical +140753,-3.75,7.75,CIV,1211.0,Zanzan,117.0,Côte D'Ivoire,102290.0,Gontougo,-3.75,7.75,CIV,1211.0,Zanzan,117.0,Côte D'Ivoire,102290.0,Gontougo,both,identical +140754,-3.25,7.75,CIV,1211.0,Zanzan,117.0,Côte D'Ivoire,102290.0,Gontougo,-3.25,7.75,CIV,1211.0,Zanzan,117.0,Côte D'Ivoire,102290.0,Gontougo,both,identical +140755,-2.75,7.75,GHA,1322.0,Brong Ahafo,129.0,Ghana,103274.0,Jaman North,-2.75,7.75,CIV,1211.0,Zanzan,117.0,Côte D'Ivoire,102290.0,Gontougo,both,country_reassignment +140756,-2.25,7.75,GHA,1322.0,Brong Ahafo,129.0,Ghana,103285.0,Tain,-2.25,7.75,GHA,1322.0,Brong Ahafo,129.0,Ghana,103285.0,Tain,both,identical +140757,-1.75,7.75,GHA,1322.0,Brong Ahafo,129.0,Ghana,103277.0,Kintampo South,-1.75,7.75,GHA,1322.0,Brong Ahafo,129.0,Ghana,103277.0,Kintampo South,both,identical +140758,-1.25,7.75,GHA,1322.0,Brong Ahafo,129.0,Ghana,103268.0,Atebubu Amantin,-1.25,7.75,GHA,1322.0,Brong Ahafo,129.0,Ghana,103268.0,Atebubu Amantin,both,identical +140759,-0.75,7.75,GHA,1322.0,Brong Ahafo,129.0,Ghana,103282.0,Sene West,-0.75,7.75,GHA,1322.0,Brong Ahafo,129.0,Ghana,103282.0,Sene West,both,identical +140760,-0.25,7.75,GHA,1322.0,Brong Ahafo,129.0,Ghana,103281.0,Sene East,-0.25,7.75,GHA,1322.0,Brong Ahafo,129.0,Ghana,103281.0,Sene East,both,identical +140761,0.25,7.75,GHA,1329.0,Volta,129.0,Ghana,103419.0,Krachi East,0.25,7.75,GHA,1329.0,Volta,129.0,Ghana,103419.0,Krachi East,both,identical +140762,0.75,7.75,TGO,1648.0,Plateaux,162.0,Togo,105948.0,Akébou,0.75,7.75,TGO,1648.0,Plateaux,162.0,Togo,105948.0,Akébou,both,identical +140763,1.25,7.75,TGO,1648.0,Plateaux,162.0,Togo,105950.0,Anié,1.25,7.75,TGO,1648.0,Plateaux,162.0,Togo,105950.0,Anié,both,identical +140764,1.75,7.75,BEN,1075.0,Collines,105.0,Benin,101749.0,Savalou,1.75,7.75,BEN,1075.0,Collines,105.0,Benin,101749.0,Savalou,both,identical +140765,2.25,7.75,BEN,1075.0,Collines,105.0,Benin,101746.0,Dassa-Zoumè,2.25,7.75,BEN,1075.0,Collines,105.0,Benin,101746.0,Dassa-Zoumè,both,identical +140766,2.75,7.75,NGA,1544.0,Ogun,151.0,Nigeria,105206.0,Imeko-Afon,2.75,7.75,NGA,1544.0,Ogun,151.0,Nigeria,105206.0,Imeko-Afon,both,identical +140767,3.25,7.75,NGA,1547.0,Oyo,151.0,Nigeria,105274.0,Ibarapa North,3.25,7.75,NGA,1547.0,Oyo,151.0,Nigeria,105274.0,Ibarapa North,both,identical +140768,3.75,7.75,NGA,1547.0,Oyo,151.0,Nigeria,105277.0,Iseyin,3.75,7.75,NGA,1547.0,Oyo,151.0,Nigeria,105277.0,Iseyin,both,identical +140769,4.25,7.75,NGA,1546.0,Osun,151.0,Nigeria,105241.0,Ejigbo,4.25,7.75,NGA,1546.0,Osun,151.0,Nigeria,105241.0,Ejigbo,both,identical +140770,4.75,7.75,NGA,1546.0,Osun,151.0,Nigeria,105255.0,Obokun,4.75,7.75,NGA,1546.0,Osun,151.0,Nigeria,105255.0,Obokun,both,identical +140771,5.25,7.75,NGA,1529.0,Ekiti,151.0,Nigeria,104888.0,Oye,5.25,7.75,NGA,1529.0,Ekiti,151.0,Nigeria,104888.0,Oye,both,identical +140772,5.75,7.75,NGA,1539.0,Kogi,151.0,Nigeria,105107.0,Ijumu,5.75,7.75,NGA,1539.0,Kogi,151.0,Nigeria,105107.0,Ijumu,both,identical +140773,6.25,7.75,NGA,1539.0,Kogi,151.0,Nigeria,105108.0,Kabba/Bunu,6.25,7.75,NGA,1539.0,Kogi,151.0,Nigeria,105108.0,Kabba/Bunu,both,identical +140774,6.75,7.75,NGA,1539.0,Kogi,151.0,Nigeria,105102.0,Bassa,6.75,7.75,NGA,1539.0,Kogi,151.0,Nigeria,105102.0,Bassa,both,identical +140775,7.25,7.75,NGA,1539.0,Kogi,151.0,Nigeria,105103.0,Dekina,7.25,7.75,NGA,1539.0,Kogi,151.0,Nigeria,105103.0,Dekina,both,identical +140776,7.75,7.75,NGA,1523.0,Benue,151.0,Nigeria,105117.0,Omala,7.75,7.75,NGA,1539.0,Kogi,151.0,Nigeria,105117.0,Omala,both,admin_reallocation +140777,8.25,7.75,NGA,1523.0,Benue,151.0,Nigeria,104756.0,Gwer West,8.25,7.75,NGA,1523.0,Benue,151.0,Nigeria,104756.0,Gwer West,both,identical +140778,8.75,7.75,NGA,1523.0,Benue,151.0,Nigeria,104754.0,Guma,8.75,7.75,NGA,1523.0,Benue,151.0,Nigeria,104754.0,Guma,both,identical +140779,9.25,7.75,NGA,1523.0,Benue,151.0,Nigeria,104760.0,Logo,9.25,7.75,NGA,1523.0,Benue,151.0,Nigeria,104760.0,Logo,both,identical +140780,9.75,7.75,NGA,1551.0,Taraba,151.0,Nigeria,105371.0,Wukari,9.75,7.75,NGA,1551.0,Taraba,151.0,Nigeria,105371.0,Wukari,both,identical +140781,10.25,7.75,NGA,1551.0,Taraba,151.0,Nigeria,105360.0,Donga,10.25,7.75,NGA,1551.0,Taraba,151.0,Nigeria,105360.0,Donga,both,identical +140782,10.75,7.75,NGA,1551.0,Taraba,151.0,Nigeria,105359.0,Bali,10.75,7.75,NGA,1551.0,Taraba,151.0,Nigeria,105359.0,Bali,both,identical +140783,11.25,7.75,NGA,1551.0,Taraba,151.0,Nigeria,105361.0,Gashaka,11.25,7.75,NGA,1551.0,Taraba,151.0,Nigeria,105361.0,Gashaka,both,identical +140784,11.75,7.75,NGA,1518.0,Adamawa,151.0,Nigeria,104666.0,Toungo,11.75,7.75,NGA,1518.0,Adamawa,151.0,Nigeria,104666.0,Toungo,both,identical +140785,12.25,7.75,CMR,1142.0,Adamaoua,112.0,Cameroon,102008.0,Faro-Et-Déo,12.25,7.75,CMR,1142.0,Adamaoua,112.0,Cameroon,102008.0,Faro-Et-Déo,both,identical +140786,12.75,7.75,CMR,1142.0,Adamaoua,112.0,Cameroon,102008.0,Faro-Et-Déo,12.75,7.75,CMR,1142.0,Adamaoua,112.0,Cameroon,102008.0,Faro-Et-Déo,both,identical +140787,13.25,7.75,CMR,1147.0,Nord,112.0,Cameroon,102037.0,Faro,13.25,7.75,CMR,1147.0,Nord,112.0,Cameroon,102037.0,Faro,both,identical +140788,13.75,7.75,CMR,1142.0,Adamaoua,112.0,Cameroon,102011.0,Vina,13.75,7.75,CMR,1142.0,Adamaoua,112.0,Cameroon,102011.0,Vina,both,identical +140789,14.25,7.75,CMR,1147.0,Nord,112.0,Cameroon,102039.0,Mayo-Rey,14.25,7.75,CMR,1147.0,Nord,112.0,Cameroon,102039.0,Mayo-Rey,both,identical +140790,14.75,7.75,CMR,1147.0,Nord,112.0,Cameroon,102039.0,Mayo-Rey,14.75,7.75,CMR,1147.0,Nord,112.0,Cameroon,102039.0,Mayo-Rey,both,identical +140791,15.25,7.75,CMR,1147.0,Nord,112.0,Cameroon,102039.0,Mayo-Rey,15.25,7.75,CMR,1147.0,Nord,112.0,Cameroon,102039.0,Mayo-Rey,both,identical +140792,15.75,7.75,TCD,1171.0,Logone Oriental,114.0,Chad,102120.0,Monts De Lam,15.75,7.75,TCD,1171.0,Logone Oriental,114.0,Chad,102120.0,Monts De Lam,both,identical +140793,16.25,7.75,TCD,1171.0,Logone Oriental,114.0,Chad,102120.0,Monts De Lam,16.25,7.75,TCD,1171.0,Logone Oriental,114.0,Chad,102120.0,Monts De Lam,both,identical +140794,16.75,7.75,TCD,1171.0,Logone Oriental,114.0,Chad,102118.0,La Nya Pendé,16.75,7.75,TCD,1171.0,Logone Oriental,114.0,Chad,102118.0,La Nya Pendé,both,identical +140795,17.25,7.75,CAF,1158.0,Yadé,113.0,Central African Republic,102080.0,Ouham,17.25,7.75,CAF,1158.0,Yadé,113.0,Central African Republic,102080.0,Ouham,both,identical +140796,17.75,7.75,CAF,1158.0,Yadé,113.0,Central African Republic,102080.0,Ouham,17.75,7.75,CAF,1158.0,Yadé,113.0,Central African Republic,102080.0,Ouham,both,identical +140797,18.25,7.75,CAF,1158.0,Yadé,113.0,Central African Republic,102080.0,Ouham,18.25,7.75,CAF,1158.0,Yadé,113.0,Central African Republic,102080.0,Ouham,both,identical +140798,18.75,7.75,CAF,1158.0,Yadé,113.0,Central African Republic,102080.0,Ouham,18.75,7.75,CAF,1158.0,Yadé,113.0,Central African Republic,102080.0,Ouham,both,identical +140799,19.25,7.75,CAF,1156.0,Kagas,113.0,Central African Republic,102076.0,Nana-Grébizi,19.25,7.75,CAF,1156.0,Kagas,113.0,Central African Republic,102076.0,Nana-Grébizi,both,identical +140800,19.75,7.75,CAF,1154.0,Fertit,113.0,Central African Republic,102069.0,Bamingui-Bangoran,19.75,7.75,CAF,1154.0,Fertit,113.0,Central African Republic,102069.0,Bamingui-Bangoran,both,identical +140801,20.25,7.75,CAF,1154.0,Fertit,113.0,Central African Republic,102069.0,Bamingui-Bangoran,20.25,7.75,CAF,1154.0,Fertit,113.0,Central African Republic,102069.0,Bamingui-Bangoran,both,identical +140802,20.75,7.75,CAF,1154.0,Fertit,113.0,Central African Republic,102069.0,Bamingui-Bangoran,20.75,7.75,CAF,1154.0,Fertit,113.0,Central African Republic,102069.0,Bamingui-Bangoran,both,identical +140803,21.25,7.75,CAF,1154.0,Fertit,113.0,Central African Republic,102070.0,Haute-Kotto,21.25,7.75,CAF,1154.0,Fertit,113.0,Central African Republic,102070.0,Haute-Kotto,both,identical +140804,21.75,7.75,CAF,1154.0,Fertit,113.0,Central African Republic,102070.0,Haute-Kotto,21.75,7.75,CAF,1154.0,Fertit,113.0,Central African Republic,102070.0,Haute-Kotto,both,identical +140805,22.25,7.75,CAF,1154.0,Fertit,113.0,Central African Republic,102070.0,Haute-Kotto,22.25,7.75,CAF,1154.0,Fertit,113.0,Central African Republic,102070.0,Haute-Kotto,both,identical +140806,22.75,7.75,CAF,1154.0,Fertit,113.0,Central African Republic,102070.0,Haute-Kotto,22.75,7.75,CAF,1154.0,Fertit,113.0,Central African Republic,102070.0,Haute-Kotto,both,identical +140807,23.25,7.75,CAF,1154.0,Fertit,113.0,Central African Republic,102070.0,Haute-Kotto,23.25,7.75,CAF,1154.0,Fertit,113.0,Central African Republic,102070.0,Haute-Kotto,both,identical +140808,23.75,7.75,CAF,1154.0,Fertit,113.0,Central African Republic,102070.0,Haute-Kotto,23.75,7.75,CAF,1154.0,Fertit,113.0,Central African Republic,102070.0,Haute-Kotto,both,identical +140809,24.25,7.75,CAF,1154.0,Fertit,113.0,Central African Republic,102070.0,Haute-Kotto,24.25,7.75,CAF,1154.0,Fertit,113.0,Central African Republic,102070.0,Haute-Kotto,both,identical +140810,24.75,7.75,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102073.0,Haut-Mbomou,24.75,7.75,CAF,1155.0,Haut-Oubangui,113.0,Central African Republic,102073.0,Haut-Mbomou,both,identical +140811,25.25,7.75,SSD,1625.0,Western Bahr El Ghazal,160.0,South Sudan,105727.0,Raja,25.25,7.75,SSD,1625.0,Western Bahr El Ghazal,160.0,South Sudan,105727.0,Raja,both,identical +140812,25.75,7.75,SSD,1625.0,Western Bahr El Ghazal,160.0,South Sudan,105727.0,Raja,25.75,7.75,SSD,1625.0,Western Bahr El Ghazal,160.0,South Sudan,105727.0,Raja,both,identical +140813,26.25,7.75,SSD,1625.0,Western Bahr El Ghazal,160.0,South Sudan,105727.0,Raja,26.25,7.75,SSD,1625.0,Western Bahr El Ghazal,160.0,South Sudan,105727.0,Raja,both,identical +140814,26.75,7.75,SSD,1625.0,Western Bahr El Ghazal,160.0,South Sudan,105727.0,Raja,26.75,7.75,SSD,1625.0,Western Bahr El Ghazal,160.0,South Sudan,105727.0,Raja,both,identical +140815,27.25,7.75,SSD,1625.0,Western Bahr El Ghazal,160.0,South Sudan,105728.0,Wau,27.25,7.75,SSD,1625.0,Western Bahr El Ghazal,160.0,South Sudan,105728.0,Wau,both,identical +140816,27.75,7.75,SSD,1625.0,Western Bahr El Ghazal,160.0,South Sudan,105728.0,Wau,27.75,7.75,SSD,1625.0,Western Bahr El Ghazal,160.0,South Sudan,105728.0,Wau,both,identical +140817,28.25,7.75,SSD,1625.0,Western Bahr El Ghazal,160.0,South Sudan,105726.0,Jur River,28.25,7.75,SSD,1625.0,Western Bahr El Ghazal,160.0,South Sudan,105726.0,Jur River,both,identical +140818,28.75,7.75,SSD,1624.0,Warrap,160.0,South Sudan,105723.0,Tonj North,28.75,7.75,SSD,1624.0,Warrap,160.0,South Sudan,105723.0,Tonj North,both,identical +140819,29.25,7.75,SSD,1624.0,Warrap,160.0,South Sudan,105722.0,Tonj East,29.25,7.75,SSD,1624.0,Warrap,160.0,South Sudan,105722.0,Tonj East,both,identical +140820,29.75,7.75,SSD,1620.0,Lakes,160.0,South Sudan,105690.0,Rumbek North,29.75,7.75,SSD,1620.0,Lakes,160.0,South Sudan,105690.0,Rumbek North,both,identical +140821,30.25,7.75,SSD,1622.0,Unity,160.0,South Sudan,105705.0,Panyijiar,30.25,7.75,SSD,1622.0,Unity,160.0,South Sudan,105705.0,Panyijiar,both,identical +140822,30.75,7.75,SSD,1619.0,Jonglei,160.0,South Sudan,105676.0,Ayod,30.75,7.75,SSD,1619.0,Jonglei,160.0,South Sudan,105676.0,Ayod,both,identical +140823,31.25,7.75,SSD,1619.0,Jonglei,160.0,South Sudan,105679.0,Duk,31.25,7.75,SSD,1619.0,Jonglei,160.0,South Sudan,105679.0,Duk,both,identical +140824,31.75,7.75,SSD,1619.0,Jonglei,160.0,South Sudan,105685.0,Uror,31.75,7.75,SSD,1619.0,Jonglei,160.0,South Sudan,105685.0,Uror,both,identical +140825,32.25,7.75,SSD,1619.0,Jonglei,160.0,South Sudan,105685.0,Uror,32.25,7.75,SSD,1619.0,Jonglei,160.0,South Sudan,105685.0,Uror,both,identical +140826,32.75,7.75,SSD,1619.0,Jonglei,160.0,South Sudan,105675.0,Akobo,32.75,7.75,SSD,1619.0,Jonglei,160.0,South Sudan,105675.0,Akobo,both,identical +140827,33.25,7.75,SSD,1619.0,Jonglei,160.0,South Sudan,105675.0,Akobo,33.25,7.75,SSD,1619.0,Jonglei,160.0,South Sudan,105675.0,Akobo,both,identical +140828,33.75,7.75,ETH,1294.0,Gambela,124.0,Ethiopia,103067.0,Agnewak,33.75,7.75,ETH,1294.0,Gambela,124.0,Ethiopia,103067.0,Agnewak,both,identical +140829,34.25,7.75,ETH,1294.0,Gambela,124.0,Ethiopia,103067.0,Agnewak,34.25,7.75,ETH,1294.0,Gambela,124.0,Ethiopia,103067.0,Agnewak,both,identical +140830,34.75,7.75,ETH,1294.0,Gambela,124.0,Ethiopia,103067.0,Agnewak,34.75,7.75,ETH,1294.0,Gambela,124.0,Ethiopia,103067.0,Agnewak,both,identical +140831,35.25,7.75,ETH,1296.0,Oromia,124.0,Ethiopia,103083.0,Ilu Aba Bora,35.25,7.75,ETH,1296.0,Oromia,124.0,Ethiopia,103083.0,Ilu Aba Bora,both,identical +140832,35.75,7.75,ETH,1300.0,South West Ethiopia,124.0,Ethiopia,103124.0,Kefa,35.75,7.75,ETH,1300.0,South West Ethiopia,124.0,Ethiopia,103124.0,Kefa,both,identical +140833,36.25,7.75,ETH,1296.0,Oromia,124.0,Ethiopia,103084.0,Jimma,36.25,7.75,ETH,1296.0,Oromia,124.0,Ethiopia,103084.0,Jimma,both,identical +140834,36.75,7.75,ETH,1296.0,Oromia,124.0,Ethiopia,103084.0,Jimma,36.75,7.75,ETH,1296.0,Oromia,124.0,Ethiopia,103084.0,Jimma,both,identical +140835,37.25,7.75,ETH,1296.0,Oromia,124.0,Ethiopia,103084.0,Jimma,37.25,7.75,ETH,1296.0,Oromia,124.0,Ethiopia,103084.0,Jimma,both,identical +140836,37.75,7.75,ETH,1298.0,Snnp,124.0,Ethiopia,103103.0,Hadiya,37.75,7.75,ETH,1298.0,Snnp,124.0,Ethiopia,103103.0,Hadiya,both,identical +140837,38.25,7.75,ETH,1298.0,Snnp,124.0,Ethiopia,103107.0,Siltie,38.25,7.75,ETH,1298.0,Snnp,124.0,Ethiopia,103107.0,Siltie,both,identical +140838,38.75,7.75,ETH,1296.0,Oromia,124.0,Ethiopia,103078.0,East Shewa,38.75,7.75,ETH,1296.0,Oromia,124.0,Ethiopia,103078.0,East Shewa,both,identical +140839,39.25,7.75,ETH,1296.0,Oromia,124.0,Ethiopia,103072.0,Arsi,39.25,7.75,ETH,1296.0,Oromia,124.0,Ethiopia,103072.0,Arsi,both,identical +140840,39.75,7.75,ETH,1296.0,Oromia,124.0,Ethiopia,103072.0,Arsi,39.75,7.75,ETH,1296.0,Oromia,124.0,Ethiopia,103072.0,Arsi,both,identical +140841,40.25,7.75,ETH,1296.0,Oromia,124.0,Ethiopia,103072.0,Arsi,40.25,7.75,ETH,1296.0,Oromia,124.0,Ethiopia,103072.0,Arsi,both,identical +140842,40.75,7.75,ETH,1296.0,Oromia,124.0,Ethiopia,103076.0,East Bale,40.75,7.75,ETH,1296.0,Oromia,124.0,Ethiopia,103076.0,East Bale,both,identical +140843,41.25,7.75,ETH,1296.0,Oromia,124.0,Ethiopia,103076.0,East Bale,41.25,7.75,ETH,1296.0,Oromia,124.0,Ethiopia,103076.0,East Bale,both,identical +140844,41.75,7.75,ETH,1296.0,Oromia,124.0,Ethiopia,103077.0,East Hararge,41.75,7.75,ETH,1296.0,Oromia,124.0,Ethiopia,103077.0,East Hararge,both,identical +140845,42.25,7.75,ETH,1299.0,Somali,124.0,Ethiopia,103114.0,Erer,42.25,7.75,ETH,1299.0,Somali,124.0,Ethiopia,103114.0,Erer,both,identical +140846,42.75,7.75,ETH,1299.0,Somali,124.0,Ethiopia,103119.0,Nogob,42.75,7.75,ETH,1299.0,Somali,124.0,Ethiopia,103119.0,Nogob,both,identical +140847,43.25,7.75,ETH,1299.0,Somali,124.0,Ethiopia,103116.0,Jarar,43.25,7.75,ETH,1299.0,Somali,124.0,Ethiopia,103116.0,Jarar,both,identical +140848,43.75,7.75,ETH,1299.0,Somali,124.0,Ethiopia,103116.0,Jarar,43.75,7.75,ETH,1299.0,Somali,124.0,Ethiopia,103116.0,Jarar,both,identical +140849,44.25,7.75,ETH,1299.0,Somali,124.0,Ethiopia,103116.0,Jarar,44.25,7.75,ETH,1299.0,Somali,124.0,Ethiopia,103116.0,Jarar,both,identical +140850,44.75,7.75,ETH,1299.0,Somali,124.0,Ethiopia,103116.0,Jarar,44.75,7.75,ETH,1299.0,Somali,124.0,Ethiopia,103116.0,Jarar,both,identical +140851,45.25,7.75,ETH,1299.0,Somali,124.0,Ethiopia,103116.0,Jarar,45.25,7.75,ETH,1299.0,Somali,124.0,Ethiopia,103116.0,Jarar,both,identical +140852,45.75,7.75,ETH,1299.0,Somali,124.0,Ethiopia,103113.0,Doolo,45.75,7.75,ETH,1299.0,Somali,124.0,Ethiopia,103113.0,Doolo,both,identical +140853,46.25,7.75,ETH,1299.0,Somali,124.0,Ethiopia,103113.0,Doolo,46.25,7.75,ETH,1299.0,Somali,124.0,Ethiopia,103113.0,Doolo,both,identical +140854,46.75,7.75,ETH,1299.0,Somali,124.0,Ethiopia,103113.0,Doolo,46.75,7.75,ETH,1299.0,Somali,124.0,Ethiopia,103113.0,Doolo,both,identical +140855,47.25,7.75,ETH,1299.0,Somali,124.0,Ethiopia,103113.0,Doolo,47.25,7.75,ETH,1299.0,Somali,124.0,Ethiopia,103113.0,Doolo,both,identical +140856,47.75,7.75,SOM,1602.0,Nugaal,158.0,Somalia,105592.0,Burtinle,47.75,7.75,ETH,1299.0,Somali,124.0,Ethiopia,103113.0,Doolo,both,country_reassignment +140857,48.25,7.75,SOM,1602.0,Nugaal,158.0,Somalia,105592.0,Burtinle,48.25,7.75,SOM,1602.0,Nugaal,158.0,Somalia,105592.0,Burtinle,both,identical +140858,48.75,7.75,SOM,1602.0,Nugaal,158.0,Somalia,105592.0,Burtinle,48.75,7.75,SOM,1602.0,Nugaal,158.0,Somalia,105592.0,Burtinle,both,identical +140859,49.25,7.75,SOM,1602.0,Nugaal,158.0,Somalia,105593.0,Eyl,49.25,7.75,SOM,1602.0,Nugaal,158.0,Somalia,105593.0,Eyl,both,identical +140860,49.75,7.75,SOM,1602.0,Nugaal,158.0,Somalia,105593.0,Eyl,49.75,7.75,SOM,1602.0,Nugaal,158.0,Somalia,105593.0,Eyl,both,identical +141454,-13.25,8.25,SLE,1588.0,Western,157.0,Sierra Leone,105533.0,Western Area Rural,-13.25,8.25,SLE,1588.0,Western,157.0,Sierra Leone,105533.0,Western Area Rural,both,identical +141455,-12.75,8.25,SLE,1587.0,Southern,157.0,Sierra Leone,105531.0,Moyamba,-12.75,8.25,SLE,1587.0,Southern,157.0,Sierra Leone,105531.0,Moyamba,both,identical +141456,-12.25,8.25,SLE,1587.0,Southern,157.0,Sierra Leone,105531.0,Moyamba,-12.25,8.25,SLE,1587.0,Southern,157.0,Sierra Leone,105531.0,Moyamba,both,identical +141457,-11.75,8.25,SLE,1587.0,Southern,157.0,Sierra Leone,105529.0,Bo,-11.75,8.25,SLE,1587.0,Southern,157.0,Sierra Leone,105529.0,Bo,both,identical +141458,-11.25,8.25,SLE,1584.0,Eastern,157.0,Sierra Leone,105520.0,Kailahun,-11.25,8.25,SLE,1584.0,Eastern,157.0,Sierra Leone,105520.0,Kailahun,both,identical +141459,-10.75,8.25,SLE,1584.0,Eastern,157.0,Sierra Leone,105520.0,Kailahun,-10.75,8.25,SLE,1584.0,Eastern,157.0,Sierra Leone,105520.0,Kailahun,both,identical +141460,-10.25,8.25,LBR,1417.0,Lofa,139.0,Liberia,103958.0,Kolahun,-10.25,8.25,LBR,1417.0,Lofa,139.0,Liberia,103958.0,Kolahun,both,identical +141461,-9.75,8.25,LBR,1417.0,Lofa,139.0,Liberia,103962.0,Voinjama,-9.75,8.25,LBR,1417.0,Lofa,139.0,Liberia,103962.0,Voinjama,both,identical +141462,-9.25,8.25,GIN,1339.0,Nzerekore,131.0,Guinea,103482.0,Macenta,-9.25,8.25,GIN,1339.0,Nzerekore,131.0,Guinea,103482.0,Macenta,both,identical +141463,-8.75,8.25,GIN,1339.0,Nzerekore,131.0,Guinea,103483.0,Nzerekore,-8.75,8.25,GIN,1339.0,Nzerekore,131.0,Guinea,103483.0,Nzerekore,both,identical +141464,-8.25,8.25,GIN,1339.0,Nzerekore,131.0,Guinea,103481.0,Lola,-8.25,8.25,GIN,1339.0,Nzerekore,131.0,Guinea,103481.0,Lola,both,identical +141465,-7.75,8.25,CIV,1209.0,Woroba,117.0,Côte D'Ivoire,102285.0,Bafing,-7.75,8.25,CIV,1209.0,Woroba,117.0,Côte D'Ivoire,102285.0,Bafing,both,identical +141466,-7.25,8.25,CIV,1209.0,Woroba,117.0,Côte D'Ivoire,102285.0,Bafing,-7.25,8.25,CIV,1209.0,Woroba,117.0,Côte D'Ivoire,102285.0,Bafing,both,identical +141467,-6.75,8.25,CIV,1209.0,Woroba,117.0,Côte D'Ivoire,102287.0,Worodougou,-6.75,8.25,CIV,1209.0,Woroba,117.0,Côte D'Ivoire,102287.0,Worodougou,both,identical +141468,-6.25,8.25,CIV,1209.0,Woroba,117.0,Côte D'Ivoire,102286.0,Béré,-6.25,8.25,CIV,1209.0,Woroba,117.0,Côte D'Ivoire,102286.0,Béré,both,identical +141469,-5.75,8.25,CIV,1209.0,Woroba,117.0,Côte D'Ivoire,102286.0,Béré,-5.75,8.25,CIV,1209.0,Woroba,117.0,Côte D'Ivoire,102286.0,Béré,both,identical +141470,-5.25,8.25,CIV,1208.0,Vallée Du Bandama,117.0,Côte D'Ivoire,102284.0,Hambol,-5.25,8.25,CIV,1208.0,Vallée Du Bandama,117.0,Côte D'Ivoire,102284.0,Hambol,both,identical +141471,-4.75,8.25,CIV,1208.0,Vallée Du Bandama,117.0,Côte D'Ivoire,102284.0,Hambol,-4.75,8.25,CIV,1208.0,Vallée Du Bandama,117.0,Côte D'Ivoire,102284.0,Hambol,both,identical +141472,-4.25,8.25,CIV,1208.0,Vallée Du Bandama,117.0,Côte D'Ivoire,102284.0,Hambol,-4.25,8.25,CIV,1208.0,Vallée Du Bandama,117.0,Côte D'Ivoire,102284.0,Hambol,both,identical +141473,-3.75,8.25,CIV,1211.0,Zanzan,117.0,Côte D'Ivoire,102290.0,Gontougo,-3.75,8.25,CIV,1211.0,Zanzan,117.0,Côte D'Ivoire,102290.0,Gontougo,both,identical +141474,-3.25,8.25,CIV,1211.0,Zanzan,117.0,Côte D'Ivoire,102290.0,Gontougo,-3.25,8.25,CIV,1211.0,Zanzan,117.0,Côte D'Ivoire,102290.0,Gontougo,both,identical +141475,-2.75,8.25,CIV,1211.0,Zanzan,117.0,Côte D'Ivoire,102290.0,Gontougo,-2.75,8.25,CIV,1211.0,Zanzan,117.0,Côte D'Ivoire,102290.0,Gontougo,both,identical +141476,-2.25,8.25,GHA,1322.0,Brong Ahafo,129.0,Ghana,103269.0,Banda,-2.25,8.25,GHA,1322.0,Brong Ahafo,129.0,Ghana,103269.0,Banda,both,identical +141477,-1.75,8.25,GHA,1322.0,Brong Ahafo,129.0,Ghana,103276.0,Kintampo North,-1.75,8.25,GHA,1322.0,Brong Ahafo,129.0,Ghana,103276.0,Kintampo North,both,identical +141478,-1.25,8.25,GHA,1322.0,Brong Ahafo,129.0,Ghana,103356.0,East Gonja,-1.25,8.25,GHA,1326.0,Northern,129.0,Ghana,103356.0,East Gonja,both,admin_reallocation +141479,-0.75,8.25,GHA,1322.0,Brong Ahafo,129.0,Ghana,103356.0,East Gonja,-0.75,8.25,GHA,1326.0,Northern,129.0,Ghana,103356.0,East Gonja,both,admin_reallocation +141480,-0.25,8.25,GHA,1326.0,Northern,129.0,Ghana,103356.0,East Gonja,-0.25,8.25,GHA,1326.0,Northern,129.0,Ghana,103356.0,East Gonja,both,identical +141481,0.25,8.25,GHA,1329.0,Volta,129.0,Ghana,103423.0,Nkwanta South,0.25,8.25,GHA,1329.0,Volta,129.0,Ghana,103423.0,Nkwanta South,both,identical +141482,0.75,8.25,TGO,1645.0,Centrale,162.0,Togo,105927.0,Blitta,0.75,8.25,TGO,1645.0,Centrale,162.0,Togo,105927.0,Blitta,both,identical +141483,1.25,8.25,TGO,1645.0,Centrale,162.0,Togo,105927.0,Blitta,1.25,8.25,TGO,1645.0,Centrale,162.0,Togo,105927.0,Blitta,both,identical +141484,1.75,8.25,BEN,1075.0,Collines,105.0,Benin,101745.0,Bantè,1.75,8.25,BEN,1075.0,Collines,105.0,Benin,101745.0,Bantè,both,identical +141485,2.25,8.25,BEN,1075.0,Collines,105.0,Benin,101747.0,Glazoué,2.25,8.25,BEN,1075.0,Collines,105.0,Benin,101747.0,Glazoué,both,identical +141486,2.75,8.25,NGA,1547.0,Oyo,151.0,Nigeria,105265.0,Atisbo,2.75,8.25,BEN,1075.0,Collines,105.0,Benin,101750.0,Savè,both,country_reassignment +141487,3.25,8.25,NGA,1547.0,Oyo,151.0,Nigeria,105265.0,Atisbo,3.25,8.25,NGA,1547.0,Oyo,151.0,Nigeria,105265.0,Atisbo,both,identical +141488,3.75,8.25,NGA,1547.0,Oyo,151.0,Nigeria,105264.0,Atiba,3.75,8.25,NGA,1547.0,Oyo,151.0,Nigeria,105264.0,Atiba,both,identical +141489,4.25,8.25,NGA,1547.0,Oyo,151.0,Nigeria,105289.0,Ori Ire,4.25,8.25,NGA,1547.0,Oyo,151.0,Nigeria,105289.0,Ori Ire,both,identical +141490,4.75,8.25,NGA,1540.0,Kwara,151.0,Nigeria,105124.0,Ifelodun,4.75,8.25,NGA,1540.0,Kwara,151.0,Nigeria,105124.0,Ifelodun,both,identical +141491,5.25,8.25,NGA,1540.0,Kwara,151.0,Nigeria,105124.0,Ifelodun,5.25,8.25,NGA,1540.0,Kwara,151.0,Nigeria,105124.0,Ifelodun,both,identical +141492,5.75,8.25,NGA,1539.0,Kogi,151.0,Nigeria,105118.0,Yagba East,5.75,8.25,NGA,1539.0,Kogi,151.0,Nigeria,105118.0,Yagba East,both,identical +141493,6.25,8.25,NGA,1539.0,Kogi,151.0,Nigeria,105108.0,Kabba/Bunu,6.25,8.25,NGA,1539.0,Kogi,151.0,Nigeria,105108.0,Kabba/Bunu,both,identical +141494,6.75,8.25,NGA,1539.0,Kogi,151.0,Nigeria,105109.0,Kogi,6.75,8.25,NGA,1539.0,Kogi,151.0,Nigeria,105109.0,Kogi,both,identical +141495,7.25,8.25,NGA,1542.0,Nassarawa,151.0,Nigeria,105167.0,Toto,7.25,8.25,NGA,1542.0,Nassarawa,151.0,Nigeria,105167.0,Toto,both,identical +141496,7.75,8.25,NGA,1542.0,Nassarawa,151.0,Nigeria,105164.0,Nassarawa,7.75,8.25,NGA,1542.0,Nassarawa,151.0,Nigeria,105164.0,Nassarawa,both,identical +141497,8.25,8.25,NGA,1542.0,Nassarawa,151.0,Nigeria,105158.0,Doma,8.25,8.25,NGA,1542.0,Nassarawa,151.0,Nigeria,105158.0,Doma,both,identical +141498,8.75,8.25,NGA,1542.0,Nassarawa,151.0,Nigeria,105160.0,Keana,8.75,8.25,NGA,1542.0,Nassarawa,151.0,Nigeria,105160.0,Keana,both,identical +141499,9.25,8.25,NGA,1542.0,Nassarawa,151.0,Nigeria,105157.0,Awe,9.25,8.25,NGA,1542.0,Nassarawa,151.0,Nigeria,105157.0,Awe,both,identical +141500,9.75,8.25,NGA,1551.0,Taraba,151.0,Nigeria,105363.0,Ibi,9.75,8.25,NGA,1551.0,Taraba,151.0,Nigeria,105363.0,Ibi,both,identical +141501,10.25,8.25,NGA,1551.0,Taraba,151.0,Nigeria,105362.0,Gassol,10.25,8.25,NGA,1551.0,Taraba,151.0,Nigeria,105362.0,Gassol,both,identical +141502,10.75,8.25,NGA,1551.0,Taraba,151.0,Nigeria,105359.0,Bali,10.75,8.25,NGA,1551.0,Taraba,151.0,Nigeria,105359.0,Bali,both,identical +141503,11.25,8.25,NGA,1551.0,Taraba,151.0,Nigeria,105359.0,Bali,11.25,8.25,NGA,1551.0,Taraba,151.0,Nigeria,105359.0,Bali,both,identical +141504,11.75,8.25,NGA,1518.0,Adamawa,151.0,Nigeria,104666.0,Toungo,11.75,8.25,NGA,1518.0,Adamawa,151.0,Nigeria,104666.0,Toungo,both,identical +141505,12.25,8.25,CMR,1147.0,Nord,112.0,Cameroon,102037.0,Faro,12.25,8.25,CMR,1147.0,Nord,112.0,Cameroon,102037.0,Faro,both,identical +141506,12.75,8.25,CMR,1147.0,Nord,112.0,Cameroon,102037.0,Faro,12.75,8.25,CMR,1147.0,Nord,112.0,Cameroon,102037.0,Faro,both,identical +141507,13.25,8.25,CMR,1147.0,Nord,112.0,Cameroon,102037.0,Faro,13.25,8.25,CMR,1147.0,Nord,112.0,Cameroon,102037.0,Faro,both,identical +141508,13.75,8.25,CMR,1147.0,Nord,112.0,Cameroon,102039.0,Mayo-Rey,13.75,8.25,CMR,1147.0,Nord,112.0,Cameroon,102039.0,Mayo-Rey,both,identical +141509,14.25,8.25,CMR,1147.0,Nord,112.0,Cameroon,102039.0,Mayo-Rey,14.25,8.25,CMR,1147.0,Nord,112.0,Cameroon,102039.0,Mayo-Rey,both,identical +141510,14.75,8.25,CMR,1147.0,Nord,112.0,Cameroon,102039.0,Mayo-Rey,14.75,8.25,CMR,1147.0,Nord,112.0,Cameroon,102039.0,Mayo-Rey,both,identical +141511,15.25,8.25,CMR,1147.0,Nord,112.0,Cameroon,102039.0,Mayo-Rey,15.25,8.25,CMR,1147.0,Nord,112.0,Cameroon,102039.0,Mayo-Rey,both,identical +141512,15.75,8.25,TCD,1171.0,Logone Oriental,114.0,Chad,102120.0,Monts De Lam,15.75,8.25,TCD,1171.0,Logone Oriental,114.0,Chad,102120.0,Monts De Lam,both,identical +141513,16.25,8.25,TCD,1171.0,Logone Oriental,114.0,Chad,102120.0,Monts De Lam,16.25,8.25,TCD,1171.0,Logone Oriental,114.0,Chad,102120.0,Monts De Lam,both,identical +141514,16.75,8.25,TCD,1171.0,Logone Oriental,114.0,Chad,102116.0,Kouh Ouest,16.75,8.25,TCD,1171.0,Logone Oriental,114.0,Chad,102116.0,Kouh Ouest,both,identical +141515,17.25,8.25,TCD,1172.0,Mandoul,114.0,Chad,102121.0,Barh-Sara,17.25,8.25,TCD,1172.0,Mandoul,114.0,Chad,102121.0,Barh-Sara,both,identical +141516,17.75,8.25,TCD,1172.0,Mandoul,114.0,Chad,102121.0,Barh-Sara,17.75,8.25,TCD,1172.0,Mandoul,114.0,Chad,102121.0,Barh-Sara,both,identical +141517,18.25,8.25,TCD,1175.0,Moyen-Chari,114.0,Chad,102132.0,Grande Sido,18.25,8.25,TCD,1175.0,Moyen-Chari,114.0,Chad,102132.0,Grande Sido,both,identical +141518,18.75,8.25,TCD,1175.0,Moyen-Chari,114.0,Chad,102132.0,Grande Sido,18.75,8.25,TCD,1175.0,Moyen-Chari,114.0,Chad,102132.0,Grande Sido,both,identical +141519,19.25,8.25,CAF,1154.0,Fertit,113.0,Central African Republic,102069.0,Bamingui-Bangoran,19.25,8.25,CAF,1154.0,Fertit,113.0,Central African Republic,102069.0,Bamingui-Bangoran,both,identical +141520,19.75,8.25,CAF,1154.0,Fertit,113.0,Central African Republic,102069.0,Bamingui-Bangoran,19.75,8.25,CAF,1154.0,Fertit,113.0,Central African Republic,102069.0,Bamingui-Bangoran,both,identical +141521,20.25,8.25,CAF,1154.0,Fertit,113.0,Central African Republic,102069.0,Bamingui-Bangoran,20.25,8.25,CAF,1154.0,Fertit,113.0,Central African Republic,102069.0,Bamingui-Bangoran,both,identical +141522,20.75,8.25,CAF,1154.0,Fertit,113.0,Central African Republic,102069.0,Bamingui-Bangoran,20.75,8.25,CAF,1154.0,Fertit,113.0,Central African Republic,102069.0,Bamingui-Bangoran,both,identical +141523,21.25,8.25,CAF,1154.0,Fertit,113.0,Central African Republic,102069.0,Bamingui-Bangoran,21.25,8.25,CAF,1154.0,Fertit,113.0,Central African Republic,102069.0,Bamingui-Bangoran,both,identical +141524,21.75,8.25,CAF,1154.0,Fertit,113.0,Central African Republic,102070.0,Haute-Kotto,21.75,8.25,CAF,1154.0,Fertit,113.0,Central African Republic,102070.0,Haute-Kotto,both,identical +141525,22.25,8.25,CAF,1154.0,Fertit,113.0,Central African Republic,102070.0,Haute-Kotto,22.25,8.25,CAF,1154.0,Fertit,113.0,Central African Republic,102070.0,Haute-Kotto,both,identical +141526,22.75,8.25,CAF,1154.0,Fertit,113.0,Central African Republic,102070.0,Haute-Kotto,22.75,8.25,CAF,1154.0,Fertit,113.0,Central African Republic,102070.0,Haute-Kotto,both,identical +141527,23.25,8.25,CAF,1154.0,Fertit,113.0,Central African Republic,102070.0,Haute-Kotto,23.25,8.25,CAF,1154.0,Fertit,113.0,Central African Republic,102070.0,Haute-Kotto,both,identical +141528,23.75,8.25,CAF,1154.0,Fertit,113.0,Central African Republic,102070.0,Haute-Kotto,23.75,8.25,CAF,1154.0,Fertit,113.0,Central African Republic,102070.0,Haute-Kotto,both,identical +141529,24.25,8.25,CAF,1154.0,Fertit,113.0,Central African Republic,102070.0,Haute-Kotto,24.25,8.25,CAF,1154.0,Fertit,113.0,Central African Republic,102070.0,Haute-Kotto,both,identical +141530,24.75,8.25,SSD,1625.0,Western Bahr El Ghazal,160.0,South Sudan,105727.0,Raja,24.75,8.25,SSD,1625.0,Western Bahr El Ghazal,160.0,South Sudan,105727.0,Raja,both,identical +141531,25.25,8.25,SSD,1625.0,Western Bahr El Ghazal,160.0,South Sudan,105727.0,Raja,25.25,8.25,SSD,1625.0,Western Bahr El Ghazal,160.0,South Sudan,105727.0,Raja,both,identical +141532,25.75,8.25,SSD,1625.0,Western Bahr El Ghazal,160.0,South Sudan,105727.0,Raja,25.75,8.25,SSD,1625.0,Western Bahr El Ghazal,160.0,South Sudan,105727.0,Raja,both,identical +141533,26.25,8.25,SSD,1625.0,Western Bahr El Ghazal,160.0,South Sudan,105727.0,Raja,26.25,8.25,SSD,1625.0,Western Bahr El Ghazal,160.0,South Sudan,105727.0,Raja,both,identical +141534,26.75,8.25,SSD,1621.0,Northern Bahr El Ghazal,160.0,South Sudan,105694.0,Aweil Centre,26.75,8.25,SSD,1621.0,Northern Bahr El Ghazal,160.0,South Sudan,105694.0,Aweil Centre,both,identical +141535,27.25,8.25,SSD,1621.0,Northern Bahr El Ghazal,160.0,South Sudan,105694.0,Aweil Centre,27.25,8.25,SSD,1621.0,Northern Bahr El Ghazal,160.0,South Sudan,105694.0,Aweil Centre,both,identical +141536,27.75,8.25,SSD,1625.0,Western Bahr El Ghazal,160.0,South Sudan,105726.0,Jur River,27.75,8.25,SSD,1625.0,Western Bahr El Ghazal,160.0,South Sudan,105726.0,Jur River,both,identical +141537,28.25,8.25,SSD,1624.0,Warrap,160.0,South Sudan,105720.0,Gogrial East,28.25,8.25,SSD,1624.0,Warrap,160.0,South Sudan,105720.0,Gogrial East,both,identical +141538,28.75,8.25,SSD,1624.0,Warrap,160.0,South Sudan,105723.0,Tonj North,28.75,8.25,SSD,1624.0,Warrap,160.0,South Sudan,105723.0,Tonj North,both,identical +141539,29.25,8.25,SSD,1624.0,Warrap,160.0,South Sudan,105723.0,Tonj North,29.25,8.25,SSD,1624.0,Warrap,160.0,South Sudan,105723.0,Tonj North,both,identical +141540,29.75,8.25,SSD,1622.0,Unity,160.0,South Sudan,105703.0,Mayendit,29.75,8.25,SSD,1622.0,Unity,160.0,South Sudan,105703.0,Mayendit,both,identical +141541,30.25,8.25,SSD,1622.0,Unity,160.0,South Sudan,105702.0,Leer,30.25,8.25,SSD,1622.0,Unity,160.0,South Sudan,105702.0,Leer,both,identical +141542,30.75,8.25,SSD,1619.0,Jonglei,160.0,South Sudan,105676.0,Ayod,30.75,8.25,SSD,1619.0,Jonglei,160.0,South Sudan,105676.0,Ayod,both,identical +141543,31.25,8.25,SSD,1619.0,Jonglei,160.0,South Sudan,105676.0,Ayod,31.25,8.25,SSD,1619.0,Jonglei,160.0,South Sudan,105676.0,Ayod,both,identical +141544,31.75,8.25,SSD,1619.0,Jonglei,160.0,South Sudan,105685.0,Uror,31.75,8.25,SSD,1619.0,Jonglei,160.0,South Sudan,105685.0,Uror,both,identical +141545,32.25,8.25,SSD,1619.0,Jonglei,160.0,South Sudan,105675.0,Akobo,32.25,8.25,SSD,1619.0,Jonglei,160.0,South Sudan,105675.0,Akobo,both,identical +141546,32.75,8.25,SSD,1619.0,Jonglei,160.0,South Sudan,105675.0,Akobo,32.75,8.25,SSD,1619.0,Jonglei,160.0,South Sudan,105675.0,Akobo,both,identical +141547,33.25,8.25,ETH,1294.0,Gambela,124.0,Ethiopia,103070.0,Nuwer,33.25,8.25,ETH,1294.0,Gambela,124.0,Ethiopia,103070.0,Nuwer,both,identical +141548,33.75,8.25,ETH,1294.0,Gambela,124.0,Ethiopia,103070.0,Nuwer,33.75,8.25,ETH,1294.0,Gambela,124.0,Ethiopia,103070.0,Nuwer,both,identical +141549,34.25,8.25,ETH,1294.0,Gambela,124.0,Ethiopia,103068.0,Itang Special Woreda,34.25,8.25,ETH,1294.0,Gambela,124.0,Ethiopia,103068.0,Itang Special Woreda,both,identical +141550,34.75,8.25,ETH,1294.0,Gambela,124.0,Ethiopia,103067.0,Agnewak,34.75,8.25,ETH,1294.0,Gambela,124.0,Ethiopia,103067.0,Agnewak,both,identical +141551,35.25,8.25,ETH,1296.0,Oromia,124.0,Ethiopia,103083.0,Ilu Aba Bora,35.25,8.25,ETH,1296.0,Oromia,124.0,Ethiopia,103083.0,Ilu Aba Bora,both,identical +141552,35.75,8.25,ETH,1296.0,Oromia,124.0,Ethiopia,103083.0,Ilu Aba Bora,35.75,8.25,ETH,1296.0,Oromia,124.0,Ethiopia,103083.0,Ilu Aba Bora,both,identical +141553,36.25,8.25,ETH,1296.0,Oromia,124.0,Ethiopia,103075.0,Buno Bedele,36.25,8.25,ETH,1296.0,Oromia,124.0,Ethiopia,103075.0,Buno Bedele,both,identical +141554,36.75,8.25,ETH,1296.0,Oromia,124.0,Ethiopia,103084.0,Jimma,36.75,8.25,ETH,1296.0,Oromia,124.0,Ethiopia,103084.0,Jimma,both,identical +141555,37.25,8.25,ETH,1296.0,Oromia,124.0,Ethiopia,103084.0,Jimma,37.25,8.25,ETH,1296.0,Oromia,124.0,Ethiopia,103084.0,Jimma,both,identical +141556,37.75,8.25,ETH,1298.0,Snnp,124.0,Ethiopia,103102.0,Guraghe,37.75,8.25,ETH,1298.0,Snnp,124.0,Ethiopia,103102.0,Guraghe,both,identical +141557,38.25,8.25,ETH,1298.0,Snnp,124.0,Ethiopia,103102.0,Guraghe,38.25,8.25,ETH,1298.0,Snnp,124.0,Ethiopia,103102.0,Guraghe,both,identical +141558,38.75,8.25,ETH,1296.0,Oromia,124.0,Ethiopia,103078.0,East Shewa,38.75,8.25,ETH,1296.0,Oromia,124.0,Ethiopia,103078.0,East Shewa,both,identical +141559,39.25,8.25,ETH,1296.0,Oromia,124.0,Ethiopia,103072.0,Arsi,39.25,8.25,ETH,1296.0,Oromia,124.0,Ethiopia,103072.0,Arsi,both,identical +141560,39.75,8.25,ETH,1296.0,Oromia,124.0,Ethiopia,103072.0,Arsi,39.75,8.25,ETH,1296.0,Oromia,124.0,Ethiopia,103072.0,Arsi,both,identical +141561,40.25,8.25,ETH,1296.0,Oromia,124.0,Ethiopia,103072.0,Arsi,40.25,8.25,ETH,1296.0,Oromia,124.0,Ethiopia,103072.0,Arsi,both,identical +141562,40.75,8.25,ETH,1296.0,Oromia,124.0,Ethiopia,103090.0,West Hararge,40.75,8.25,ETH,1296.0,Oromia,124.0,Ethiopia,103090.0,West Hararge,both,identical +141563,41.25,8.25,ETH,1296.0,Oromia,124.0,Ethiopia,103090.0,West Hararge,41.25,8.25,ETH,1296.0,Oromia,124.0,Ethiopia,103090.0,West Hararge,both,identical +141564,41.75,8.25,ETH,1296.0,Oromia,124.0,Ethiopia,103077.0,East Hararge,41.75,8.25,ETH,1296.0,Oromia,124.0,Ethiopia,103077.0,East Hararge,both,identical +141565,42.25,8.25,ETH,1299.0,Somali,124.0,Ethiopia,103114.0,Erer,42.25,8.25,ETH,1299.0,Somali,124.0,Ethiopia,103114.0,Erer,both,identical +141566,42.75,8.25,ETH,1299.0,Somali,124.0,Ethiopia,103116.0,Jarar,42.75,8.25,ETH,1299.0,Somali,124.0,Ethiopia,103116.0,Jarar,both,identical +141567,43.25,8.25,ETH,1299.0,Somali,124.0,Ethiopia,103116.0,Jarar,43.25,8.25,ETH,1299.0,Somali,124.0,Ethiopia,103116.0,Jarar,both,identical +141568,43.75,8.25,ETH,1299.0,Somali,124.0,Ethiopia,103116.0,Jarar,43.75,8.25,ETH,1299.0,Somali,124.0,Ethiopia,103116.0,Jarar,both,identical +141569,44.25,8.25,ETH,1299.0,Somali,124.0,Ethiopia,103116.0,Jarar,44.25,8.25,ETH,1299.0,Somali,124.0,Ethiopia,103116.0,Jarar,both,identical +141570,44.75,8.25,ETH,1299.0,Somali,124.0,Ethiopia,103116.0,Jarar,44.75,8.25,ETH,1299.0,Somali,124.0,Ethiopia,103116.0,Jarar,both,identical +141571,45.25,8.25,ETH,1299.0,Somali,124.0,Ethiopia,103116.0,Jarar,45.25,8.25,ETH,1299.0,Somali,124.0,Ethiopia,103116.0,Jarar,both,identical +141572,45.75,8.25,ETH,1299.0,Somali,124.0,Ethiopia,103116.0,Jarar,45.75,8.25,ETH,1299.0,Somali,124.0,Ethiopia,103116.0,Jarar,both,identical +141573,46.25,8.25,ETH,1299.0,Somali,124.0,Ethiopia,103113.0,Doolo,46.25,8.25,ETH,1299.0,Somali,124.0,Ethiopia,103113.0,Doolo,both,identical +141574,46.75,8.25,-99,,,,,,,46.75,8.25,SOM,1605.0,Togdheer,158.0,Somalia,105603.0,Buuhoodle,both,country_reassignment +141575,47.25,8.25,-99,,,,,,,47.25,8.25,SOM,1604.0,Sool,158.0,Somalia,105599.0,Laas Caanood,both,country_reassignment +141576,47.75,8.25,-99,,,,,,,47.75,8.25,SOM,1604.0,Sool,158.0,Somalia,105599.0,Laas Caanood,both,country_reassignment +141577,48.25,8.25,SOM,1602.0,Nugaal,158.0,Somalia,105594.0,Garoowe,48.25,8.25,SOM,1602.0,Nugaal,158.0,Somalia,105594.0,Garoowe,both,identical +141578,48.75,8.25,SOM,1602.0,Nugaal,158.0,Somalia,105594.0,Garoowe,48.75,8.25,SOM,1602.0,Nugaal,158.0,Somalia,105594.0,Garoowe,both,identical +141579,49.25,8.25,SOM,1602.0,Nugaal,158.0,Somalia,105593.0,Eyl,49.25,8.25,SOM,1602.0,Nugaal,158.0,Somalia,105593.0,Eyl,both,identical +141580,49.75,8.25,SOM,1602.0,Nugaal,158.0,Somalia,105593.0,Eyl,49.75,8.25,SOM,1602.0,Nugaal,158.0,Somalia,105593.0,Eyl,both,identical +141581,50.25,8.25,SOM,1602.0,Nugaal,158.0,Somalia,105593.0,Eyl,50.25,8.25,SOM,1602.0,Nugaal,158.0,Somalia,105593.0,Eyl,both,identical +142174,-13.25,8.75,SLE,1585.0,North Western,157.0,Sierra Leone,105524.0,Port Loko,-13.25,8.75,SLE,1585.0,North Western,157.0,Sierra Leone,105524.0,Port Loko,both,identical +142175,-12.75,8.75,SLE,1585.0,North Western,157.0,Sierra Leone,105524.0,Port Loko,-12.75,8.75,SLE,1585.0,North Western,157.0,Sierra Leone,105524.0,Port Loko,both,identical +142176,-12.25,8.75,SLE,1586.0,Northern,157.0,Sierra Leone,105525.0,Bombali,-12.25,8.75,SLE,1586.0,Northern,157.0,Sierra Leone,105525.0,Bombali,both,identical +142177,-11.75,8.75,SLE,1586.0,Northern,157.0,Sierra Leone,105528.0,Tonkolili,-11.75,8.75,SLE,1586.0,Northern,157.0,Sierra Leone,105528.0,Tonkolili,both,identical +142178,-11.25,8.75,SLE,1586.0,Northern,157.0,Sierra Leone,105526.0,Fabala,-11.25,8.75,SLE,1586.0,Northern,157.0,Sierra Leone,105526.0,Fabala,both,identical +142179,-10.75,8.75,SLE,1586.0,Northern,157.0,Sierra Leone,105526.0,Fabala,-10.75,8.75,SLE,1586.0,Northern,157.0,Sierra Leone,105526.0,Fabala,both,identical +142180,-10.25,8.75,GIN,1339.0,Nzerekore,131.0,Guinea,103480.0,Gueckedou,-10.25,8.75,GIN,1339.0,Nzerekore,131.0,Guinea,103480.0,Gueckedou,both,identical +142181,-9.75,8.75,GIN,1339.0,Nzerekore,131.0,Guinea,103482.0,Macenta,-9.75,8.75,GIN,1339.0,Nzerekore,131.0,Guinea,103482.0,Macenta,both,identical +142182,-9.25,8.75,GIN,1339.0,Nzerekore,131.0,Guinea,103482.0,Macenta,-9.25,8.75,GIN,1339.0,Nzerekore,131.0,Guinea,103482.0,Macenta,both,identical +142183,-8.75,8.75,GIN,1339.0,Nzerekore,131.0,Guinea,103479.0,Beyla,-8.75,8.75,GIN,1339.0,Nzerekore,131.0,Guinea,103479.0,Beyla,both,identical +142184,-8.25,8.75,GIN,1339.0,Nzerekore,131.0,Guinea,103479.0,Beyla,-8.25,8.75,GIN,1339.0,Nzerekore,131.0,Guinea,103479.0,Beyla,both,identical +142185,-7.75,8.75,CIV,1209.0,Woroba,117.0,Côte D'Ivoire,102285.0,Bafing,-7.75,8.75,CIV,1209.0,Woroba,117.0,Côte D'Ivoire,102285.0,Bafing,both,identical +142186,-7.25,8.75,CIV,1209.0,Woroba,117.0,Côte D'Ivoire,102287.0,Worodougou,-7.25,8.75,CIV,1209.0,Woroba,117.0,Côte D'Ivoire,102287.0,Worodougou,both,identical +142187,-6.75,8.75,CIV,1209.0,Woroba,117.0,Côte D'Ivoire,102287.0,Worodougou,-6.75,8.75,CIV,1209.0,Woroba,117.0,Côte D'Ivoire,102287.0,Worodougou,both,identical +142188,-6.25,8.75,CIV,1209.0,Woroba,117.0,Côte D'Ivoire,102286.0,Béré,-6.25,8.75,CIV,1209.0,Woroba,117.0,Côte D'Ivoire,102286.0,Béré,both,identical +142189,-5.75,8.75,CIV,1207.0,Savanes,117.0,Côte D'Ivoire,102281.0,Poro,-5.75,8.75,CIV,1207.0,Savanes,117.0,Côte D'Ivoire,102281.0,Poro,both,identical +142190,-5.25,8.75,CIV,1208.0,Vallée Du Bandama,117.0,Côte D'Ivoire,102284.0,Hambol,-5.25,8.75,CIV,1208.0,Vallée Du Bandama,117.0,Côte D'Ivoire,102284.0,Hambol,both,identical +142191,-4.75,8.75,CIV,1208.0,Vallée Du Bandama,117.0,Côte D'Ivoire,102284.0,Hambol,-4.75,8.75,CIV,1208.0,Vallée Du Bandama,117.0,Côte D'Ivoire,102284.0,Hambol,both,identical +142192,-4.25,8.75,CIV,1207.0,Savanes,117.0,Côte D'Ivoire,102282.0,Tchologo,-4.25,8.75,CIV,1207.0,Savanes,117.0,Côte D'Ivoire,102282.0,Tchologo,both,identical +142193,-3.75,8.75,CIV,1211.0,Zanzan,117.0,Côte D'Ivoire,102289.0,Bounkani,-3.75,8.75,CIV,1211.0,Zanzan,117.0,Côte D'Ivoire,102289.0,Bounkani,both,identical +142194,-3.25,8.75,CIV,1211.0,Zanzan,117.0,Côte D'Ivoire,102289.0,Bounkani,-3.25,8.75,CIV,1211.0,Zanzan,117.0,Côte D'Ivoire,102289.0,Bounkani,both,identical +142195,-2.75,8.75,CIV,1211.0,Zanzan,117.0,Côte D'Ivoire,102289.0,Bounkani,-2.75,8.75,CIV,1211.0,Zanzan,117.0,Côte D'Ivoire,102289.0,Bounkani,both,identical +142196,-2.25,8.75,GHA,1326.0,Northern,129.0,Ghana,103353.0,Bole,-2.25,8.75,GHA,1326.0,Northern,129.0,Ghana,103353.0,Bole,both,identical +142197,-1.75,8.75,GHA,1326.0,Northern,129.0,Ghana,103357.0,Gonja Central,-1.75,8.75,GHA,1326.0,Northern,129.0,Ghana,103357.0,Gonja Central,both,identical +142198,-1.25,8.75,GHA,1326.0,Northern,129.0,Ghana,103357.0,Gonja Central,-1.25,8.75,GHA,1326.0,Northern,129.0,Ghana,103357.0,Gonja Central,both,identical +142199,-0.75,8.75,GHA,1326.0,Northern,129.0,Ghana,103357.0,Gonja Central,-0.75,8.75,GHA,1326.0,Northern,129.0,Ghana,103357.0,Gonja Central,both,identical +142200,-0.25,8.75,GHA,1326.0,Northern,129.0,Ghana,103365.0,Nanumba North,-0.25,8.75,GHA,1326.0,Northern,129.0,Ghana,103365.0,Nanumba North,both,identical +142201,0.25,8.75,GHA,1326.0,Northern,129.0,Ghana,103366.0,Nanumba South,0.25,8.75,GHA,1326.0,Northern,129.0,Ghana,103366.0,Nanumba South,both,identical +142202,0.75,8.75,TGO,1645.0,Centrale,162.0,Togo,105929.0,Sotouboua,0.75,8.75,TGO,1645.0,Centrale,162.0,Togo,105929.0,Sotouboua,both,identical +142203,1.25,8.75,TGO,1645.0,Centrale,162.0,Togo,105930.0,Tchamba,1.25,8.75,TGO,1645.0,Centrale,162.0,Togo,105930.0,Tchamba,both,identical +142204,1.75,8.75,BEN,1077.0,Donga,105.0,Benin,101757.0,Bassila,1.75,8.75,BEN,1077.0,Donga,105.0,Benin,101757.0,Bassila,both,identical +142205,2.25,8.75,BEN,1077.0,Donga,105.0,Benin,101757.0,Bassila,2.25,8.75,BEN,1077.0,Donga,105.0,Benin,101757.0,Bassila,both,identical +142206,2.75,8.75,NGA,1540.0,Kwara,151.0,Nigeria,105121.0,Baruten,2.75,8.75,NGA,1540.0,Kwara,151.0,Nigeria,105121.0,Baruten,both,identical +142207,3.25,8.75,NGA,1547.0,Oyo,151.0,Nigeria,105293.0,Saki West,3.25,8.75,NGA,1547.0,Oyo,151.0,Nigeria,105293.0,Saki West,both,identical +142208,3.75,8.75,NGA,1547.0,Oyo,151.0,Nigeria,105292.0,Saki East,3.75,8.75,NGA,1547.0,Oyo,151.0,Nigeria,105292.0,Saki East,both,identical +142209,4.25,8.75,NGA,1540.0,Kwara,151.0,Nigeria,105131.0,Moro,4.25,8.75,NGA,1540.0,Kwara,151.0,Nigeria,105131.0,Moro,both,identical +142210,4.75,8.75,NGA,1540.0,Kwara,151.0,Nigeria,105131.0,Moro,4.75,8.75,NGA,1540.0,Kwara,151.0,Nigeria,105131.0,Moro,both,identical +142211,5.25,8.75,NGA,1540.0,Kwara,151.0,Nigeria,105122.0,Edu,5.25,8.75,NGA,1540.0,Kwara,151.0,Nigeria,105122.0,Edu,both,identical +142212,5.75,8.75,NGA,1540.0,Kwara,151.0,Nigeria,105135.0,Pategi,5.75,8.75,NGA,1540.0,Kwara,151.0,Nigeria,105135.0,Pategi,both,identical +142213,6.25,8.75,NGA,1543.0,Niger,151.0,Nigeria,105169.0,Agaie,6.25,8.75,NGA,1543.0,Niger,151.0,Nigeria,105169.0,Agaie,both,identical +142214,6.75,8.75,NGA,1543.0,Niger,151.0,Nigeria,105180.0,Lapai,6.75,8.75,NGA,1543.0,Niger,151.0,Nigeria,105180.0,Lapai,both,identical +142215,7.25,8.75,NGA,1531.0,Federal Capital Territory,151.0,Nigeria,104910.0,Kuje,7.25,8.75,NGA,1531.0,Federal Capital Territory,151.0,Nigeria,104910.0,Kuje,both,identical +142216,7.75,8.75,NGA,1542.0,Nassarawa,151.0,Nigeria,105164.0,Nassarawa,7.75,8.75,NGA,1542.0,Nassarawa,151.0,Nigeria,105164.0,Nassarawa,both,identical +142217,8.25,8.75,NGA,1542.0,Nassarawa,151.0,Nigeria,105162.0,Kokona,8.25,8.75,NGA,1542.0,Nassarawa,151.0,Nigeria,105162.0,Kokona,both,identical +142218,8.75,8.75,NGA,1542.0,Nassarawa,151.0,Nigeria,105163.0,Lafia,8.75,8.75,NGA,1542.0,Nassarawa,151.0,Nigeria,105163.0,Lafia,both,identical +142219,9.25,8.75,NGA,1548.0,Plateau,151.0,Nigeria,105308.0,Qua'An Pan,9.25,8.75,NGA,1548.0,Plateau,151.0,Nigeria,105308.0,Qua'An Pan,both,identical +142220,9.75,8.75,NGA,1548.0,Plateau,151.0,Nigeria,105310.0,Shendam,9.75,8.75,NGA,1548.0,Plateau,151.0,Nigeria,105310.0,Shendam,both,identical +142221,10.25,8.75,NGA,1551.0,Taraba,151.0,Nigeria,105311.0,Wase,10.25,8.75,NGA,1548.0,Plateau,151.0,Nigeria,105311.0,Wase,both,admin_reallocation +142222,10.75,8.75,NGA,1551.0,Taraba,151.0,Nigeria,105362.0,Gassol,10.75,8.75,NGA,1551.0,Taraba,151.0,Nigeria,105362.0,Gassol,both,identical +142223,11.25,8.75,NGA,1551.0,Taraba,151.0,Nigeria,105358.0,Ardo-Kola,11.25,8.75,NGA,1551.0,Taraba,151.0,Nigeria,105358.0,Ardo-Kola,both,identical +142224,11.75,8.75,NGA,1551.0,Taraba,151.0,Nigeria,105373.0,Zing,11.75,8.75,NGA,1551.0,Taraba,151.0,Nigeria,105373.0,Zing,both,identical +142225,12.25,8.75,NGA,1518.0,Adamawa,151.0,Nigeria,104655.0,Jada,12.25,8.75,NGA,1518.0,Adamawa,151.0,Nigeria,104655.0,Jada,both,identical +142226,12.75,8.75,CMR,1147.0,Nord,112.0,Cameroon,102037.0,Faro,12.75,8.75,CMR,1147.0,Nord,112.0,Cameroon,102037.0,Faro,both,identical +142227,13.25,8.75,CMR,1147.0,Nord,112.0,Cameroon,102036.0,Bénoué,13.25,8.75,CMR,1147.0,Nord,112.0,Cameroon,102036.0,Bénoué,both,identical +142228,13.75,8.75,CMR,1147.0,Nord,112.0,Cameroon,102039.0,Mayo-Rey,13.75,8.75,CMR,1147.0,Nord,112.0,Cameroon,102039.0,Mayo-Rey,both,identical +142229,14.25,8.75,CMR,1147.0,Nord,112.0,Cameroon,102039.0,Mayo-Rey,14.25,8.75,CMR,1147.0,Nord,112.0,Cameroon,102039.0,Mayo-Rey,both,identical +142230,14.75,8.75,CMR,1147.0,Nord,112.0,Cameroon,102039.0,Mayo-Rey,14.75,8.75,CMR,1147.0,Nord,112.0,Cameroon,102039.0,Mayo-Rey,both,identical +142231,15.25,8.75,TCD,1174.0,Mayo-Kebbi Ouest,114.0,Chad,102130.0,Mayo-Dallah,15.25,8.75,TCD,1174.0,Mayo-Kebbi Ouest,114.0,Chad,102130.0,Mayo-Dallah,both,identical +142232,15.75,8.75,TCD,1170.0,Logone Occidental,114.0,Chad,102111.0,Dodjé,15.75,8.75,TCD,1170.0,Logone Occidental,114.0,Chad,102111.0,Dodjé,both,identical +142233,16.25,8.75,TCD,1170.0,Logone Occidental,114.0,Chad,102113.0,Lac Wey,16.25,8.75,TCD,1170.0,Logone Occidental,114.0,Chad,102113.0,Lac Wey,both,identical +142234,16.75,8.75,TCD,1171.0,Logone Oriental,114.0,Chad,102117.0,La Nya,16.75,8.75,TCD,1171.0,Logone Oriental,114.0,Chad,102117.0,La Nya,both,identical +142235,17.25,8.75,TCD,1172.0,Mandoul,114.0,Chad,102122.0,Mandoul Occidental,17.25,8.75,TCD,1172.0,Mandoul,114.0,Chad,102122.0,Mandoul Occidental,both,identical +142236,17.75,8.75,TCD,1172.0,Mandoul,114.0,Chad,102121.0,Barh-Sara,17.75,8.75,TCD,1172.0,Mandoul,114.0,Chad,102121.0,Barh-Sara,both,identical +142237,18.25,8.75,TCD,1175.0,Moyen-Chari,114.0,Chad,102131.0,Bahr-Köh,18.25,8.75,TCD,1175.0,Moyen-Chari,114.0,Chad,102131.0,Bahr-Köh,both,identical +142238,18.75,8.75,TCD,1175.0,Moyen-Chari,114.0,Chad,102131.0,Bahr-Köh,18.75,8.75,TCD,1175.0,Moyen-Chari,114.0,Chad,102131.0,Bahr-Köh,both,identical +142239,19.25,8.75,CAF,1154.0,Fertit,113.0,Central African Republic,102069.0,Bamingui-Bangoran,19.25,8.75,CAF,1154.0,Fertit,113.0,Central African Republic,102069.0,Bamingui-Bangoran,both,identical +142240,19.75,8.75,CAF,1154.0,Fertit,113.0,Central African Republic,102069.0,Bamingui-Bangoran,19.75,8.75,CAF,1154.0,Fertit,113.0,Central African Republic,102069.0,Bamingui-Bangoran,both,identical +142241,20.25,8.75,CAF,1154.0,Fertit,113.0,Central African Republic,102069.0,Bamingui-Bangoran,20.25,8.75,CAF,1154.0,Fertit,113.0,Central African Republic,102069.0,Bamingui-Bangoran,both,identical +142242,20.75,8.75,CAF,1154.0,Fertit,113.0,Central African Republic,102069.0,Bamingui-Bangoran,20.75,8.75,CAF,1154.0,Fertit,113.0,Central African Republic,102069.0,Bamingui-Bangoran,both,identical +142243,21.25,8.75,CAF,1154.0,Fertit,113.0,Central African Republic,102069.0,Bamingui-Bangoran,21.25,8.75,CAF,1154.0,Fertit,113.0,Central African Republic,102069.0,Bamingui-Bangoran,both,identical +142244,21.75,8.75,CAF,1154.0,Fertit,113.0,Central African Republic,102069.0,Bamingui-Bangoran,21.75,8.75,CAF,1154.0,Fertit,113.0,Central African Republic,102069.0,Bamingui-Bangoran,both,identical +142245,22.25,8.75,CAF,1154.0,Fertit,113.0,Central African Republic,102071.0,Vakaga,22.25,8.75,CAF,1154.0,Fertit,113.0,Central African Republic,102071.0,Vakaga,both,identical +142246,22.75,8.75,CAF,1154.0,Fertit,113.0,Central African Republic,102071.0,Vakaga,22.75,8.75,CAF,1154.0,Fertit,113.0,Central African Republic,102071.0,Vakaga,both,identical +142247,23.25,8.75,CAF,1154.0,Fertit,113.0,Central African Republic,102070.0,Haute-Kotto,23.25,8.75,CAF,1154.0,Fertit,113.0,Central African Republic,102070.0,Haute-Kotto,both,identical +142248,23.75,8.75,SDN,1640.0,South Darfur,161.0,Sudan,105858.0,Al Radoum,23.75,8.75,SDN,1640.0,South Darfur,161.0,Sudan,105858.0,Al Radoum,both,identical +142249,24.25,8.75,SDN,1640.0,South Darfur,161.0,Sudan,105858.0,Al Radoum,24.25,8.75,SDN,1640.0,South Darfur,161.0,Sudan,105858.0,Al Radoum,both,identical +142250,24.75,8.75,SSD,1625.0,Western Bahr El Ghazal,160.0,South Sudan,105727.0,Raja,24.75,8.75,SSD,1625.0,Western Bahr El Ghazal,160.0,South Sudan,105727.0,Raja,both,identical +142251,25.25,8.75,SSD,1625.0,Western Bahr El Ghazal,160.0,South Sudan,105727.0,Raja,25.25,8.75,SSD,1625.0,Western Bahr El Ghazal,160.0,South Sudan,105727.0,Raja,both,identical +142252,25.75,8.75,SSD,1625.0,Western Bahr El Ghazal,160.0,South Sudan,105727.0,Raja,25.75,8.75,SSD,1625.0,Western Bahr El Ghazal,160.0,South Sudan,105727.0,Raja,both,identical +142253,26.25,8.75,SSD,1621.0,Northern Bahr El Ghazal,160.0,South Sudan,105698.0,Aweil West,26.25,8.75,SSD,1621.0,Northern Bahr El Ghazal,160.0,South Sudan,105698.0,Aweil West,both,identical +142254,26.75,8.75,SSD,1621.0,Northern Bahr El Ghazal,160.0,South Sudan,105694.0,Aweil Centre,26.75,8.75,SSD,1621.0,Northern Bahr El Ghazal,160.0,South Sudan,105694.0,Aweil Centre,both,identical +142255,27.25,8.75,SSD,1621.0,Northern Bahr El Ghazal,160.0,South Sudan,105694.0,Aweil Centre,27.25,8.75,SSD,1621.0,Northern Bahr El Ghazal,160.0,South Sudan,105694.0,Aweil Centre,both,identical +142256,27.75,8.75,SSD,1621.0,Northern Bahr El Ghazal,160.0,South Sudan,105697.0,Aweil South,27.75,8.75,SSD,1621.0,Northern Bahr El Ghazal,160.0,South Sudan,105697.0,Aweil South,both,identical +142257,28.25,8.75,SSD,1624.0,Warrap,160.0,South Sudan,105721.0,Gogrial West,28.25,8.75,SSD,1624.0,Warrap,160.0,South Sudan,105721.0,Gogrial West,both,identical +142258,28.75,8.75,SSD,1624.0,Warrap,160.0,South Sudan,105720.0,Gogrial East,28.75,8.75,SSD,1624.0,Warrap,160.0,South Sudan,105720.0,Gogrial East,both,identical +142259,29.25,8.75,SSD,1624.0,Warrap,160.0,South Sudan,105723.0,Tonj North,29.25,8.75,SSD,1624.0,Warrap,160.0,South Sudan,105723.0,Tonj North,both,identical +142260,29.75,8.75,SSD,1622.0,Unity,160.0,South Sudan,105701.0,Koch,29.75,8.75,SSD,1622.0,Unity,160.0,South Sudan,105701.0,Koch,both,identical +142261,30.25,8.75,SSD,1622.0,Unity,160.0,South Sudan,105680.0,Fangak,30.25,8.75,SSD,1619.0,Jonglei,160.0,South Sudan,105680.0,Fangak,both,admin_reallocation +142262,30.75,8.75,SSD,1619.0,Jonglei,160.0,South Sudan,105680.0,Fangak,30.75,8.75,SSD,1619.0,Jonglei,160.0,South Sudan,105680.0,Fangak,both,identical +142263,31.25,8.75,SSD,1619.0,Jonglei,160.0,South Sudan,105676.0,Ayod,31.25,8.75,SSD,1619.0,Jonglei,160.0,South Sudan,105676.0,Ayod,both,identical +142264,31.75,8.75,SSD,1619.0,Jonglei,160.0,South Sudan,105681.0,Nyirol,31.75,8.75,SSD,1619.0,Jonglei,160.0,South Sudan,105681.0,Nyirol,both,identical +142265,32.25,8.75,SSD,1619.0,Jonglei,160.0,South Sudan,105681.0,Nyirol,32.25,8.75,SSD,1619.0,Jonglei,160.0,South Sudan,105681.0,Nyirol,both,identical +142266,32.75,8.75,SSD,1623.0,Upper Nile,160.0,South Sudan,105719.0,Ulang,32.75,8.75,SSD,1623.0,Upper Nile,160.0,South Sudan,105719.0,Ulang,both,identical +142267,33.25,8.75,SSD,1623.0,Upper Nile,160.0,South Sudan,105711.0,Luakpiny/Nasir,33.25,8.75,SSD,1623.0,Upper Nile,160.0,South Sudan,105711.0,Luakpiny/Nasir,both,identical +142268,33.75,8.75,SSD,1623.0,Upper Nile,160.0,South Sudan,105713.0,Maiwut,33.75,8.75,SSD,1623.0,Upper Nile,160.0,South Sudan,105713.0,Maiwut,both,identical +142269,34.25,8.75,ETH,1296.0,Oromia,124.0,Ethiopia,103085.0,Kelem Wellega,34.25,8.75,ETH,1296.0,Oromia,124.0,Ethiopia,103085.0,Kelem Wellega,both,identical +142270,34.75,8.75,ETH,1296.0,Oromia,124.0,Ethiopia,103085.0,Kelem Wellega,34.75,8.75,ETH,1296.0,Oromia,124.0,Ethiopia,103085.0,Kelem Wellega,both,identical +142271,35.25,8.75,ETH,1296.0,Oromia,124.0,Ethiopia,103085.0,Kelem Wellega,35.25,8.75,ETH,1296.0,Oromia,124.0,Ethiopia,103085.0,Kelem Wellega,both,identical +142272,35.75,8.75,ETH,1296.0,Oromia,124.0,Ethiopia,103092.0,West Wellega,35.75,8.75,ETH,1296.0,Oromia,124.0,Ethiopia,103092.0,West Wellega,both,identical +142273,36.25,8.75,ETH,1296.0,Oromia,124.0,Ethiopia,103075.0,Buno Bedele,36.25,8.75,ETH,1296.0,Oromia,124.0,Ethiopia,103075.0,Buno Bedele,both,identical +142274,36.75,8.75,ETH,1296.0,Oromia,124.0,Ethiopia,103079.0,East Wellega,36.75,8.75,ETH,1296.0,Oromia,124.0,Ethiopia,103079.0,East Wellega,both,identical +142275,37.25,8.75,ETH,1296.0,Oromia,124.0,Ethiopia,103091.0,West Shewa,37.25,8.75,ETH,1296.0,Oromia,124.0,Ethiopia,103091.0,West Shewa,both,identical +142276,37.75,8.75,ETH,1296.0,Oromia,124.0,Ethiopia,103091.0,West Shewa,37.75,8.75,ETH,1296.0,Oromia,124.0,Ethiopia,103091.0,West Shewa,both,identical +142277,38.25,8.75,ETH,1296.0,Oromia,124.0,Ethiopia,103087.0,South West Shewa,38.25,8.75,ETH,1296.0,Oromia,124.0,Ethiopia,103087.0,South West Shewa,both,identical +142278,38.75,8.75,ETH,1296.0,Oromia,124.0,Ethiopia,103080.0,Finfine Special,38.75,8.75,ETH,1296.0,Oromia,124.0,Ethiopia,103080.0,Finfine Special,both,identical +142279,39.25,8.75,ETH,1296.0,Oromia,124.0,Ethiopia,103078.0,East Shewa,39.25,8.75,ETH,1296.0,Oromia,124.0,Ethiopia,103078.0,East Shewa,both,identical +142280,39.75,8.75,ETH,1296.0,Oromia,124.0,Ethiopia,103078.0,East Shewa,39.75,8.75,ETH,1296.0,Oromia,124.0,Ethiopia,103078.0,East Shewa,both,identical +142281,40.25,8.75,ETH,1296.0,Oromia,124.0,Ethiopia,103090.0,West Hararge,40.25,8.75,ETH,1296.0,Oromia,124.0,Ethiopia,103090.0,West Hararge,both,identical +142282,40.75,8.75,ETH,1296.0,Oromia,124.0,Ethiopia,103090.0,West Hararge,40.75,8.75,ETH,1296.0,Oromia,124.0,Ethiopia,103090.0,West Hararge,both,identical +142283,41.25,8.75,ETH,1296.0,Oromia,124.0,Ethiopia,103077.0,East Hararge,41.25,8.75,ETH,1296.0,Oromia,124.0,Ethiopia,103077.0,East Hararge,both,identical +142284,41.75,8.75,ETH,1296.0,Oromia,124.0,Ethiopia,103077.0,East Hararge,41.75,8.75,ETH,1296.0,Oromia,124.0,Ethiopia,103077.0,East Hararge,both,identical +142285,42.25,8.75,ETH,1296.0,Oromia,124.0,Ethiopia,103077.0,East Hararge,42.25,8.75,ETH,1296.0,Oromia,124.0,Ethiopia,103077.0,East Hararge,both,identical +142286,42.75,8.75,ETH,1296.0,Oromia,124.0,Ethiopia,103077.0,East Hararge,42.75,8.75,ETH,1296.0,Oromia,124.0,Ethiopia,103077.0,East Hararge,both,identical +142287,43.25,8.75,ETH,1299.0,Somali,124.0,Ethiopia,103115.0,Fafan,43.25,8.75,ETH,1299.0,Somali,124.0,Ethiopia,103115.0,Fafan,both,identical +142288,43.75,8.75,ETH,1299.0,Somali,124.0,Ethiopia,103115.0,Fafan,43.75,8.75,ETH,1299.0,Somali,124.0,Ethiopia,103115.0,Fafan,both,identical +142289,44.25,8.75,ETH,1299.0,Somali,124.0,Ethiopia,103116.0,Jarar,44.25,8.75,ETH,1299.0,Somali,124.0,Ethiopia,103116.0,Jarar,both,identical +142290,44.75,8.75,-99,,,,,,,44.75,8.75,ETH,1299.0,Somali,124.0,Ethiopia,103116.0,Jarar,both,country_reassignment +142291,45.25,8.75,-99,,,,,,,45.25,8.75,SOM,1605.0,Togdheer,158.0,Somalia,105604.0,Owdweyne,both,country_reassignment +142292,45.75,8.75,-99,,,,,,,45.75,8.75,SOM,1605.0,Togdheer,158.0,Somalia,105602.0,Burco,both,country_reassignment +142293,46.25,8.75,-99,,,,,,,46.25,8.75,SOM,1605.0,Togdheer,158.0,Somalia,105602.0,Burco,both,country_reassignment +142294,46.75,8.75,-99,,,,,,,46.75,8.75,SOM,1605.0,Togdheer,158.0,Somalia,105603.0,Buuhoodle,both,country_reassignment +142295,47.25,8.75,-99,,,,,,,47.25,8.75,SOM,1604.0,Sool,158.0,Somalia,105599.0,Laas Caanood,both,country_reassignment +142296,47.75,8.75,-99,,,,,,,47.75,8.75,SOM,1604.0,Sool,158.0,Somalia,105599.0,Laas Caanood,both,country_reassignment +142297,48.25,8.75,-99,,,,,,,48.25,8.75,SOM,1604.0,Sool,158.0,Somalia,105599.0,Laas Caanood,both,country_reassignment +142298,48.75,8.75,SOM,1602.0,Nugaal,158.0,Somalia,105594.0,Garoowe,48.75,8.75,SOM,1602.0,Nugaal,158.0,Somalia,105594.0,Garoowe,both,identical +142299,49.25,8.75,SOM,1602.0,Nugaal,158.0,Somalia,105550.0,Qardho,49.25,8.75,SOM,1592.0,Bari,158.0,Somalia,105550.0,Qardho,both,admin_reallocation +142300,49.75,8.75,SOM,1592.0,Bari,158.0,Somalia,105550.0,Qardho,49.75,8.75,SOM,1592.0,Bari,158.0,Somalia,105550.0,Qardho,both,identical +142301,50.25,8.75,SOM,1592.0,Bari,158.0,Somalia,105545.0,Bandarbeyla,50.25,8.75,SOM,1592.0,Bari,158.0,Somalia,105545.0,Bandarbeyla,both,identical +142302,50.75,8.75,SOM,1592.0,Bari,158.0,Somalia,105545.0,Bandarbeyla,50.75,8.75,SOM,1592.0,Bari,158.0,Somalia,105545.0,Bandarbeyla,both,identical +142893,-13.75,9.25,GIN,1333.0,Conakry,131.0,Guinea,103456.0,Conakry,-13.75,9.25,GIN,1333.0,Conakry,131.0,Guinea,103456.0,Conakry,both,identical +142894,-13.25,9.25,GIN,1336.0,Kindia,131.0,Guinea,103468.0,Forecariah,-13.25,9.25,GIN,1336.0,Kindia,131.0,Guinea,103468.0,Forecariah,both,identical +142895,-12.75,9.25,SLE,1585.0,North Western,157.0,Sierra Leone,105522.0,Kambia,-12.75,9.25,SLE,1585.0,North Western,157.0,Sierra Leone,105522.0,Kambia,both,identical +142896,-12.25,9.25,SLE,1585.0,North Western,157.0,Sierra Leone,105525.0,Bombali,-12.25,9.25,SLE,1586.0,Northern,157.0,Sierra Leone,105525.0,Bombali,both,admin_reallocation +142897,-11.75,9.25,SLE,1586.0,Northern,157.0,Sierra Leone,105527.0,Koinadugu,-11.75,9.25,SLE,1586.0,Northern,157.0,Sierra Leone,105527.0,Koinadugu,both,identical +142898,-11.25,9.25,SLE,1586.0,Northern,157.0,Sierra Leone,105527.0,Koinadugu,-11.25,9.25,SLE,1586.0,Northern,157.0,Sierra Leone,105527.0,Koinadugu,both,identical +142899,-10.75,9.25,SLE,1584.0,Eastern,157.0,Sierra Leone,105521.0,Kono,-10.75,9.25,SLE,1584.0,Eastern,157.0,Sierra Leone,105521.0,Kono,both,identical +142900,-10.25,9.25,GIN,1334.0,Faranah,131.0,Guinea,103460.0,Kissidougou,-10.25,9.25,GIN,1334.0,Faranah,131.0,Guinea,103460.0,Kissidougou,both,identical +142901,-9.75,9.25,GIN,1334.0,Faranah,131.0,Guinea,103460.0,Kissidougou,-9.75,9.25,GIN,1334.0,Faranah,131.0,Guinea,103460.0,Kissidougou,both,identical +142902,-9.25,9.25,GIN,1335.0,Kankan,131.0,Guinea,103462.0,Kerouane,-9.25,9.25,GIN,1335.0,Kankan,131.0,Guinea,103462.0,Kerouane,both,identical +142903,-8.75,9.25,GIN,1335.0,Kankan,131.0,Guinea,103462.0,Kerouane,-8.75,9.25,GIN,1335.0,Kankan,131.0,Guinea,103462.0,Kerouane,both,identical +142904,-8.25,9.25,GIN,1339.0,Nzerekore,131.0,Guinea,103479.0,Beyla,-8.25,9.25,GIN,1339.0,Nzerekore,131.0,Guinea,103479.0,Beyla,both,identical +142905,-7.75,9.25,CIV,1201.0,Denguélé,117.0,Côte D'Ivoire,102265.0,Kabadougou,-7.75,9.25,CIV,1201.0,Denguélé,117.0,Côte D'Ivoire,102265.0,Kabadougou,both,identical +142906,-7.25,9.25,CIV,1201.0,Denguélé,117.0,Côte D'Ivoire,102265.0,Kabadougou,-7.25,9.25,CIV,1201.0,Denguélé,117.0,Côte D'Ivoire,102265.0,Kabadougou,both,identical +142907,-6.75,9.25,CIV,1207.0,Savanes,117.0,Côte D'Ivoire,102280.0,Bagoué,-6.75,9.25,CIV,1207.0,Savanes,117.0,Côte D'Ivoire,102280.0,Bagoué,both,identical +142908,-6.25,9.25,CIV,1207.0,Savanes,117.0,Côte D'Ivoire,102281.0,Poro,-6.25,9.25,CIV,1207.0,Savanes,117.0,Côte D'Ivoire,102281.0,Poro,both,identical +142909,-5.75,9.25,CIV,1207.0,Savanes,117.0,Côte D'Ivoire,102281.0,Poro,-5.75,9.25,CIV,1207.0,Savanes,117.0,Côte D'Ivoire,102281.0,Poro,both,identical +142910,-5.25,9.25,CIV,1208.0,Vallée Du Bandama,117.0,Côte D'Ivoire,102284.0,Hambol,-5.25,9.25,CIV,1208.0,Vallée Du Bandama,117.0,Côte D'Ivoire,102284.0,Hambol,both,identical +142911,-4.75,9.25,CIV,1207.0,Savanes,117.0,Côte D'Ivoire,102282.0,Tchologo,-4.75,9.25,CIV,1207.0,Savanes,117.0,Côte D'Ivoire,102282.0,Tchologo,both,identical +142912,-4.25,9.25,CIV,1207.0,Savanes,117.0,Côte D'Ivoire,102282.0,Tchologo,-4.25,9.25,CIV,1207.0,Savanes,117.0,Côte D'Ivoire,102282.0,Tchologo,both,identical +142913,-3.75,9.25,CIV,1211.0,Zanzan,117.0,Côte D'Ivoire,102289.0,Bounkani,-3.75,9.25,CIV,1211.0,Zanzan,117.0,Côte D'Ivoire,102289.0,Bounkani,both,identical +142914,-3.25,9.25,CIV,1211.0,Zanzan,117.0,Côte D'Ivoire,102289.0,Bounkani,-3.25,9.25,CIV,1211.0,Zanzan,117.0,Côte D'Ivoire,102289.0,Bounkani,both,identical +142915,-2.75,9.25,CIV,1211.0,Zanzan,117.0,Côte D'Ivoire,102289.0,Bounkani,-2.75,9.25,CIV,1211.0,Zanzan,117.0,Côte D'Ivoire,102289.0,Bounkani,both,identical +142916,-2.25,9.25,GHA,1326.0,Northern,129.0,Ghana,103371.0,Sawla,-2.25,9.25,GHA,1326.0,Northern,129.0,Ghana,103371.0,Sawla,both,identical +142917,-1.75,9.25,GHA,1326.0,Northern,129.0,Ghana,103375.0,West Gonja,-1.75,9.25,GHA,1326.0,Northern,129.0,Ghana,103375.0,West Gonja,both,identical +142918,-1.25,9.25,GHA,1326.0,Northern,129.0,Ghana,103357.0,Gonja Central,-1.25,9.25,GHA,1326.0,Northern,129.0,Ghana,103357.0,Gonja Central,both,identical +142919,-0.75,9.25,GHA,1326.0,Northern,129.0,Ghana,103356.0,East Gonja,-0.75,9.25,GHA,1326.0,Northern,129.0,Ghana,103356.0,East Gonja,both,identical +142920,-0.25,9.25,GHA,1326.0,Northern,129.0,Ghana,103364.0,Mion,-0.25,9.25,GHA,1326.0,Northern,129.0,Ghana,103364.0,Mion,both,identical +142921,0.25,9.25,GHA,1326.0,Northern,129.0,Ghana,103378.0,Zabzugu,0.25,9.25,GHA,1326.0,Northern,129.0,Ghana,103378.0,Zabzugu,both,identical +142922,0.75,9.25,TGO,1646.0,Kara,162.0,Togo,105933.0,Bassar,0.75,9.25,TGO,1646.0,Kara,162.0,Togo,105933.0,Bassar,both,identical +142923,1.25,9.25,TGO,1645.0,Centrale,162.0,Togo,105931.0,Tchaoudjo,1.25,9.25,TGO,1645.0,Centrale,162.0,Togo,105931.0,Tchaoudjo,both,identical +142924,1.75,9.25,BEN,1077.0,Donga,105.0,Benin,101757.0,Bassila,1.75,9.25,BEN,1077.0,Donga,105.0,Benin,101757.0,Bassila,both,identical +142925,2.25,9.25,BEN,1074.0,Borgou,105.0,Benin,101744.0,Tchaourou,2.25,9.25,BEN,1074.0,Borgou,105.0,Benin,101744.0,Tchaourou,both,identical +142926,2.75,9.25,BEN,1074.0,Borgou,105.0,Benin,101744.0,Tchaourou,2.75,9.25,BEN,1074.0,Borgou,105.0,Benin,101744.0,Tchaourou,both,identical +142927,3.25,9.25,NGA,1540.0,Kwara,151.0,Nigeria,105121.0,Baruten,3.25,9.25,NGA,1540.0,Kwara,151.0,Nigeria,105121.0,Baruten,both,identical +142928,3.75,9.25,NGA,1540.0,Kwara,151.0,Nigeria,105121.0,Baruten,3.75,9.25,NGA,1540.0,Kwara,151.0,Nigeria,105121.0,Baruten,both,identical +142929,4.25,9.25,NGA,1540.0,Kwara,151.0,Nigeria,105130.0,Kaiama,4.25,9.25,NGA,1540.0,Kwara,151.0,Nigeria,105130.0,Kaiama,both,identical +142930,4.75,9.25,NGA,1540.0,Kwara,151.0,Nigeria,105185.0,Mokwa,4.75,9.25,NGA,1543.0,Niger,151.0,Nigeria,105185.0,Mokwa,both,admin_reallocation +142931,5.25,9.25,NGA,1543.0,Niger,151.0,Nigeria,105185.0,Mokwa,5.25,9.25,NGA,1543.0,Niger,151.0,Nigeria,105185.0,Mokwa,both,identical +142932,5.75,9.25,NGA,1543.0,Niger,151.0,Nigeria,105181.0,Lavun,5.75,9.25,NGA,1543.0,Niger,151.0,Nigeria,105181.0,Lavun,both,identical +142933,6.25,9.25,NGA,1543.0,Niger,151.0,Nigeria,105178.0,Katcha,6.25,9.25,NGA,1543.0,Niger,151.0,Nigeria,105178.0,Katcha,both,identical +142934,6.75,9.25,NGA,1543.0,Niger,151.0,Nigeria,105187.0,Paikoro,6.75,9.25,NGA,1543.0,Niger,151.0,Nigeria,105187.0,Paikoro,both,identical +142935,7.25,9.25,NGA,1531.0,Federal Capital Territory,151.0,Nigeria,105177.0,Gurara,7.25,9.25,NGA,1543.0,Niger,151.0,Nigeria,105177.0,Gurara,both,admin_reallocation +142936,7.75,9.25,NGA,1542.0,Nassarawa,151.0,Nigeria,105159.0,Karu,7.75,9.25,NGA,1542.0,Nassarawa,151.0,Nigeria,105159.0,Karu,both,identical +142937,8.25,9.25,NGA,1535.0,Kaduna,151.0,Nigeria,104983.0,Jemaa,8.25,9.25,NGA,1535.0,Kaduna,151.0,Nigeria,104983.0,Jemaa,both,identical +142938,8.75,9.25,NGA,1548.0,Plateau,151.0,Nigeria,105297.0,Bokkos,8.75,9.25,NGA,1548.0,Plateau,151.0,Nigeria,105297.0,Bokkos,both,identical +142939,9.25,9.25,NGA,1548.0,Plateau,151.0,Nigeria,105305.0,Mangu,9.25,9.25,NGA,1548.0,Plateau,151.0,Nigeria,105305.0,Mangu,both,identical +142940,9.75,9.25,NGA,1548.0,Plateau,151.0,Nigeria,105302.0,Kanke,9.75,9.25,NGA,1548.0,Plateau,151.0,Nigeria,105302.0,Kanke,both,identical +142941,10.25,9.25,NGA,1548.0,Plateau,151.0,Nigeria,105311.0,Wase,10.25,9.25,NGA,1548.0,Plateau,151.0,Nigeria,105311.0,Wase,both,identical +142942,10.75,9.25,NGA,1551.0,Taraba,151.0,Nigeria,105365.0,Karim Lamido,10.75,9.25,NGA,1551.0,Taraba,151.0,Nigeria,105365.0,Karim Lamido,both,identical +142943,11.25,9.25,NGA,1551.0,Taraba,151.0,Nigeria,105365.0,Karim Lamido,11.25,9.25,NGA,1551.0,Taraba,151.0,Nigeria,105365.0,Karim Lamido,both,identical +142944,11.75,9.25,NGA,1518.0,Adamawa,151.0,Nigeria,104663.0,Numan,11.75,9.25,NGA,1518.0,Adamawa,151.0,Nigeria,104663.0,Numan,both,identical +142945,12.25,9.25,NGA,1518.0,Adamawa,151.0,Nigeria,104649.0,Fufore,12.25,9.25,NGA,1518.0,Adamawa,151.0,Nigeria,104649.0,Fufore,both,identical +142946,12.75,9.25,NGA,1518.0,Adamawa,151.0,Nigeria,104649.0,Fufore,12.75,9.25,NGA,1518.0,Adamawa,151.0,Nigeria,104649.0,Fufore,both,identical +142947,13.25,9.25,CMR,1147.0,Nord,112.0,Cameroon,102036.0,Bénoué,13.25,9.25,CMR,1147.0,Nord,112.0,Cameroon,102036.0,Bénoué,both,identical +142948,13.75,9.25,CMR,1147.0,Nord,112.0,Cameroon,102036.0,Bénoué,13.75,9.25,CMR,1147.0,Nord,112.0,Cameroon,102036.0,Bénoué,both,identical +142949,14.25,9.25,CMR,1147.0,Nord,112.0,Cameroon,102039.0,Mayo-Rey,14.25,9.25,CMR,1147.0,Nord,112.0,Cameroon,102039.0,Mayo-Rey,both,identical +142950,14.75,9.25,TCD,1174.0,Mayo-Kebbi Ouest,114.0,Chad,102130.0,Mayo-Dallah,14.75,9.25,TCD,1174.0,Mayo-Kebbi Ouest,114.0,Chad,102130.0,Mayo-Dallah,both,identical +142951,15.25,9.25,TCD,1174.0,Mayo-Kebbi Ouest,114.0,Chad,102130.0,Mayo-Dallah,15.25,9.25,TCD,1174.0,Mayo-Kebbi Ouest,114.0,Chad,102130.0,Mayo-Dallah,both,identical +142952,15.75,9.25,TCD,1180.0,Tandjilé,114.0,Chad,102143.0,Tandjile Ouest,15.75,9.25,TCD,1180.0,Tandjilé,114.0,Chad,102143.0,Tandjile Ouest,both,identical +142953,16.25,9.25,TCD,1180.0,Tandjilé,114.0,Chad,102144.0,Tandjilé Centre,16.25,9.25,TCD,1180.0,Tandjilé,114.0,Chad,102144.0,Tandjilé Centre,both,identical +142954,16.75,9.25,TCD,1180.0,Tandjilé,114.0,Chad,102145.0,Tandjilé Est,16.75,9.25,TCD,1180.0,Tandjilé,114.0,Chad,102145.0,Tandjilé Est,both,identical +142955,17.25,9.25,TCD,1172.0,Mandoul,114.0,Chad,102123.0,Mandoul Oriental,17.25,9.25,TCD,1172.0,Mandoul,114.0,Chad,102123.0,Mandoul Oriental,both,identical +142956,17.75,9.25,TCD,1172.0,Mandoul,114.0,Chad,102123.0,Mandoul Oriental,17.75,9.25,TCD,1172.0,Mandoul,114.0,Chad,102123.0,Mandoul Oriental,both,identical +142957,18.25,9.25,TCD,1175.0,Moyen-Chari,114.0,Chad,102131.0,Bahr-Köh,18.25,9.25,TCD,1175.0,Moyen-Chari,114.0,Chad,102131.0,Bahr-Köh,both,identical +142958,18.75,9.25,TCD,1175.0,Moyen-Chari,114.0,Chad,102133.0,Lac Iro,18.75,9.25,TCD,1175.0,Moyen-Chari,114.0,Chad,102133.0,Lac Iro,both,identical +142959,19.25,9.25,TCD,1175.0,Moyen-Chari,114.0,Chad,102133.0,Lac Iro,19.25,9.25,TCD,1175.0,Moyen-Chari,114.0,Chad,102133.0,Lac Iro,both,identical +142960,19.75,9.25,TCD,1175.0,Moyen-Chari,114.0,Chad,102133.0,Lac Iro,19.75,9.25,TCD,1175.0,Moyen-Chari,114.0,Chad,102133.0,Lac Iro,both,identical +142961,20.25,9.25,TCD,1178.0,Salamat,114.0,Chad,102140.0,Haraze-Mangueigne,20.25,9.25,TCD,1178.0,Salamat,114.0,Chad,102140.0,Haraze-Mangueigne,both,identical +142962,20.75,9.25,CAF,1154.0,Fertit,113.0,Central African Republic,102069.0,Bamingui-Bangoran,20.75,9.25,CAF,1154.0,Fertit,113.0,Central African Republic,102069.0,Bamingui-Bangoran,both,identical +142963,21.25,9.25,CAF,1154.0,Fertit,113.0,Central African Republic,102069.0,Bamingui-Bangoran,21.25,9.25,CAF,1154.0,Fertit,113.0,Central African Republic,102069.0,Bamingui-Bangoran,both,identical +142964,21.75,9.25,CAF,1154.0,Fertit,113.0,Central African Republic,102069.0,Bamingui-Bangoran,21.75,9.25,CAF,1154.0,Fertit,113.0,Central African Republic,102069.0,Bamingui-Bangoran,both,identical +142965,22.25,9.25,CAF,1154.0,Fertit,113.0,Central African Republic,102071.0,Vakaga,22.25,9.25,CAF,1154.0,Fertit,113.0,Central African Republic,102071.0,Vakaga,both,identical +142966,22.75,9.25,CAF,1154.0,Fertit,113.0,Central African Republic,102071.0,Vakaga,22.75,9.25,CAF,1154.0,Fertit,113.0,Central African Republic,102071.0,Vakaga,both,identical +142967,23.25,9.25,CAF,1154.0,Fertit,113.0,Central African Republic,102071.0,Vakaga,23.25,9.25,CAF,1154.0,Fertit,113.0,Central African Republic,102071.0,Vakaga,both,identical +142968,23.75,9.25,SDN,1640.0,South Darfur,161.0,Sudan,105858.0,Al Radoum,23.75,9.25,SDN,1640.0,South Darfur,161.0,Sudan,105858.0,Al Radoum,both,identical +142969,24.25,9.25,SDN,1640.0,South Darfur,161.0,Sudan,105858.0,Al Radoum,24.25,9.25,SDN,1640.0,South Darfur,161.0,Sudan,105858.0,Al Radoum,both,identical +142970,24.75,9.25,SSD,1625.0,Western Bahr El Ghazal,160.0,South Sudan,105727.0,Raja,24.75,9.25,SSD,1625.0,Western Bahr El Ghazal,160.0,South Sudan,105727.0,Raja,both,identical +142971,25.25,9.25,SSD,1625.0,Western Bahr El Ghazal,160.0,South Sudan,105727.0,Raja,25.25,9.25,SSD,1625.0,Western Bahr El Ghazal,160.0,South Sudan,105727.0,Raja,both,identical +142972,25.75,9.25,SSD,1625.0,Western Bahr El Ghazal,160.0,South Sudan,105727.0,Raja,25.75,9.25,SSD,1625.0,Western Bahr El Ghazal,160.0,South Sudan,105727.0,Raja,both,identical +142973,26.25,9.25,SSD,1621.0,Northern Bahr El Ghazal,160.0,South Sudan,105696.0,Aweil North,26.25,9.25,SSD,1621.0,Northern Bahr El Ghazal,160.0,South Sudan,105696.0,Aweil North,both,identical +142974,26.75,9.25,SSD,1621.0,Northern Bahr El Ghazal,160.0,South Sudan,105696.0,Aweil North,26.75,9.25,SSD,1621.0,Northern Bahr El Ghazal,160.0,South Sudan,105696.0,Aweil North,both,identical +142975,27.25,9.25,SSD,1621.0,Northern Bahr El Ghazal,160.0,South Sudan,105696.0,Aweil North,27.25,9.25,SSD,1621.0,Northern Bahr El Ghazal,160.0,South Sudan,105696.0,Aweil North,both,identical +142976,27.75,9.25,SSD,1621.0,Northern Bahr El Ghazal,160.0,South Sudan,105695.0,Aweil East,27.75,9.25,SSD,1621.0,Northern Bahr El Ghazal,160.0,South Sudan,105695.0,Aweil East,both,identical +142977,28.25,9.25,SSD,1624.0,Warrap,160.0,South Sudan,105725.0,Twic,28.25,9.25,SSD,1624.0,Warrap,160.0,South Sudan,105725.0,Twic,both,identical +142978,28.75,9.25,SSD,1624.0,Warrap,160.0,South Sudan,105725.0,Twic,28.75,9.25,SSD,1624.0,Warrap,160.0,South Sudan,105725.0,Twic,both,identical +142979,29.25,9.25,SSD,1622.0,Unity,160.0,South Sudan,105704.0,Mayom,29.25,9.25,SSD,1622.0,Unity,160.0,South Sudan,105704.0,Mayom,both,identical +142980,29.75,9.25,SSD,1622.0,Unity,160.0,South Sudan,105707.0,Rubkona,29.75,9.25,SSD,1622.0,Unity,160.0,South Sudan,105707.0,Rubkona,both,identical +142981,30.25,9.25,SSD,1622.0,Unity,160.0,South Sudan,105700.0,Guit,30.25,9.25,SSD,1622.0,Unity,160.0,South Sudan,105700.0,Guit,both,identical +142982,30.75,9.25,SSD,1619.0,Jonglei,160.0,South Sudan,105680.0,Fangak,30.75,9.25,SSD,1619.0,Jonglei,160.0,South Sudan,105680.0,Fangak,both,identical +142983,31.25,9.25,SSD,1619.0,Jonglei,160.0,South Sudan,105678.0,Canal/Pigi,31.25,9.25,SSD,1619.0,Jonglei,160.0,South Sudan,105678.0,Canal/Pigi,both,identical +142984,31.75,9.25,SSD,1623.0,Upper Nile,160.0,South Sudan,105717.0,Panyikang,31.75,9.25,SSD,1623.0,Upper Nile,160.0,South Sudan,105717.0,Panyikang,both,identical +142985,32.25,9.25,SSD,1623.0,Upper Nile,160.0,South Sudan,105708.0,Baliet,32.25,9.25,SSD,1623.0,Upper Nile,160.0,South Sudan,105708.0,Baliet,both,identical +142986,32.75,9.25,SSD,1623.0,Upper Nile,160.0,South Sudan,105708.0,Baliet,32.75,9.25,SSD,1623.0,Upper Nile,160.0,South Sudan,105708.0,Baliet,both,identical +142987,33.25,9.25,SSD,1623.0,Upper Nile,160.0,South Sudan,105710.0,Longochuk,33.25,9.25,SSD,1623.0,Upper Nile,160.0,South Sudan,105710.0,Longochuk,both,identical +142988,33.75,9.25,SSD,1623.0,Upper Nile,160.0,South Sudan,105710.0,Longochuk,33.75,9.25,SSD,1623.0,Upper Nile,160.0,South Sudan,105710.0,Longochuk,both,identical +142989,34.25,9.25,ETH,1292.0,Benishangul Gumz,124.0,Ethiopia,103063.0,Mao Komo Special,34.25,9.25,ETH,1292.0,Benishangul Gumz,124.0,Ethiopia,103063.0,Mao Komo Special,both,identical +142990,34.75,9.25,ETH,1296.0,Oromia,124.0,Ethiopia,103092.0,West Wellega,34.75,9.25,ETH,1296.0,Oromia,124.0,Ethiopia,103092.0,West Wellega,both,identical +142991,35.25,9.25,ETH,1296.0,Oromia,124.0,Ethiopia,103092.0,West Wellega,35.25,9.25,ETH,1296.0,Oromia,124.0,Ethiopia,103092.0,West Wellega,both,identical +142992,35.75,9.25,ETH,1296.0,Oromia,124.0,Ethiopia,103092.0,West Wellega,35.75,9.25,ETH,1296.0,Oromia,124.0,Ethiopia,103092.0,West Wellega,both,identical +142993,36.25,9.25,ETH,1292.0,Benishangul Gumz,124.0,Ethiopia,103062.0,Kamashi,36.25,9.25,ETH,1292.0,Benishangul Gumz,124.0,Ethiopia,103062.0,Kamashi,both,identical +142994,36.75,9.25,ETH,1296.0,Oromia,124.0,Ethiopia,103079.0,East Wellega,36.75,9.25,ETH,1296.0,Oromia,124.0,Ethiopia,103079.0,East Wellega,both,identical +142995,37.25,9.25,ETH,1296.0,Oromia,124.0,Ethiopia,103082.0,Horo Gudru Wellega,37.25,9.25,ETH,1296.0,Oromia,124.0,Ethiopia,103082.0,Horo Gudru Wellega,both,identical +142996,37.75,9.25,ETH,1296.0,Oromia,124.0,Ethiopia,103091.0,West Shewa,37.75,9.25,ETH,1296.0,Oromia,124.0,Ethiopia,103091.0,West Shewa,both,identical +142997,38.25,9.25,ETH,1296.0,Oromia,124.0,Ethiopia,103091.0,West Shewa,38.25,9.25,ETH,1296.0,Oromia,124.0,Ethiopia,103091.0,West Shewa,both,identical +142998,38.75,9.25,ETH,1296.0,Oromia,124.0,Ethiopia,103080.0,Finfine Special,38.75,9.25,ETH,1296.0,Oromia,124.0,Ethiopia,103080.0,Finfine Special,both,identical +142999,39.25,9.25,ETH,1296.0,Oromia,124.0,Ethiopia,103086.0,North Shewa (Or),39.25,9.25,ETH,1296.0,Oromia,124.0,Ethiopia,103086.0,North Shewa (Or),both,identical +143000,39.75,9.25,ETH,1291.0,Amhara,124.0,Ethiopia,103053.0,North Shewa (Am),39.75,9.25,ETH,1291.0,Amhara,124.0,Ethiopia,103053.0,North Shewa (Am),both,identical +143001,40.25,9.25,ETH,1290.0,Afar,124.0,Ethiopia,103046.0,Gabi /Zone 3,40.25,9.25,ETH,1290.0,Afar,124.0,Ethiopia,103046.0,Gabi /Zone 3,both,identical +143002,40.75,9.25,ETH,1296.0,Oromia,124.0,Ethiopia,103090.0,West Hararge,40.75,9.25,ETH,1296.0,Oromia,124.0,Ethiopia,103090.0,West Hararge,both,identical +143003,41.25,9.25,ETH,1296.0,Oromia,124.0,Ethiopia,103077.0,East Hararge,41.25,9.25,ETH,1296.0,Oromia,124.0,Ethiopia,103077.0,East Hararge,both,identical +143004,41.75,9.25,ETH,1296.0,Oromia,124.0,Ethiopia,103077.0,East Hararge,41.75,9.25,ETH,1296.0,Oromia,124.0,Ethiopia,103077.0,East Hararge,both,identical +143005,42.25,9.25,ETH,1296.0,Oromia,124.0,Ethiopia,103077.0,East Hararge,42.25,9.25,ETH,1296.0,Oromia,124.0,Ethiopia,103077.0,East Hararge,both,identical +143006,42.75,9.25,ETH,1299.0,Somali,124.0,Ethiopia,103115.0,Fafan,42.75,9.25,ETH,1299.0,Somali,124.0,Ethiopia,103115.0,Fafan,both,identical +143007,43.25,9.25,ETH,1299.0,Somali,124.0,Ethiopia,103115.0,Fafan,43.25,9.25,ETH,1299.0,Somali,124.0,Ethiopia,103115.0,Fafan,both,identical +143008,43.75,9.25,-99,,,,,,,43.75,9.25,SOM,1606.0,Woqooyi Galbeed,158.0,Somalia,105608.0,Hargeysa,both,country_reassignment +143009,44.25,9.25,-99,,,,,,,44.25,9.25,SOM,1606.0,Woqooyi Galbeed,158.0,Somalia,105608.0,Hargeysa,both,country_reassignment +143010,44.75,9.25,-99,,,,,,,44.75,9.25,SOM,1605.0,Togdheer,158.0,Somalia,105604.0,Owdweyne,both,country_reassignment +143011,45.25,9.25,-99,,,,,,,45.25,9.25,SOM,1605.0,Togdheer,158.0,Somalia,105604.0,Owdweyne,both,country_reassignment +143012,45.75,9.25,-99,,,,,,,45.75,9.25,SOM,1605.0,Togdheer,158.0,Somalia,105602.0,Burco,both,country_reassignment +143013,46.25,9.25,-99,,,,,,,46.25,9.25,SOM,1604.0,Sool,158.0,Somalia,105598.0,Caynabo,both,country_reassignment +143014,46.75,9.25,-99,,,,,,,46.75,9.25,SOM,1604.0,Sool,158.0,Somalia,105598.0,Caynabo,both,country_reassignment +143015,47.25,9.25,-99,,,,,,,47.25,9.25,SOM,1604.0,Sool,158.0,Somalia,105601.0,Xudun,both,country_reassignment +143016,47.75,9.25,-99,,,,,,,47.75,9.25,SOM,1604.0,Sool,158.0,Somalia,105601.0,Xudun,both,country_reassignment +143017,48.25,9.25,-99,,,,,,,48.25,9.25,SOM,1604.0,Sool,158.0,Somalia,105600.0,Taleex,both,country_reassignment +143018,48.75,9.25,-99,,,,,,,48.75,9.25,SOM,1604.0,Sool,158.0,Somalia,105600.0,Taleex,both,country_reassignment +143019,49.25,9.25,SOM,1592.0,Bari,158.0,Somalia,105550.0,Qardho,49.25,9.25,SOM,1592.0,Bari,158.0,Somalia,105550.0,Qardho,both,identical +143020,49.75,9.25,SOM,1592.0,Bari,158.0,Somalia,105550.0,Qardho,49.75,9.25,SOM,1592.0,Bari,158.0,Somalia,105550.0,Qardho,both,identical +143021,50.25,9.25,SOM,1592.0,Bari,158.0,Somalia,105545.0,Bandarbeyla,50.25,9.25,SOM,1592.0,Bari,158.0,Somalia,105545.0,Bandarbeyla,both,identical +143022,50.75,9.25,SOM,1592.0,Bari,158.0,Somalia,105545.0,Bandarbeyla,50.75,9.25,SOM,1592.0,Bari,158.0,Somalia,105545.0,Bandarbeyla,both,identical +143612,-14.25,9.75,GIN,1332.0,Boke,131.0,Guinea,103451.0,Boffa,-14.25,9.75,GIN,1332.0,Boke,131.0,Guinea,103451.0,Boffa,both,identical +143613,-13.75,9.75,GIN,1336.0,Kindia,131.0,Guinea,103467.0,Dubreka,-13.75,9.75,GIN,1336.0,Kindia,131.0,Guinea,103467.0,Dubreka,both,identical +143614,-13.25,9.75,GIN,1336.0,Kindia,131.0,Guinea,103466.0,Coyah,-13.25,9.75,GIN,1336.0,Kindia,131.0,Guinea,103466.0,Coyah,both,identical +143615,-12.75,9.75,GIN,1336.0,Kindia,131.0,Guinea,103469.0,Kindia,-12.75,9.75,GIN,1336.0,Kindia,131.0,Guinea,103469.0,Kindia,both,identical +143616,-12.25,9.75,SLE,1585.0,North Western,157.0,Sierra Leone,105523.0,Karene,-12.25,9.75,SLE,1585.0,North Western,157.0,Sierra Leone,105523.0,Karene,both,identical +143617,-11.75,9.75,SLE,1586.0,Northern,157.0,Sierra Leone,105527.0,Koinadugu,-11.75,9.75,SLE,1586.0,Northern,157.0,Sierra Leone,105527.0,Koinadugu,both,identical +143618,-11.25,9.75,SLE,1584.0,Eastern,157.0,Sierra Leone,105521.0,Kono,-11.25,9.75,SLE,1584.0,Eastern,157.0,Sierra Leone,105521.0,Kono,both,identical +143619,-10.75,9.75,GIN,1334.0,Faranah,131.0,Guinea,103459.0,Faranah,-10.75,9.75,GIN,1334.0,Faranah,131.0,Guinea,103459.0,Faranah,both,identical +143620,-10.25,9.75,GIN,1335.0,Kankan,131.0,Guinea,103463.0,Kouroussa,-10.25,9.75,GIN,1335.0,Kankan,131.0,Guinea,103463.0,Kouroussa,both,identical +143621,-9.75,9.75,GIN,1335.0,Kankan,131.0,Guinea,103461.0,Kankan,-9.75,9.75,GIN,1335.0,Kankan,131.0,Guinea,103461.0,Kankan,both,identical +143622,-9.25,9.75,GIN,1335.0,Kankan,131.0,Guinea,103461.0,Kankan,-9.25,9.75,GIN,1335.0,Kankan,131.0,Guinea,103461.0,Kankan,both,identical +143623,-8.75,9.75,GIN,1335.0,Kankan,131.0,Guinea,103461.0,Kankan,-8.75,9.75,GIN,1335.0,Kankan,131.0,Guinea,103461.0,Kankan,both,identical +143624,-8.25,9.75,GIN,1335.0,Kankan,131.0,Guinea,103461.0,Kankan,-8.25,9.75,GIN,1335.0,Kankan,131.0,Guinea,103461.0,Kankan,both,identical +143625,-7.75,9.75,CIV,1201.0,Denguélé,117.0,Côte D'Ivoire,102265.0,Kabadougou,-7.75,9.75,CIV,1201.0,Denguélé,117.0,Côte D'Ivoire,102265.0,Kabadougou,both,identical +143626,-7.25,9.75,CIV,1201.0,Denguélé,117.0,Côte D'Ivoire,102265.0,Kabadougou,-7.25,9.75,CIV,1201.0,Denguélé,117.0,Côte D'Ivoire,102265.0,Kabadougou,both,identical +143627,-6.75,9.75,CIV,1207.0,Savanes,117.0,Côte D'Ivoire,102280.0,Bagoué,-6.75,9.75,CIV,1207.0,Savanes,117.0,Côte D'Ivoire,102280.0,Bagoué,both,identical +143628,-6.25,9.75,CIV,1207.0,Savanes,117.0,Côte D'Ivoire,102280.0,Bagoué,-6.25,9.75,CIV,1207.0,Savanes,117.0,Côte D'Ivoire,102280.0,Bagoué,both,identical +143629,-5.75,9.75,CIV,1207.0,Savanes,117.0,Côte D'Ivoire,102281.0,Poro,-5.75,9.75,CIV,1207.0,Savanes,117.0,Côte D'Ivoire,102281.0,Poro,both,identical +143630,-5.25,9.75,CIV,1207.0,Savanes,117.0,Côte D'Ivoire,102282.0,Tchologo,-5.25,9.75,CIV,1207.0,Savanes,117.0,Côte D'Ivoire,102282.0,Tchologo,both,identical +143631,-4.75,9.75,CIV,1207.0,Savanes,117.0,Côte D'Ivoire,102282.0,Tchologo,-4.75,9.75,CIV,1207.0,Savanes,117.0,Côte D'Ivoire,102282.0,Tchologo,both,identical +143632,-4.25,9.75,BFA,1102.0,Cascades,108.0,Burkina Faso,101826.0,Comoé,-4.25,9.75,BFA,1102.0,Cascades,108.0,Burkina Faso,101826.0,Comoé,both,identical +143633,-3.75,9.75,CIV,1211.0,Zanzan,117.0,Côte D'Ivoire,102289.0,Bounkani,-3.75,9.75,CIV,1211.0,Zanzan,117.0,Côte D'Ivoire,102289.0,Bounkani,both,identical +143634,-3.25,9.75,CIV,1211.0,Zanzan,117.0,Côte D'Ivoire,102289.0,Bounkani,-3.25,9.75,CIV,1211.0,Zanzan,117.0,Côte D'Ivoire,102289.0,Bounkani,both,identical +143635,-2.75,9.75,GHA,1328.0,Upper West,129.0,Ghana,103402.0,Wa West,-2.75,9.75,BFA,1113.0,Sud-Ouest,108.0,Burkina Faso,101863.0,Noumbiel,both,country_reassignment +143636,-2.25,9.75,GHA,1326.0,Northern,129.0,Ghana,103371.0,Sawla,-2.25,9.75,GHA,1326.0,Northern,129.0,Ghana,103371.0,Sawla,both,identical +143637,-1.75,9.75,GHA,1326.0,Northern,129.0,Ghana,103367.0,North Gonja,-1.75,9.75,GHA,1326.0,Northern,129.0,Ghana,103367.0,North Gonja,both,identical +143638,-1.25,9.75,GHA,1326.0,Northern,129.0,Ghana,103367.0,North Gonja,-1.25,9.75,GHA,1326.0,Northern,129.0,Ghana,103367.0,North Gonja,both,identical +143639,-0.75,9.75,GHA,1326.0,Northern,129.0,Ghana,103370.0,Savelugu Nanton,-0.75,9.75,GHA,1326.0,Northern,129.0,Ghana,103370.0,Savelugu Nanton,both,identical +143640,-0.25,9.75,GHA,1326.0,Northern,129.0,Ghana,103358.0,Gushiegu,-0.25,9.75,GHA,1326.0,Northern,129.0,Ghana,103358.0,Gushiegu,both,identical +143641,0.25,9.75,GHA,1326.0,Northern,129.0,Ghana,103368.0,Saboba,0.25,9.75,GHA,1326.0,Northern,129.0,Ghana,103368.0,Saboba,both,identical +143642,0.75,9.75,TGO,1646.0,Kara,162.0,Togo,105935.0,Dankpen,0.75,9.75,TGO,1646.0,Kara,162.0,Togo,105935.0,Dankpen,both,identical +143643,1.25,9.75,TGO,1646.0,Kara,162.0,Togo,105936.0,Doufelgou,1.25,9.75,TGO,1646.0,Kara,162.0,Togo,105936.0,Doufelgou,both,identical +143644,1.75,9.75,BEN,1077.0,Donga,105.0,Benin,101759.0,Djougou,1.75,9.75,BEN,1077.0,Donga,105.0,Benin,101759.0,Djougou,both,identical +143645,2.25,9.75,BEN,1074.0,Borgou,105.0,Benin,101739.0,N'Dali,2.25,9.75,BEN,1074.0,Borgou,105.0,Benin,101739.0,N'Dali,both,identical +143646,2.75,9.75,BEN,1074.0,Borgou,105.0,Benin,101739.0,N'Dali,2.75,9.75,BEN,1074.0,Borgou,105.0,Benin,101739.0,N'Dali,both,identical +143647,3.25,9.75,BEN,1074.0,Borgou,105.0,Benin,101740.0,Nikki,3.25,9.75,BEN,1074.0,Borgou,105.0,Benin,101740.0,Nikki,both,identical +143648,3.75,9.75,NGA,1540.0,Kwara,151.0,Nigeria,105121.0,Baruten,3.75,9.75,NGA,1540.0,Kwara,151.0,Nigeria,105121.0,Baruten,both,identical +143649,4.25,9.75,NGA,1543.0,Niger,151.0,Nigeria,105172.0,Borgu,4.25,9.75,NGA,1543.0,Niger,151.0,Nigeria,105172.0,Borgu,both,identical +143650,4.75,9.75,NGA,1543.0,Niger,151.0,Nigeria,105184.0,Mashegu,4.75,9.75,NGA,1543.0,Niger,151.0,Nigeria,105184.0,Mashegu,both,identical +143651,5.25,9.75,NGA,1543.0,Niger,151.0,Nigeria,105184.0,Mashegu,5.25,9.75,NGA,1543.0,Niger,151.0,Nigeria,105184.0,Mashegu,both,identical +143652,5.75,9.75,NGA,1543.0,Niger,151.0,Nigeria,105184.0,Mashegu,5.75,9.75,NGA,1543.0,Niger,151.0,Nigeria,105184.0,Mashegu,both,identical +143653,6.25,9.75,NGA,1543.0,Niger,151.0,Nigeria,105173.0,Bosso,6.25,9.75,NGA,1543.0,Niger,151.0,Nigeria,105173.0,Bosso,both,identical +143654,6.75,9.75,NGA,1543.0,Niger,151.0,Nigeria,105190.0,Shiroro,6.75,9.75,NGA,1543.0,Niger,151.0,Nigeria,105190.0,Shiroro,both,identical +143655,7.25,9.75,NGA,1543.0,Niger,151.0,Nigeria,105186.0,Muya,7.25,9.75,NGA,1543.0,Niger,151.0,Nigeria,105186.0,Muya,both,identical +143656,7.75,9.75,NGA,1535.0,Kaduna,151.0,Nigeria,104984.0,Kachia,7.75,9.75,NGA,1535.0,Kaduna,151.0,Nigeria,104984.0,Kachia,both,identical +143657,8.25,9.75,NGA,1535.0,Kaduna,151.0,Nigeria,104998.0,Zango-Kataf,8.25,9.75,NGA,1535.0,Kaduna,151.0,Nigeria,104998.0,Zango-Kataf,both,identical +143658,8.75,9.75,NGA,1548.0,Plateau,151.0,Nigeria,105309.0,Riyom,8.75,9.75,NGA,1548.0,Plateau,151.0,Nigeria,105309.0,Riyom,both,identical +143659,9.25,9.75,NGA,1548.0,Plateau,151.0,Nigeria,104737.0,Tafawa-Balewa,9.25,9.75,NGA,1521.0,Bauchi,151.0,Nigeria,104737.0,Tafawa-Balewa,both,admin_reallocation +143660,9.75,9.75,NGA,1521.0,Bauchi,151.0,Nigeria,104737.0,Tafawa-Balewa,9.75,9.75,NGA,1521.0,Bauchi,151.0,Nigeria,104737.0,Tafawa-Balewa,both,identical +143661,10.25,9.75,NGA,1521.0,Bauchi,151.0,Nigeria,104721.0,Alkaleri,10.25,9.75,NGA,1521.0,Bauchi,151.0,Nigeria,104721.0,Alkaleri,both,identical +143662,10.75,9.75,NGA,1521.0,Bauchi,151.0,Nigeria,104721.0,Alkaleri,10.75,9.75,NGA,1521.0,Bauchi,151.0,Nigeria,104721.0,Alkaleri,both,identical +143663,11.25,9.75,NGA,1532.0,Gombe,151.0,Nigeria,104921.0,Shomgom,11.25,9.75,NGA,1532.0,Gombe,151.0,Nigeria,104921.0,Shomgom,both,identical +143664,11.75,9.75,NGA,1518.0,Adamawa,151.0,Nigeria,104913.0,Balanga,11.75,9.75,NGA,1532.0,Gombe,151.0,Nigeria,104913.0,Balanga,both,admin_reallocation +143665,12.25,9.75,NGA,1518.0,Adamawa,151.0,Nigeria,104665.0,Song,12.25,9.75,NGA,1518.0,Adamawa,151.0,Nigeria,104665.0,Song,both,identical +143666,12.75,9.75,NGA,1518.0,Adamawa,151.0,Nigeria,104665.0,Song,12.75,9.75,NGA,1518.0,Adamawa,151.0,Nigeria,104665.0,Song,both,identical +143667,13.25,9.75,CMR,1147.0,Nord,112.0,Cameroon,102036.0,Bénoué,13.25,9.75,CMR,1147.0,Nord,112.0,Cameroon,102036.0,Bénoué,both,identical +143668,13.75,9.75,CMR,1147.0,Nord,112.0,Cameroon,102038.0,Mayo-Louti,13.75,9.75,CMR,1147.0,Nord,112.0,Cameroon,102038.0,Mayo-Louti,both,identical +143669,14.25,9.75,TCD,1174.0,Mayo-Kebbi Ouest,114.0,Chad,102128.0,Lac Léré,14.25,9.75,TCD,1174.0,Mayo-Kebbi Ouest,114.0,Chad,102128.0,Lac Léré,both,identical +143670,14.75,9.75,TCD,1174.0,Mayo-Kebbi Ouest,114.0,Chad,102127.0,Mont Illi,14.75,9.75,TCD,1173.0,Mayo-Kebbi Est,114.0,Chad,102127.0,Mont Illi,both,admin_reallocation +143671,15.25,9.75,TCD,1173.0,Mayo-Kebbi Est,114.0,Chad,102127.0,Mont Illi,15.25,9.75,TCD,1173.0,Mayo-Kebbi Est,114.0,Chad,102127.0,Mont Illi,both,identical +143672,15.75,9.75,TCD,1173.0,Mayo-Kebbi Est,114.0,Chad,102125.0,Mayo-Boneye,15.75,9.75,TCD,1173.0,Mayo-Kebbi Est,114.0,Chad,102125.0,Mayo-Boneye,both,identical +143673,16.25,9.75,TCD,1180.0,Tandjilé,114.0,Chad,102145.0,Tandjilé Est,16.25,9.75,TCD,1180.0,Tandjilé,114.0,Chad,102145.0,Tandjilé Est,both,identical +143674,16.75,9.75,TCD,1180.0,Tandjilé,114.0,Chad,102145.0,Tandjilé Est,16.75,9.75,TCD,1180.0,Tandjilé,114.0,Chad,102145.0,Tandjilé Est,both,identical +143675,17.25,9.75,TCD,1180.0,Tandjilé,114.0,Chad,102145.0,Tandjilé Est,17.25,9.75,TCD,1180.0,Tandjilé,114.0,Chad,102145.0,Tandjilé Est,both,identical +143676,17.75,9.75,TCD,1175.0,Moyen-Chari,114.0,Chad,102131.0,Bahr-Köh,17.75,9.75,TCD,1175.0,Moyen-Chari,114.0,Chad,102131.0,Bahr-Köh,both,identical +143677,18.25,9.75,TCD,1175.0,Moyen-Chari,114.0,Chad,102131.0,Bahr-Köh,18.25,9.75,TCD,1175.0,Moyen-Chari,114.0,Chad,102131.0,Bahr-Köh,both,identical +143678,18.75,9.75,TCD,1175.0,Moyen-Chari,114.0,Chad,102133.0,Lac Iro,18.75,9.75,TCD,1175.0,Moyen-Chari,114.0,Chad,102133.0,Lac Iro,both,identical +143679,19.25,9.75,TCD,1175.0,Moyen-Chari,114.0,Chad,102133.0,Lac Iro,19.25,9.75,TCD,1175.0,Moyen-Chari,114.0,Chad,102133.0,Lac Iro,both,identical +143680,19.75,9.75,TCD,1175.0,Moyen-Chari,114.0,Chad,102133.0,Lac Iro,19.75,9.75,TCD,1175.0,Moyen-Chari,114.0,Chad,102133.0,Lac Iro,both,identical +143681,20.25,9.75,TCD,1178.0,Salamat,114.0,Chad,102140.0,Haraze-Mangueigne,20.25,9.75,TCD,1178.0,Salamat,114.0,Chad,102140.0,Haraze-Mangueigne,both,identical +143682,20.75,9.75,TCD,1178.0,Salamat,114.0,Chad,102140.0,Haraze-Mangueigne,20.75,9.75,TCD,1178.0,Salamat,114.0,Chad,102140.0,Haraze-Mangueigne,both,identical +143683,21.25,9.75,CAF,1154.0,Fertit,113.0,Central African Republic,102071.0,Vakaga,21.25,9.75,CAF,1154.0,Fertit,113.0,Central African Republic,102071.0,Vakaga,both,identical +143684,21.75,9.75,CAF,1154.0,Fertit,113.0,Central African Republic,102071.0,Vakaga,21.75,9.75,CAF,1154.0,Fertit,113.0,Central African Republic,102071.0,Vakaga,both,identical +143685,22.25,9.75,CAF,1154.0,Fertit,113.0,Central African Republic,102071.0,Vakaga,22.25,9.75,CAF,1154.0,Fertit,113.0,Central African Republic,102071.0,Vakaga,both,identical +143686,22.75,9.75,CAF,1154.0,Fertit,113.0,Central African Republic,102071.0,Vakaga,22.75,9.75,CAF,1154.0,Fertit,113.0,Central African Republic,102071.0,Vakaga,both,identical +143687,23.25,9.75,CAF,1154.0,Fertit,113.0,Central African Republic,102071.0,Vakaga,23.25,9.75,CAF,1154.0,Fertit,113.0,Central African Republic,102071.0,Vakaga,both,identical +143688,23.75,9.75,SDN,1640.0,South Darfur,161.0,Sudan,105858.0,Al Radoum,23.75,9.75,SDN,1640.0,South Darfur,161.0,Sudan,105858.0,Al Radoum,both,identical +143689,24.25,9.75,SDN,1640.0,South Darfur,161.0,Sudan,105858.0,Al Radoum,24.25,9.75,SDN,1640.0,South Darfur,161.0,Sudan,105858.0,Al Radoum,both,identical +143690,24.75,9.75,SDN,1640.0,South Darfur,161.0,Sudan,105858.0,Al Radoum,24.75,9.75,SDN,1640.0,South Darfur,161.0,Sudan,105858.0,Al Radoum,both,identical +143691,25.25,9.75,SSD,1625.0,Western Bahr El Ghazal,160.0,South Sudan,105727.0,Raja,25.25,9.75,SSD,1625.0,Western Bahr El Ghazal,160.0,South Sudan,105727.0,Raja,both,identical +143692,25.75,9.75,SSD,1625.0,Western Bahr El Ghazal,160.0,South Sudan,105727.0,Raja,25.75,9.75,SSD,1625.0,Western Bahr El Ghazal,160.0,South Sudan,105727.0,Raja,both,identical +143693,26.25,9.75,SSD,1625.0,Western Bahr El Ghazal,160.0,South Sudan,105727.0,Raja,26.25,9.75,SDN,1630.0,East Darfur,161.0,Sudan,105769.0,Bahr Al Arab,both,country_reassignment +143694,26.75,9.75,SDN,1630.0,East Darfur,161.0,Sudan,105769.0,Bahr Al Arab,26.75,9.75,SDN,1630.0,East Darfur,161.0,Sudan,105769.0,Bahr Al Arab,both,identical +143695,27.25,9.75,SDN,1630.0,East Darfur,161.0,Sudan,105769.0,Bahr Al Arab,27.25,9.75,SDN,1630.0,East Darfur,161.0,Sudan,105769.0,Bahr Al Arab,both,identical +143696,27.75,9.75,SDN,1643.0,West Kordofan,161.0,Sudan,105910.0,Al Meiram,27.75,9.75,SDN,1643.0,West Kordofan,161.0,Sudan,105910.0,Al Meiram,both,identical +143697,28.25,9.75,SDN,,,,,,,28.25,9.75,xAB,1000.0,Administrative Unit Not Available,100.0,Abyei,100000.0,Administrative Unit Not Available,both,country_reassignment +143698,28.75,9.75,SDN,1643.0,West Kordofan,161.0,Sudan,105906.0,Al Dibab,28.75,9.75,xAB,1000.0,Administrative Unit Not Available,100.0,Abyei,100000.0,Administrative Unit Not Available,both,country_reassignment +143699,29.25,9.75,SDN,1643.0,West Kordofan,161.0,Sudan,105906.0,Al Dibab,29.25,9.75,SDN,1643.0,West Kordofan,161.0,Sudan,105906.0,Al Dibab,both,identical +143700,29.75,9.75,SSD,1622.0,Unity,160.0,South Sudan,105706.0,Pariang,29.75,9.75,SSD,1622.0,Unity,160.0,South Sudan,105706.0,Pariang,both,identical +143701,30.25,9.75,SSD,1622.0,Unity,160.0,South Sudan,105706.0,Pariang,30.25,9.75,SSD,1622.0,Unity,160.0,South Sudan,105706.0,Pariang,both,identical +143702,30.75,9.75,SSD,1622.0,Unity,160.0,South Sudan,105706.0,Pariang,30.75,9.75,SSD,1622.0,Unity,160.0,South Sudan,105706.0,Pariang,both,identical +143703,31.25,9.75,SSD,1623.0,Upper Nile,160.0,South Sudan,105717.0,Panyikang,31.25,9.75,SSD,1623.0,Upper Nile,160.0,South Sudan,105717.0,Panyikang,both,identical +143704,31.75,9.75,SSD,1623.0,Upper Nile,160.0,South Sudan,105709.0,Fashoda,31.75,9.75,SSD,1623.0,Upper Nile,160.0,South Sudan,105709.0,Fashoda,both,identical +143705,32.25,9.75,SSD,1623.0,Upper Nile,160.0,South Sudan,105708.0,Baliet,32.25,9.75,SSD,1623.0,Upper Nile,160.0,South Sudan,105708.0,Baliet,both,identical +143706,32.75,9.75,SSD,1623.0,Upper Nile,160.0,South Sudan,105708.0,Baliet,32.75,9.75,SSD,1623.0,Upper Nile,160.0,South Sudan,105708.0,Baliet,both,identical +143707,33.25,9.75,SSD,1623.0,Upper Nile,160.0,South Sudan,105712.0,Maban,33.25,9.75,SSD,1623.0,Upper Nile,160.0,South Sudan,105712.0,Maban,both,identical +143708,33.75,9.75,SSD,1623.0,Upper Nile,160.0,South Sudan,105712.0,Maban,33.75,9.75,SSD,1623.0,Upper Nile,160.0,South Sudan,105712.0,Maban,both,identical +143709,34.25,9.75,ETH,1292.0,Benishangul Gumz,124.0,Ethiopia,103061.0,Assosa,34.25,9.75,ETH,1292.0,Benishangul Gumz,124.0,Ethiopia,103061.0,Assosa,both,identical +143710,34.75,9.75,ETH,1292.0,Benishangul Gumz,124.0,Ethiopia,103061.0,Assosa,34.75,9.75,ETH,1292.0,Benishangul Gumz,124.0,Ethiopia,103061.0,Assosa,both,identical +143711,35.25,9.75,ETH,1296.0,Oromia,124.0,Ethiopia,103092.0,West Wellega,35.25,9.75,ETH,1296.0,Oromia,124.0,Ethiopia,103092.0,West Wellega,both,identical +143712,35.75,9.75,ETH,1292.0,Benishangul Gumz,124.0,Ethiopia,103062.0,Kamashi,35.75,9.75,ETH,1292.0,Benishangul Gumz,124.0,Ethiopia,103062.0,Kamashi,both,identical +143713,36.25,9.75,ETH,1296.0,Oromia,124.0,Ethiopia,103079.0,East Wellega,36.25,9.75,ETH,1296.0,Oromia,124.0,Ethiopia,103079.0,East Wellega,both,identical +143714,36.75,9.75,ETH,1296.0,Oromia,124.0,Ethiopia,103079.0,East Wellega,36.75,9.75,ETH,1296.0,Oromia,124.0,Ethiopia,103079.0,East Wellega,both,identical +143715,37.25,9.75,ETH,1296.0,Oromia,124.0,Ethiopia,103082.0,Horo Gudru Wellega,37.25,9.75,ETH,1296.0,Oromia,124.0,Ethiopia,103082.0,Horo Gudru Wellega,both,identical +143716,37.75,9.75,ETH,1296.0,Oromia,124.0,Ethiopia,103091.0,West Shewa,37.75,9.75,ETH,1296.0,Oromia,124.0,Ethiopia,103091.0,West Shewa,both,identical +143717,38.25,9.75,ETH,1296.0,Oromia,124.0,Ethiopia,103086.0,North Shewa (Or),38.25,9.75,ETH,1296.0,Oromia,124.0,Ethiopia,103086.0,North Shewa (Or),both,identical +143718,38.75,9.75,ETH,1296.0,Oromia,124.0,Ethiopia,103086.0,North Shewa (Or),38.75,9.75,ETH,1296.0,Oromia,124.0,Ethiopia,103086.0,North Shewa (Or),both,identical +143719,39.25,9.75,ETH,1291.0,Amhara,124.0,Ethiopia,103053.0,North Shewa (Am),39.25,9.75,ETH,1291.0,Amhara,124.0,Ethiopia,103053.0,North Shewa (Am),both,identical +143720,39.75,9.75,ETH,1291.0,Amhara,124.0,Ethiopia,103053.0,North Shewa (Am),39.75,9.75,ETH,1291.0,Amhara,124.0,Ethiopia,103053.0,North Shewa (Am),both,identical +143721,40.25,9.75,ETH,1290.0,Afar,124.0,Ethiopia,103046.0,Gabi /Zone 3,40.25,9.75,ETH,1290.0,Afar,124.0,Ethiopia,103046.0,Gabi /Zone 3,both,identical +143722,40.75,9.75,ETH,1290.0,Afar,124.0,Ethiopia,103046.0,Gabi /Zone 3,40.75,9.75,ETH,1290.0,Afar,124.0,Ethiopia,103046.0,Gabi /Zone 3,both,identical +143723,41.25,9.75,ETH,1299.0,Somali,124.0,Ethiopia,103121.0,Siti,41.25,9.75,ETH,1299.0,Somali,124.0,Ethiopia,103121.0,Siti,both,identical +143724,41.75,9.75,ETH,1299.0,Somali,124.0,Ethiopia,103121.0,Siti,41.75,9.75,ETH,1299.0,Somali,124.0,Ethiopia,103121.0,Siti,both,identical +143725,42.25,9.75,ETH,1299.0,Somali,124.0,Ethiopia,103121.0,Siti,42.25,9.75,ETH,1299.0,Somali,124.0,Ethiopia,103121.0,Siti,both,identical +143726,42.75,9.75,ETH,1299.0,Somali,124.0,Ethiopia,103077.0,East Hararge,42.75,9.75,ETH,1296.0,Oromia,124.0,Ethiopia,103077.0,East Hararge,both,admin_reallocation +143727,43.25,9.75,-99,,,,,,,43.25,9.75,ETH,1299.0,Somali,124.0,Ethiopia,103115.0,Fafan,both,country_reassignment +143728,43.75,9.75,-99,,,,,,,43.75,9.75,SOM,1606.0,Woqooyi Galbeed,158.0,Somalia,105607.0,Gebiley,both,country_reassignment +143729,44.25,9.75,-99,,,,,,,44.25,9.75,SOM,1606.0,Woqooyi Galbeed,158.0,Somalia,105608.0,Hargeysa,both,country_reassignment +143730,44.75,9.75,-99,,,,,,,44.75,9.75,SOM,1606.0,Woqooyi Galbeed,158.0,Somalia,105608.0,Hargeysa,both,country_reassignment +143731,45.25,9.75,-99,,,,,,,45.25,9.75,SOM,1605.0,Togdheer,158.0,Somalia,105604.0,Owdweyne,both,country_reassignment +143732,45.75,9.75,-99,,,,,,,45.75,9.75,SOM,1605.0,Togdheer,158.0,Somalia,105602.0,Burco,both,country_reassignment +143733,46.25,9.75,-99,,,,,,,46.25,9.75,SOM,1604.0,Sool,158.0,Somalia,105598.0,Caynabo,both,country_reassignment +143734,46.75,9.75,-99,,,,,,,46.75,9.75,SOM,1603.0,Sanaag,158.0,Somalia,105595.0,Ceel Afweyn,both,country_reassignment +143735,47.25,9.75,-99,,,,,,,47.25,9.75,SOM,1603.0,Sanaag,158.0,Somalia,105595.0,Ceel Afweyn,both,country_reassignment +143736,47.75,9.75,-99,,,,,,,47.75,9.75,SOM,1603.0,Sanaag,158.0,Somalia,105596.0,Ceerigaabo,both,country_reassignment +143737,48.25,9.75,-99,,,,,,,48.25,9.75,SOM,1603.0,Sanaag,158.0,Somalia,105596.0,Ceerigaabo,both,country_reassignment +143738,48.75,9.75,-99,,,,,,,48.75,9.75,SOM,1603.0,Sanaag,158.0,Somalia,105597.0,Laasqoray,both,country_reassignment +143739,49.25,9.75,SOM,1592.0,Bari,158.0,Somalia,105550.0,Qardho,49.25,9.75,SOM,1592.0,Bari,158.0,Somalia,105550.0,Qardho,both,identical +143740,49.75,9.75,SOM,1592.0,Bari,158.0,Somalia,105550.0,Qardho,49.75,9.75,SOM,1592.0,Bari,158.0,Somalia,105550.0,Qardho,both,identical +143741,50.25,9.75,SOM,1592.0,Bari,158.0,Somalia,105545.0,Bandarbeyla,50.25,9.75,SOM,1592.0,Bari,158.0,Somalia,105545.0,Bandarbeyla,both,identical +143742,50.75,9.75,SOM,1592.0,Bari,158.0,Somalia,105545.0,Bandarbeyla,50.75,9.75,SOM,1592.0,Bari,158.0,Somalia,105545.0,Bandarbeyla,both,identical +144331,-14.75,10.25,GIN,1332.0,Boke,131.0,Guinea,103451.0,Boffa,-14.75,10.25,GIN,1332.0,Boke,131.0,Guinea,103451.0,Boffa,both,identical +144332,-14.25,10.25,GIN,1332.0,Boke,131.0,Guinea,103451.0,Boffa,-14.25,10.25,GIN,1332.0,Boke,131.0,Guinea,103451.0,Boffa,both,identical +144333,-13.75,10.25,GIN,1332.0,Boke,131.0,Guinea,103467.0,Dubreka,-13.75,10.25,GIN,1336.0,Kindia,131.0,Guinea,103467.0,Dubreka,both,admin_reallocation +144334,-13.25,10.25,GIN,1336.0,Kindia,131.0,Guinea,103467.0,Dubreka,-13.25,10.25,GIN,1336.0,Kindia,131.0,Guinea,103467.0,Dubreka,both,identical +144335,-12.75,10.25,GIN,1336.0,Kindia,131.0,Guinea,103469.0,Kindia,-12.75,10.25,GIN,1336.0,Kindia,131.0,Guinea,103469.0,Kindia,both,identical +144336,-12.25,10.25,GIN,1338.0,Mamou,131.0,Guinea,103477.0,Mamou,-12.25,10.25,GIN,1338.0,Mamou,131.0,Guinea,103477.0,Mamou,both,identical +144337,-11.75,10.25,GIN,1338.0,Mamou,131.0,Guinea,103477.0,Mamou,-11.75,10.25,GIN,1338.0,Mamou,131.0,Guinea,103477.0,Mamou,both,identical +144338,-11.25,10.25,GIN,1334.0,Faranah,131.0,Guinea,103459.0,Faranah,-11.25,10.25,GIN,1334.0,Faranah,131.0,Guinea,103459.0,Faranah,both,identical +144339,-10.75,10.25,GIN,1334.0,Faranah,131.0,Guinea,103459.0,Faranah,-10.75,10.25,GIN,1334.0,Faranah,131.0,Guinea,103459.0,Faranah,both,identical +144340,-10.25,10.25,GIN,1334.0,Faranah,131.0,Guinea,103459.0,Faranah,-10.25,10.25,GIN,1334.0,Faranah,131.0,Guinea,103459.0,Faranah,both,identical +144341,-9.75,10.25,GIN,1335.0,Kankan,131.0,Guinea,103463.0,Kouroussa,-9.75,10.25,GIN,1335.0,Kankan,131.0,Guinea,103463.0,Kouroussa,both,identical +144342,-9.25,10.25,GIN,1335.0,Kankan,131.0,Guinea,103461.0,Kankan,-9.25,10.25,GIN,1335.0,Kankan,131.0,Guinea,103461.0,Kankan,both,identical +144343,-8.75,10.25,GIN,1335.0,Kankan,131.0,Guinea,103461.0,Kankan,-8.75,10.25,GIN,1335.0,Kankan,131.0,Guinea,103461.0,Kankan,both,identical +144344,-8.25,10.25,GIN,1335.0,Kankan,131.0,Guinea,103464.0,Mandiana,-8.25,10.25,GIN,1335.0,Kankan,131.0,Guinea,103464.0,Mandiana,both,identical +144345,-7.75,10.25,CIV,1201.0,Denguélé,117.0,Côte D'Ivoire,102264.0,Folon,-7.75,10.25,CIV,1201.0,Denguélé,117.0,Côte D'Ivoire,102264.0,Folon,both,identical +144346,-7.25,10.25,CIV,1201.0,Denguélé,117.0,Côte D'Ivoire,102264.0,Folon,-7.25,10.25,CIV,1201.0,Denguélé,117.0,Côte D'Ivoire,102264.0,Folon,both,identical +144347,-6.75,10.25,CIV,1207.0,Savanes,117.0,Côte D'Ivoire,102280.0,Bagoué,-6.75,10.25,CIV,1207.0,Savanes,117.0,Côte D'Ivoire,102280.0,Bagoué,both,identical +144348,-6.25,10.25,CIV,1207.0,Savanes,117.0,Côte D'Ivoire,102280.0,Bagoué,-6.25,10.25,CIV,1207.0,Savanes,117.0,Côte D'Ivoire,102280.0,Bagoué,both,identical +144349,-5.75,10.25,CIV,1207.0,Savanes,117.0,Côte D'Ivoire,102282.0,Tchologo,-5.75,10.25,CIV,1207.0,Savanes,117.0,Côte D'Ivoire,102282.0,Tchologo,both,identical +144350,-5.25,10.25,CIV,1207.0,Savanes,117.0,Côte D'Ivoire,102282.0,Tchologo,-5.25,10.25,CIV,1207.0,Savanes,117.0,Côte D'Ivoire,102282.0,Tchologo,both,identical +144351,-4.75,10.25,BFA,1102.0,Cascades,108.0,Burkina Faso,101826.0,Comoé,-4.75,10.25,BFA,1102.0,Cascades,108.0,Burkina Faso,101826.0,Comoé,both,identical +144352,-4.25,10.25,BFA,1102.0,Cascades,108.0,Burkina Faso,101826.0,Comoé,-4.25,10.25,BFA,1102.0,Cascades,108.0,Burkina Faso,101826.0,Comoé,both,identical +144353,-3.75,10.25,BFA,1113.0,Sud-Ouest,108.0,Burkina Faso,101864.0,Poni,-3.75,10.25,BFA,1113.0,Sud-Ouest,108.0,Burkina Faso,101864.0,Poni,both,identical +144354,-3.25,10.25,BFA,1113.0,Sud-Ouest,108.0,Burkina Faso,101864.0,Poni,-3.25,10.25,BFA,1113.0,Sud-Ouest,108.0,Burkina Faso,101864.0,Poni,both,identical +144355,-2.75,10.25,GHA,1328.0,Upper West,129.0,Ghana,103396.0,Nadowli-Kaleo,-2.75,10.25,GHA,1328.0,Upper West,129.0,Ghana,103396.0,Nadowli-Kaleo,both,identical +144356,-2.25,10.25,GHA,1328.0,Upper West,129.0,Ghana,103400.0,Wa East,-2.25,10.25,GHA,1328.0,Upper West,129.0,Ghana,103400.0,Wa East,both,identical +144357,-1.75,10.25,GHA,1328.0,Upper West,129.0,Ghana,103400.0,Wa East,-1.75,10.25,GHA,1328.0,Upper West,129.0,Ghana,103400.0,Wa East,both,identical +144358,-1.25,10.25,GHA,1326.0,Northern,129.0,Ghana,103362.0,Mamprugu Moagduri,-1.25,10.25,GHA,1326.0,Northern,129.0,Ghana,103362.0,Mamprugu Moagduri,both,identical +144359,-0.75,10.25,GHA,1326.0,Northern,129.0,Ghana,103376.0,West Mamprusi,-0.75,10.25,GHA,1326.0,Northern,129.0,Ghana,103376.0,West Mamprusi,both,identical +144360,-0.25,10.25,GHA,1326.0,Northern,129.0,Ghana,103359.0,Karaga,-0.25,10.25,GHA,1326.0,Northern,129.0,Ghana,103359.0,Karaga,both,identical +144361,0.25,10.25,GHA,1326.0,Northern,129.0,Ghana,103355.0,Chereponi,0.25,10.25,GHA,1326.0,Northern,129.0,Ghana,103355.0,Chereponi,both,identical +144362,0.75,10.25,TGO,1649.0,Savanes,162.0,Togo,105963.0,Oti-Sud,0.75,10.25,TGO,1649.0,Savanes,162.0,Togo,105963.0,Oti-Sud,both,identical +144363,1.25,10.25,BEN,1072.0,Atacora,105.0,Benin,101720.0,Boukoumbé,1.25,10.25,BEN,1072.0,Atacora,105.0,Benin,101720.0,Boukoumbé,both,identical +144364,1.75,10.25,BEN,1072.0,Atacora,105.0,Benin,101722.0,Kouandé,1.75,10.25,BEN,1072.0,Atacora,105.0,Benin,101722.0,Kouandé,both,identical +144365,2.25,10.25,BEN,1074.0,Borgou,105.0,Benin,101743.0,Sinendé,2.25,10.25,BEN,1074.0,Borgou,105.0,Benin,101743.0,Sinendé,both,identical +144366,2.75,10.25,BEN,1074.0,Borgou,105.0,Benin,101737.0,Bembèrèkè,2.75,10.25,BEN,1074.0,Borgou,105.0,Benin,101737.0,Bembèrèkè,both,identical +144367,3.25,10.25,BEN,1074.0,Borgou,105.0,Benin,101738.0,Kalalé,3.25,10.25,BEN,1074.0,Borgou,105.0,Benin,101738.0,Kalalé,both,identical +144368,3.75,10.25,NGA,1543.0,Niger,151.0,Nigeria,105172.0,Borgu,3.75,10.25,NGA,1543.0,Niger,151.0,Nigeria,105172.0,Borgu,both,identical +144369,4.25,10.25,NGA,1543.0,Niger,151.0,Nigeria,105172.0,Borgu,4.25,10.25,NGA,1543.0,Niger,151.0,Nigeria,105172.0,Borgu,both,identical +144370,4.75,10.25,NGA,1543.0,Niger,151.0,Nigeria,105182.0,Magama,4.75,10.25,NGA,1543.0,Niger,151.0,Nigeria,105182.0,Magama,both,identical +144371,5.25,10.25,NGA,1543.0,Niger,151.0,Nigeria,105184.0,Mashegu,5.25,10.25,NGA,1543.0,Niger,151.0,Nigeria,105184.0,Mashegu,both,identical +144372,5.75,10.25,NGA,1543.0,Niger,151.0,Nigeria,105183.0,Mariga,5.75,10.25,NGA,1543.0,Niger,151.0,Nigeria,105183.0,Mariga,both,identical +144373,6.25,10.25,NGA,1543.0,Niger,151.0,Nigeria,105188.0,Rafi,6.25,10.25,NGA,1543.0,Niger,151.0,Nigeria,105188.0,Rafi,both,identical +144374,6.75,10.25,NGA,1543.0,Niger,151.0,Nigeria,105190.0,Shiroro,6.75,10.25,NGA,1543.0,Niger,151.0,Nigeria,105190.0,Shiroro,both,identical +144375,7.25,10.25,NGA,1535.0,Kaduna,151.0,Nigeria,104978.0,Chikun,7.25,10.25,NGA,1535.0,Kaduna,151.0,Nigeria,104978.0,Chikun,both,identical +144376,7.75,10.25,NGA,1535.0,Kaduna,151.0,Nigeria,104990.0,Kauru,7.75,10.25,NGA,1535.0,Kaduna,151.0,Nigeria,104990.0,Kauru,both,identical +144377,8.25,10.25,NGA,1535.0,Kaduna,151.0,Nigeria,104988.0,Kajuru,8.25,10.25,NGA,1535.0,Kaduna,151.0,Nigeria,104988.0,Kajuru,both,identical +144378,8.75,10.25,NGA,1535.0,Kaduna,151.0,Nigeria,104993.0,Lere,8.75,10.25,NGA,1535.0,Kaduna,151.0,Nigeria,104993.0,Lere,both,identical +144379,9.25,10.25,NGA,1521.0,Bauchi,151.0,Nigeria,104738.0,Toro,9.25,10.25,NGA,1521.0,Bauchi,151.0,Nigeria,104738.0,Toro,both,identical +144380,9.75,10.25,NGA,1521.0,Bauchi,151.0,Nigeria,104722.0,Bauchi,9.75,10.25,NGA,1521.0,Bauchi,151.0,Nigeria,104722.0,Bauchi,both,identical +144381,10.25,10.25,NGA,1521.0,Bauchi,151.0,Nigeria,104722.0,Bauchi,10.25,10.25,NGA,1521.0,Bauchi,151.0,Nigeria,104722.0,Bauchi,both,identical +144382,10.75,10.25,NGA,1521.0,Bauchi,151.0,Nigeria,104733.0,Kirfi,10.75,10.25,NGA,1521.0,Bauchi,151.0,Nigeria,104733.0,Kirfi,both,identical +144383,11.25,10.25,NGA,1532.0,Gombe,151.0,Nigeria,104912.0,Akko,11.25,10.25,NGA,1532.0,Gombe,151.0,Nigeria,104912.0,Akko,both,identical +144384,11.75,10.25,NGA,1524.0,Borno,151.0,Nigeria,104922.0,Yamaltu/Deba,11.75,10.25,NGA,1532.0,Gombe,151.0,Nigeria,104922.0,Yamaltu/Deba,both,admin_reallocation +144385,12.25,10.25,NGA,1524.0,Borno,151.0,Nigeria,104783.0,Hawul,12.25,10.25,NGA,1524.0,Borno,151.0,Nigeria,104783.0,Hawul,both,identical +144386,12.75,10.25,NGA,1518.0,Adamawa,151.0,Nigeria,104654.0,Hong,12.75,10.25,NGA,1518.0,Adamawa,151.0,Nigeria,104654.0,Hong,both,identical +144387,13.25,10.25,NGA,1518.0,Adamawa,151.0,Nigeria,104661.0,Mubi North,13.25,10.25,NGA,1518.0,Adamawa,151.0,Nigeria,104661.0,Mubi North,both,identical +144388,13.75,10.25,CMR,1145.0,Extrême-Nord,112.0,Cameroon,102031.0,Mayo-Tsanaga,13.75,10.25,CMR,1145.0,Extrême-Nord,112.0,Cameroon,102031.0,Mayo-Tsanaga,both,identical +144389,14.25,10.25,CMR,1145.0,Extrême-Nord,112.0,Cameroon,102029.0,Mayo-Kani,14.25,10.25,CMR,1145.0,Extrême-Nord,112.0,Cameroon,102029.0,Mayo-Kani,both,identical +144390,14.75,10.25,CMR,1145.0,Extrême-Nord,112.0,Cameroon,102029.0,Mayo-Kani,14.75,10.25,CMR,1145.0,Extrême-Nord,112.0,Cameroon,102029.0,Mayo-Kani,both,identical +144391,15.25,10.25,CMR,1145.0,Extrême-Nord,112.0,Cameroon,102028.0,Mayo-Danay,15.25,10.25,CMR,1145.0,Extrême-Nord,112.0,Cameroon,102028.0,Mayo-Danay,both,identical +144392,15.75,10.25,TCD,1173.0,Mayo-Kebbi Est,114.0,Chad,102125.0,Mayo-Boneye,15.75,10.25,TCD,1173.0,Mayo-Kebbi Est,114.0,Chad,102125.0,Mayo-Boneye,both,identical +144393,16.25,10.25,TCD,1162.0,Chari-Baguirmi,114.0,Chad,102092.0,Loug-Chari,16.25,10.25,TCD,1162.0,Chari-Baguirmi,114.0,Chad,102092.0,Loug-Chari,both,identical +144394,16.75,10.25,TCD,1162.0,Chari-Baguirmi,114.0,Chad,102092.0,Loug-Chari,16.75,10.25,TCD,1162.0,Chari-Baguirmi,114.0,Chad,102092.0,Loug-Chari,both,identical +144395,17.25,10.25,TCD,1162.0,Chari-Baguirmi,114.0,Chad,102092.0,Loug-Chari,17.25,10.25,TCD,1162.0,Chari-Baguirmi,114.0,Chad,102092.0,Loug-Chari,both,identical +144396,17.75,10.25,TCD,1175.0,Moyen-Chari,114.0,Chad,102131.0,Bahr-Köh,17.75,10.25,TCD,1175.0,Moyen-Chari,114.0,Chad,102131.0,Bahr-Köh,both,identical +144397,18.25,10.25,TCD,1175.0,Moyen-Chari,114.0,Chad,102131.0,Bahr-Köh,18.25,10.25,TCD,1175.0,Moyen-Chari,114.0,Chad,102131.0,Bahr-Köh,both,identical +144398,18.75,10.25,TCD,1165.0,Guéra,114.0,Chad,102098.0,Barh-Signaka,18.75,10.25,TCD,1165.0,Guéra,114.0,Chad,102098.0,Barh-Signaka,both,identical +144399,19.25,10.25,TCD,1165.0,Guéra,114.0,Chad,102098.0,Barh-Signaka,19.25,10.25,TCD,1165.0,Guéra,114.0,Chad,102098.0,Barh-Signaka,both,identical +144400,19.75,10.25,TCD,1178.0,Salamat,114.0,Chad,102139.0,Bahr-Azoum,19.75,10.25,TCD,1178.0,Salamat,114.0,Chad,102139.0,Bahr-Azoum,both,identical +144401,20.25,10.25,TCD,1178.0,Salamat,114.0,Chad,102139.0,Bahr-Azoum,20.25,10.25,TCD,1178.0,Salamat,114.0,Chad,102139.0,Bahr-Azoum,both,identical +144402,20.75,10.25,TCD,1178.0,Salamat,114.0,Chad,102139.0,Bahr-Azoum,20.75,10.25,TCD,1178.0,Salamat,114.0,Chad,102139.0,Bahr-Azoum,both,identical +144403,21.25,10.25,TCD,1178.0,Salamat,114.0,Chad,102140.0,Haraze-Mangueigne,21.25,10.25,TCD,1178.0,Salamat,114.0,Chad,102140.0,Haraze-Mangueigne,both,identical +144404,21.75,10.25,CAF,1154.0,Fertit,113.0,Central African Republic,102071.0,Vakaga,21.75,10.25,CAF,1154.0,Fertit,113.0,Central African Republic,102071.0,Vakaga,both,identical +144405,22.25,10.25,CAF,1154.0,Fertit,113.0,Central African Republic,102071.0,Vakaga,22.25,10.25,CAF,1154.0,Fertit,113.0,Central African Republic,102071.0,Vakaga,both,identical +144406,22.75,10.25,CAF,1154.0,Fertit,113.0,Central African Republic,102071.0,Vakaga,22.75,10.25,CAF,1154.0,Fertit,113.0,Central African Republic,102071.0,Vakaga,both,identical +144407,23.25,10.25,CAF,1154.0,Fertit,113.0,Central African Republic,102071.0,Vakaga,23.25,10.25,CAF,1154.0,Fertit,113.0,Central African Republic,102071.0,Vakaga,both,identical +144408,23.75,10.25,SDN,1640.0,South Darfur,161.0,Sudan,105858.0,Al Radoum,23.75,10.25,SDN,1640.0,South Darfur,161.0,Sudan,105858.0,Al Radoum,both,identical +144409,24.25,10.25,SDN,1640.0,South Darfur,161.0,Sudan,105858.0,Al Radoum,24.25,10.25,SDN,1640.0,South Darfur,161.0,Sudan,105858.0,Al Radoum,both,identical +144410,24.75,10.25,SDN,1640.0,South Darfur,161.0,Sudan,105858.0,Al Radoum,24.75,10.25,SDN,1640.0,South Darfur,161.0,Sudan,105858.0,Al Radoum,both,identical +144411,25.25,10.25,SSD,1625.0,Western Bahr El Ghazal,160.0,South Sudan,105727.0,Raja,25.25,10.25,SSD,1625.0,Western Bahr El Ghazal,160.0,South Sudan,105727.0,Raja,both,identical +144412,25.75,10.25,SSD,1625.0,Western Bahr El Ghazal,160.0,South Sudan,105727.0,Raja,25.75,10.25,SSD,1625.0,Western Bahr El Ghazal,160.0,South Sudan,105727.0,Raja,both,identical +144413,26.25,10.25,SDN,1630.0,East Darfur,161.0,Sudan,105769.0,Bahr Al Arab,26.25,10.25,SDN,1630.0,East Darfur,161.0,Sudan,105769.0,Bahr Al Arab,both,identical +144414,26.75,10.25,SDN,1630.0,East Darfur,161.0,Sudan,105769.0,Bahr Al Arab,26.75,10.25,SDN,1630.0,East Darfur,161.0,Sudan,105769.0,Bahr Al Arab,both,identical +144415,27.25,10.25,SDN,1630.0,East Darfur,161.0,Sudan,105769.0,Bahr Al Arab,27.25,10.25,SDN,1630.0,East Darfur,161.0,Sudan,105769.0,Bahr Al Arab,both,identical +144416,27.75,10.25,SDN,1643.0,West Kordofan,161.0,Sudan,105910.0,Al Meiram,27.75,10.25,SDN,1643.0,West Kordofan,161.0,Sudan,105910.0,Al Meiram,both,identical +144417,28.25,10.25,SDN,1643.0,West Kordofan,161.0,Sudan,105906.0,Al Dibab,28.25,10.25,SDN,1643.0,West Kordofan,161.0,Sudan,105906.0,Al Dibab,both,identical +144418,28.75,10.25,SDN,1643.0,West Kordofan,161.0,Sudan,105906.0,Al Dibab,28.75,10.25,SDN,1643.0,West Kordofan,161.0,Sudan,105906.0,Al Dibab,both,identical +144419,29.25,10.25,SDN,1643.0,West Kordofan,161.0,Sudan,105916.0,Keilak,29.25,10.25,SDN,1643.0,West Kordofan,161.0,Sudan,105916.0,Keilak,both,identical +144420,29.75,10.25,SDN,1643.0,West Kordofan,161.0,Sudan,105916.0,Keilak,29.75,10.25,SDN,1643.0,West Kordofan,161.0,Sudan,105916.0,Keilak,both,identical +144421,30.25,10.25,SDN,1641.0,South Kordofan,161.0,Sudan,105894.0,Talawdi,30.25,10.25,SDN,1641.0,South Kordofan,161.0,Sudan,105894.0,Talawdi,both,identical +144422,30.75,10.25,SDN,1641.0,South Kordofan,161.0,Sudan,105883.0,Al Leri,30.75,10.25,SDN,1641.0,South Kordofan,161.0,Sudan,105883.0,Al Leri,both,identical +144423,31.25,10.25,SDN,1641.0,South Kordofan,161.0,Sudan,105890.0,Ghadeer,31.25,10.25,SDN,1641.0,South Kordofan,161.0,Sudan,105890.0,Ghadeer,both,identical +144424,31.75,10.25,SSD,1623.0,Upper Nile,160.0,South Sudan,105709.0,Fashoda,31.75,10.25,SDN,1641.0,South Kordofan,161.0,Sudan,105880.0,Abu Jubayhah,both,country_reassignment +144425,32.25,10.25,SSD,1623.0,Upper Nile,160.0,South Sudan,105716.0,Melut,32.25,10.25,SSD,1623.0,Upper Nile,160.0,South Sudan,105716.0,Melut,both,identical +144426,32.75,10.25,SSD,1623.0,Upper Nile,160.0,South Sudan,105716.0,Melut,32.75,10.25,SSD,1623.0,Upper Nile,160.0,South Sudan,105716.0,Melut,both,identical +144427,33.25,10.25,SSD,1623.0,Upper Nile,160.0,South Sudan,105712.0,Maban,33.25,10.25,SSD,1623.0,Upper Nile,160.0,South Sudan,105712.0,Maban,both,identical +144428,33.75,10.25,SSD,1623.0,Upper Nile,160.0,South Sudan,105712.0,Maban,33.75,10.25,SSD,1623.0,Upper Nile,160.0,South Sudan,105712.0,Maban,both,identical +144429,34.25,10.25,SDN,1628.0,Blue Nile,161.0,Sudan,105747.0,Al Kurmuk,34.25,10.25,SDN,1628.0,Blue Nile,161.0,Sudan,105747.0,Al Kurmuk,both,identical +144430,34.75,10.25,ETH,1292.0,Benishangul Gumz,124.0,Ethiopia,103061.0,Assosa,34.75,10.25,ETH,1292.0,Benishangul Gumz,124.0,Ethiopia,103061.0,Assosa,both,identical +144431,35.25,10.25,ETH,1292.0,Benishangul Gumz,124.0,Ethiopia,103061.0,Assosa,35.25,10.25,ETH,1292.0,Benishangul Gumz,124.0,Ethiopia,103061.0,Assosa,both,identical +144432,35.75,10.25,ETH,1292.0,Benishangul Gumz,124.0,Ethiopia,103064.0,Metekel,35.75,10.25,ETH,1292.0,Benishangul Gumz,124.0,Ethiopia,103064.0,Metekel,both,identical +144433,36.25,10.25,ETH,1292.0,Benishangul Gumz,124.0,Ethiopia,103064.0,Metekel,36.25,10.25,ETH,1292.0,Benishangul Gumz,124.0,Ethiopia,103064.0,Metekel,both,identical +144434,36.75,10.25,ETH,1296.0,Oromia,124.0,Ethiopia,103079.0,East Wellega,36.75,10.25,ETH,1296.0,Oromia,124.0,Ethiopia,103079.0,East Wellega,both,identical +144435,37.25,10.25,ETH,1291.0,Amhara,124.0,Ethiopia,103051.0,East Gojam,37.25,10.25,ETH,1291.0,Amhara,124.0,Ethiopia,103051.0,East Gojam,both,identical +144436,37.75,10.25,ETH,1291.0,Amhara,124.0,Ethiopia,103051.0,East Gojam,37.75,10.25,ETH,1291.0,Amhara,124.0,Ethiopia,103051.0,East Gojam,both,identical +144437,38.25,10.25,ETH,1291.0,Amhara,124.0,Ethiopia,103051.0,East Gojam,38.25,10.25,ETH,1291.0,Amhara,124.0,Ethiopia,103051.0,East Gojam,both,identical +144438,38.75,10.25,ETH,1291.0,Amhara,124.0,Ethiopia,103086.0,North Shewa (Or),38.75,10.25,ETH,1296.0,Oromia,124.0,Ethiopia,103086.0,North Shewa (Or),both,admin_reallocation +144439,39.25,10.25,ETH,1291.0,Amhara,124.0,Ethiopia,103053.0,North Shewa (Am),39.25,10.25,ETH,1291.0,Amhara,124.0,Ethiopia,103053.0,North Shewa (Am),both,identical +144440,39.75,10.25,ETH,1291.0,Amhara,124.0,Ethiopia,103053.0,North Shewa (Am),39.75,10.25,ETH,1291.0,Amhara,124.0,Ethiopia,103053.0,North Shewa (Am),both,identical +144441,40.25,10.25,ETH,1290.0,Afar,124.0,Ethiopia,103047.0,Hari /Zone 5,40.25,10.25,ETH,1290.0,Afar,124.0,Ethiopia,103047.0,Hari /Zone 5,both,identical +144442,40.75,10.25,ETH,1290.0,Afar,124.0,Ethiopia,103046.0,Gabi /Zone 3,40.75,10.25,ETH,1290.0,Afar,124.0,Ethiopia,103046.0,Gabi /Zone 3,both,identical +144443,41.25,10.25,ETH,1299.0,Somali,124.0,Ethiopia,103121.0,Siti,41.25,10.25,ETH,1299.0,Somali,124.0,Ethiopia,103121.0,Siti,both,identical +144444,41.75,10.25,ETH,1299.0,Somali,124.0,Ethiopia,103121.0,Siti,41.75,10.25,ETH,1299.0,Somali,124.0,Ethiopia,103121.0,Siti,both,identical +144445,42.25,10.25,ETH,1299.0,Somali,124.0,Ethiopia,103121.0,Siti,42.25,10.25,ETH,1299.0,Somali,124.0,Ethiopia,103121.0,Siti,both,identical +144446,42.75,10.25,ETH,1299.0,Somali,124.0,Ethiopia,103121.0,Siti,42.75,10.25,ETH,1299.0,Somali,124.0,Ethiopia,103121.0,Siti,both,identical +144447,43.25,10.25,-99,,,,,,,43.25,10.25,SOM,1589.0,Awdal,158.0,Somalia,105536.0,Borama,both,country_reassignment +144448,43.75,10.25,-99,,,,,,,43.75,10.25,SOM,1589.0,Awdal,158.0,Somalia,105535.0,Baki,both,country_reassignment +144449,44.25,10.25,-99,,,,,,,44.25,10.25,SOM,1606.0,Woqooyi Galbeed,158.0,Somalia,105608.0,Hargeysa,both,country_reassignment +144450,44.75,10.25,-99,,,,,,,44.75,10.25,SOM,1606.0,Woqooyi Galbeed,158.0,Somalia,105606.0,Berbera,both,country_reassignment +144451,45.25,10.25,-99,,,,,,,45.25,10.25,SOM,1606.0,Woqooyi Galbeed,158.0,Somalia,105606.0,Berbera,both,country_reassignment +144452,45.75,10.25,-99,,,,,,,45.75,10.25,SOM,1606.0,Woqooyi Galbeed,158.0,Somalia,105606.0,Berbera,both,country_reassignment +144453,46.25,10.25,-99,,,,,,,46.25,10.25,SOM,1603.0,Sanaag,158.0,Somalia,105595.0,Ceel Afweyn,both,country_reassignment +144454,46.75,10.25,-99,,,,,,,46.75,10.25,SOM,1603.0,Sanaag,158.0,Somalia,105595.0,Ceel Afweyn,both,country_reassignment +144455,47.25,10.25,-99,,,,,,,47.25,10.25,SOM,1603.0,Sanaag,158.0,Somalia,105595.0,Ceel Afweyn,both,country_reassignment +144456,47.75,10.25,-99,,,,,,,47.75,10.25,SOM,1603.0,Sanaag,158.0,Somalia,105596.0,Ceerigaabo,both,country_reassignment +144457,48.25,10.25,-99,,,,,,,48.25,10.25,SOM,1603.0,Sanaag,158.0,Somalia,105596.0,Ceerigaabo,both,country_reassignment +144458,48.75,10.25,-99,,,,,,,48.75,10.25,SOM,1603.0,Sanaag,158.0,Somalia,105597.0,Laasqoray,both,country_reassignment +144459,49.25,10.25,SOM,1592.0,Bari,158.0,Somalia,105550.0,Qardho,49.25,10.25,SOM,1592.0,Bari,158.0,Somalia,105550.0,Qardho,both,identical +144460,49.75,10.25,SOM,1592.0,Bari,158.0,Somalia,105548.0,Iskushuban,49.75,10.25,SOM,1592.0,Bari,158.0,Somalia,105548.0,Iskushuban,both,identical +144461,50.25,10.25,SOM,1592.0,Bari,158.0,Somalia,105548.0,Iskushuban,50.25,10.25,SOM,1592.0,Bari,158.0,Somalia,105548.0,Iskushuban,both,identical +144462,50.75,10.25,SOM,1592.0,Bari,158.0,Somalia,105548.0,Iskushuban,50.75,10.25,SOM,1592.0,Bari,158.0,Somalia,105548.0,Iskushuban,both,identical +144463,51.25,10.25,SOM,1592.0,Bari,158.0,Somalia,105548.0,Iskushuban,51.25,10.25,SOM,1592.0,Bari,158.0,Somalia,105548.0,Iskushuban,both,identical +145050,-15.25,10.75,GIN,1332.0,Boke,131.0,Guinea,103452.0,Boke,-15.25,10.75,GIN,1332.0,Boke,131.0,Guinea,103452.0,Boke,both,identical +145051,-14.75,10.75,GIN,1332.0,Boke,131.0,Guinea,103452.0,Boke,-14.75,10.75,GIN,1332.0,Boke,131.0,Guinea,103452.0,Boke,both,identical +145052,-14.25,10.75,GIN,1332.0,Boke,131.0,Guinea,103452.0,Boke,-14.25,10.75,GIN,1332.0,Boke,131.0,Guinea,103452.0,Boke,both,identical +145053,-13.75,10.75,GIN,1332.0,Boke,131.0,Guinea,103470.0,Telimele,-13.75,10.75,GIN,1336.0,Kindia,131.0,Guinea,103470.0,Telimele,both,admin_reallocation +145054,-13.25,10.75,GIN,1336.0,Kindia,131.0,Guinea,103470.0,Telimele,-13.25,10.75,GIN,1336.0,Kindia,131.0,Guinea,103470.0,Telimele,both,identical +145055,-12.75,10.75,GIN,1338.0,Mamou,131.0,Guinea,103478.0,Pita,-12.75,10.75,GIN,1338.0,Mamou,131.0,Guinea,103478.0,Pita,both,identical +145056,-12.25,10.75,GIN,1338.0,Mamou,131.0,Guinea,103476.0,Dalaba,-12.25,10.75,GIN,1338.0,Mamou,131.0,Guinea,103476.0,Dalaba,both,identical +145057,-11.75,10.75,GIN,1338.0,Mamou,131.0,Guinea,103477.0,Mamou,-11.75,10.75,GIN,1338.0,Mamou,131.0,Guinea,103477.0,Mamou,both,identical +145058,-11.25,10.75,GIN,1334.0,Faranah,131.0,Guinea,103457.0,Dabola,-11.25,10.75,GIN,1334.0,Faranah,131.0,Guinea,103457.0,Dabola,both,identical +145059,-10.75,10.75,GIN,1334.0,Faranah,131.0,Guinea,103457.0,Dabola,-10.75,10.75,GIN,1334.0,Faranah,131.0,Guinea,103457.0,Dabola,both,identical +145060,-10.25,10.75,GIN,1335.0,Kankan,131.0,Guinea,103463.0,Kouroussa,-10.25,10.75,GIN,1335.0,Kankan,131.0,Guinea,103463.0,Kouroussa,both,identical +145061,-9.75,10.75,GIN,1335.0,Kankan,131.0,Guinea,103463.0,Kouroussa,-9.75,10.75,GIN,1335.0,Kankan,131.0,Guinea,103463.0,Kouroussa,both,identical +145062,-9.25,10.75,GIN,1335.0,Kankan,131.0,Guinea,103461.0,Kankan,-9.25,10.75,GIN,1335.0,Kankan,131.0,Guinea,103461.0,Kankan,both,identical +145063,-8.75,10.75,GIN,1335.0,Kankan,131.0,Guinea,103464.0,Mandiana,-8.75,10.75,GIN,1335.0,Kankan,131.0,Guinea,103464.0,Mandiana,both,identical +145064,-8.25,10.75,MLI,1443.0,Sikasso,143.0,Mali,104146.0,Yanfolila,-8.25,10.75,MLI,1443.0,Sikasso,143.0,Mali,104146.0,Yanfolila,both,identical +145065,-7.75,10.75,MLI,1443.0,Sikasso,143.0,Mali,104146.0,Yanfolila,-7.75,10.75,MLI,1443.0,Sikasso,143.0,Mali,104146.0,Yanfolila,both,identical +145066,-7.25,10.75,MLI,1443.0,Sikasso,143.0,Mali,104141.0,Bougouni,-7.25,10.75,MLI,1443.0,Sikasso,143.0,Mali,104141.0,Bougouni,both,identical +145067,-6.75,10.75,MLI,1443.0,Sikasso,143.0,Mali,104143.0,Kolondiéba,-6.75,10.75,MLI,1443.0,Sikasso,143.0,Mali,104143.0,Kolondiéba,both,identical +145068,-6.25,10.75,MLI,1443.0,Sikasso,143.0,Mali,104143.0,Kolondiéba,-6.25,10.75,MLI,1443.0,Sikasso,143.0,Mali,104143.0,Kolondiéba,both,identical +145069,-5.75,10.75,MLI,1443.0,Sikasso,143.0,Mali,104142.0,Kadiolo,-5.75,10.75,MLI,1443.0,Sikasso,143.0,Mali,104142.0,Kadiolo,both,identical +145070,-5.25,10.75,BFA,1102.0,Cascades,108.0,Burkina Faso,101827.0,Léraba,-5.25,10.75,BFA,1102.0,Cascades,108.0,Burkina Faso,101827.0,Léraba,both,identical +145071,-4.75,10.75,BFA,1102.0,Cascades,108.0,Burkina Faso,101826.0,Comoé,-4.75,10.75,BFA,1102.0,Cascades,108.0,Burkina Faso,101826.0,Comoé,both,identical +145072,-4.25,10.75,BFA,1102.0,Cascades,108.0,Burkina Faso,101826.0,Comoé,-4.25,10.75,BFA,1102.0,Cascades,108.0,Burkina Faso,101826.0,Comoé,both,identical +145073,-3.75,10.75,BFA,1113.0,Sud-Ouest,108.0,Burkina Faso,101847.0,Houet,-3.75,10.75,BFA,1109.0,Hauts-Bassins,108.0,Burkina Faso,101847.0,Houet,both,admin_reallocation +145074,-3.25,10.75,BFA,1113.0,Sud-Ouest,108.0,Burkina Faso,101861.0,Bougouriba,-3.25,10.75,BFA,1113.0,Sud-Ouest,108.0,Burkina Faso,101861.0,Bougouriba,both,identical +145075,-2.75,10.75,GHA,1328.0,Upper West,129.0,Ghana,103394.0,Lambussie Karni,-2.75,10.75,GHA,1328.0,Upper West,129.0,Ghana,103394.0,Lambussie Karni,both,identical +145076,-2.25,10.75,GHA,1328.0,Upper West,129.0,Ghana,103398.0,Sissala West,-2.25,10.75,GHA,1328.0,Upper West,129.0,Ghana,103398.0,Sissala West,both,identical +145077,-1.75,10.75,GHA,1328.0,Upper West,129.0,Ghana,103399.0,Sissala East,-1.75,10.75,GHA,1328.0,Upper West,129.0,Ghana,103399.0,Sissala East,both,identical +145078,-1.25,10.75,GHA,1327.0,Upper East,129.0,Ghana,103384.0,Builsa North,-1.25,10.75,GHA,1327.0,Upper East,129.0,Ghana,103384.0,Builsa North,both,identical +145079,-0.75,10.75,GHA,1327.0,Upper East,129.0,Ghana,103391.0,Talensi,-0.75,10.75,GHA,1327.0,Upper East,129.0,Ghana,103391.0,Talensi,both,identical +145080,-0.25,10.75,GHA,1327.0,Upper East,129.0,Ghana,103386.0,Garu Tempane,-0.25,10.75,GHA,1327.0,Upper East,129.0,Ghana,103386.0,Garu Tempane,both,identical +145081,0.25,10.75,TGO,1649.0,Savanes,162.0,Togo,105965.0,Tône,0.25,10.75,TGO,1649.0,Savanes,162.0,Togo,105965.0,Tône,both,identical +145082,0.75,10.75,TGO,1649.0,Savanes,162.0,Togo,105960.0,Kpendjal,0.75,10.75,TGO,1649.0,Savanes,162.0,Togo,105960.0,Kpendjal,both,identical +145083,1.25,10.75,BEN,1072.0,Atacora,105.0,Benin,101727.0,Tanguiéta,1.25,10.75,BEN,1072.0,Atacora,105.0,Benin,101727.0,Tanguiéta,both,identical +145084,1.75,10.75,BEN,1072.0,Atacora,105.0,Benin,101722.0,Kouandé,1.75,10.75,BEN,1072.0,Atacora,105.0,Benin,101722.0,Kouandé,both,identical +145085,2.25,10.75,BEN,1072.0,Atacora,105.0,Benin,101723.0,Kérou,2.25,10.75,BEN,1072.0,Atacora,105.0,Benin,101723.0,Kérou,both,identical +145086,2.75,10.75,BEN,1071.0,Alibori,105.0,Benin,101715.0,Gogounou,2.75,10.75,BEN,1071.0,Alibori,105.0,Benin,101715.0,Gogounou,both,identical +145087,3.25,10.75,BEN,1071.0,Alibori,105.0,Benin,101719.0,Ségbana,3.25,10.75,BEN,1071.0,Alibori,105.0,Benin,101719.0,Ségbana,both,identical +145088,3.75,10.75,BEN,1071.0,Alibori,105.0,Benin,101719.0,Ségbana,3.75,10.75,BEN,1071.0,Alibori,105.0,Benin,101719.0,Ségbana,both,identical +145089,4.25,10.75,NGA,1543.0,Niger,151.0,Nigeria,105172.0,Borgu,4.25,10.75,NGA,1543.0,Niger,151.0,Nigeria,105172.0,Borgu,both,identical +145090,4.75,10.75,NGA,1538.0,Kebbi,151.0,Nigeria,105092.0,Ngaski,4.75,10.75,NGA,1538.0,Kebbi,151.0,Nigeria,105092.0,Ngaski,both,identical +145091,5.25,10.75,NGA,1543.0,Niger,151.0,Nigeria,105182.0,Magama,5.25,10.75,NGA,1543.0,Niger,151.0,Nigeria,105182.0,Magama,both,identical +145092,5.75,10.75,NGA,1543.0,Niger,151.0,Nigeria,105183.0,Mariga,5.75,10.75,NGA,1543.0,Niger,151.0,Nigeria,105183.0,Mariga,both,identical +145093,6.25,10.75,NGA,1535.0,Kaduna,151.0,Nigeria,104977.0,Birnin-Gwari,6.25,10.75,NGA,1535.0,Kaduna,151.0,Nigeria,104977.0,Birnin-Gwari,both,identical +145094,6.75,10.75,NGA,1535.0,Kaduna,151.0,Nigeria,104977.0,Birnin-Gwari,6.75,10.75,NGA,1535.0,Kaduna,151.0,Nigeria,104977.0,Birnin-Gwari,both,identical +145095,7.25,10.75,NGA,1535.0,Kaduna,151.0,Nigeria,104980.0,Igabi,7.25,10.75,NGA,1535.0,Kaduna,151.0,Nigeria,104980.0,Igabi,both,identical +145096,7.75,10.75,NGA,1535.0,Kaduna,151.0,Nigeria,104980.0,Igabi,7.75,10.75,NGA,1535.0,Kaduna,151.0,Nigeria,104980.0,Igabi,both,identical +145097,8.25,10.75,NGA,1535.0,Kaduna,151.0,Nigeria,104991.0,Kubau,8.25,10.75,NGA,1535.0,Kaduna,151.0,Nigeria,104991.0,Kubau,both,identical +145098,8.75,10.75,NGA,1521.0,Bauchi,151.0,Nigeria,105010.0,Doguwa,8.75,10.75,NGA,1536.0,Kano,151.0,Nigeria,105010.0,Doguwa,both,admin_reallocation +145099,9.25,10.75,NGA,1521.0,Bauchi,151.0,Nigeria,104738.0,Toro,9.25,10.75,NGA,1521.0,Bauchi,151.0,Nigeria,104738.0,Toro,both,identical +145100,9.75,10.75,NGA,1521.0,Bauchi,151.0,Nigeria,104728.0,Ganjuwa,9.75,10.75,NGA,1521.0,Bauchi,151.0,Nigeria,104728.0,Ganjuwa,both,identical +145101,10.25,10.75,NGA,1521.0,Bauchi,151.0,Nigeria,104728.0,Ganjuwa,10.25,10.75,NGA,1521.0,Bauchi,151.0,Nigeria,104728.0,Ganjuwa,both,identical +145102,10.75,10.75,NGA,1532.0,Gombe,151.0,Nigeria,104915.0,Dukku,10.75,10.75,NGA,1532.0,Gombe,151.0,Nigeria,104915.0,Dukku,both,identical +145103,11.25,10.75,NGA,1532.0,Gombe,151.0,Nigeria,104916.0,Funakaye,11.25,10.75,NGA,1532.0,Gombe,151.0,Nigeria,104916.0,Funakaye,both,identical +145104,11.75,10.75,NGA,1524.0,Borno,151.0,Nigeria,104776.0,Biu,11.75,10.75,NGA,1524.0,Borno,151.0,Nigeria,104776.0,Biu,both,identical +145105,12.25,10.75,NGA,1524.0,Borno,151.0,Nigeria,104776.0,Biu,12.25,10.75,NGA,1524.0,Borno,151.0,Nigeria,104776.0,Biu,both,identical +145106,12.75,10.75,NGA,1524.0,Borno,151.0,Nigeria,104777.0,Chibok,12.75,10.75,NGA,1524.0,Borno,151.0,Nigeria,104777.0,Chibok,both,identical +145107,13.25,10.75,NGA,1524.0,Borno,151.0,Nigeria,104773.0,Askira/Uba,13.25,10.75,NGA,1524.0,Borno,151.0,Nigeria,104773.0,Askira/Uba,both,identical +145108,13.75,10.75,CMR,1145.0,Extrême-Nord,112.0,Cameroon,102031.0,Mayo-Tsanaga,13.75,10.75,CMR,1145.0,Extrême-Nord,112.0,Cameroon,102031.0,Mayo-Tsanaga,both,identical +145109,14.25,10.75,CMR,1145.0,Extrême-Nord,112.0,Cameroon,102026.0,Diamaré,14.25,10.75,CMR,1145.0,Extrême-Nord,112.0,Cameroon,102026.0,Diamaré,both,identical +145110,14.75,10.75,CMR,1145.0,Extrême-Nord,112.0,Cameroon,102026.0,Diamaré,14.75,10.75,CMR,1145.0,Extrême-Nord,112.0,Cameroon,102026.0,Diamaré,both,identical +145111,15.25,10.75,TCD,1173.0,Mayo-Kebbi Est,114.0,Chad,102125.0,Mayo-Boneye,15.25,10.75,TCD,1173.0,Mayo-Kebbi Est,114.0,Chad,102125.0,Mayo-Boneye,both,identical +145112,15.75,10.75,TCD,1173.0,Mayo-Kebbi Est,114.0,Chad,102126.0,Mayo-Lemié,15.75,10.75,TCD,1173.0,Mayo-Kebbi Est,114.0,Chad,102126.0,Mayo-Lemié,both,identical +145113,16.25,10.75,TCD,1162.0,Chari-Baguirmi,114.0,Chad,102092.0,Loug-Chari,16.25,10.75,TCD,1162.0,Chari-Baguirmi,114.0,Chad,102092.0,Loug-Chari,both,identical +145114,16.75,10.75,TCD,1162.0,Chari-Baguirmi,114.0,Chad,102092.0,Loug-Chari,16.75,10.75,TCD,1162.0,Chari-Baguirmi,114.0,Chad,102092.0,Loug-Chari,both,identical +145115,17.25,10.75,TCD,1162.0,Chari-Baguirmi,114.0,Chad,102092.0,Loug-Chari,17.25,10.75,TCD,1162.0,Chari-Baguirmi,114.0,Chad,102092.0,Loug-Chari,both,identical +145116,17.75,10.75,TCD,1165.0,Guéra,114.0,Chad,102098.0,Barh-Signaka,17.75,10.75,TCD,1165.0,Guéra,114.0,Chad,102098.0,Barh-Signaka,both,identical +145117,18.25,10.75,TCD,1165.0,Guéra,114.0,Chad,102098.0,Barh-Signaka,18.25,10.75,TCD,1165.0,Guéra,114.0,Chad,102098.0,Barh-Signaka,both,identical +145118,18.75,10.75,TCD,1165.0,Guéra,114.0,Chad,102098.0,Barh-Signaka,18.75,10.75,TCD,1165.0,Guéra,114.0,Chad,102098.0,Barh-Signaka,both,identical +145119,19.25,10.75,TCD,1165.0,Guéra,114.0,Chad,102098.0,Barh-Signaka,19.25,10.75,TCD,1165.0,Guéra,114.0,Chad,102098.0,Barh-Signaka,both,identical +145120,19.75,10.75,TCD,1178.0,Salamat,114.0,Chad,102139.0,Bahr-Azoum,19.75,10.75,TCD,1178.0,Salamat,114.0,Chad,102139.0,Bahr-Azoum,both,identical +145121,20.25,10.75,TCD,1178.0,Salamat,114.0,Chad,102139.0,Bahr-Azoum,20.25,10.75,TCD,1178.0,Salamat,114.0,Chad,102139.0,Bahr-Azoum,both,identical +145122,20.75,10.75,TCD,1178.0,Salamat,114.0,Chad,102139.0,Bahr-Azoum,20.75,10.75,TCD,1178.0,Salamat,114.0,Chad,102139.0,Bahr-Azoum,both,identical +145123,21.25,10.75,TCD,1178.0,Salamat,114.0,Chad,102140.0,Haraze-Mangueigne,21.25,10.75,TCD,1178.0,Salamat,114.0,Chad,102140.0,Haraze-Mangueigne,both,identical +145124,21.75,10.75,TCD,1178.0,Salamat,114.0,Chad,102140.0,Haraze-Mangueigne,21.75,10.75,TCD,1178.0,Salamat,114.0,Chad,102140.0,Haraze-Mangueigne,both,identical +145125,22.25,10.75,CAF,1154.0,Fertit,113.0,Central African Republic,102071.0,Vakaga,22.25,10.75,CAF,1154.0,Fertit,113.0,Central African Republic,102071.0,Vakaga,both,identical +145126,22.75,10.75,CAF,1154.0,Fertit,113.0,Central African Republic,102071.0,Vakaga,22.75,10.75,CAF,1154.0,Fertit,113.0,Central African Republic,102071.0,Vakaga,both,identical +145127,23.25,10.75,SDN,1640.0,South Darfur,161.0,Sudan,105874.0,Rehaid Albirdi,23.25,10.75,SDN,1640.0,South Darfur,161.0,Sudan,105874.0,Rehaid Albirdi,both,identical +145128,23.75,10.75,SDN,1640.0,South Darfur,161.0,Sudan,105878.0,Um Dafoug,23.75,10.75,SDN,1640.0,South Darfur,161.0,Sudan,105878.0,Um Dafoug,both,identical +145129,24.25,10.75,SDN,1640.0,South Darfur,161.0,Sudan,105868.0,Kateila,24.25,10.75,SDN,1640.0,South Darfur,161.0,Sudan,105868.0,Kateila,both,identical +145130,24.75,10.75,SDN,1640.0,South Darfur,161.0,Sudan,105858.0,Al Radoum,24.75,10.75,SDN,1640.0,South Darfur,161.0,Sudan,105858.0,Al Radoum,both,identical +145131,25.25,10.75,SDN,1640.0,South Darfur,161.0,Sudan,105863.0,Buram,25.25,10.75,SDN,1640.0,South Darfur,161.0,Sudan,105863.0,Buram,both,identical +145132,25.75,10.75,SDN,1640.0,South Darfur,161.0,Sudan,105861.0,As Sunta,25.75,10.75,SDN,1640.0,South Darfur,161.0,Sudan,105861.0,As Sunta,both,identical +145133,26.25,10.75,SDN,1630.0,East Darfur,161.0,Sudan,105769.0,Bahr Al Arab,26.25,10.75,SDN,1630.0,East Darfur,161.0,Sudan,105769.0,Bahr Al Arab,both,identical +145134,26.75,10.75,SDN,1630.0,East Darfur,161.0,Sudan,105763.0,Abu Jabrah,26.75,10.75,SDN,1630.0,East Darfur,161.0,Sudan,105763.0,Abu Jabrah,both,identical +145135,27.25,10.75,SDN,1630.0,East Darfur,161.0,Sudan,105763.0,Abu Jabrah,27.25,10.75,SDN,1630.0,East Darfur,161.0,Sudan,105763.0,Abu Jabrah,both,identical +145136,27.75,10.75,SDN,1643.0,West Kordofan,161.0,Sudan,105905.0,Abyei,27.75,10.75,SDN,1643.0,West Kordofan,161.0,Sudan,105905.0,Abyei,both,identical +145137,28.25,10.75,SDN,1643.0,West Kordofan,161.0,Sudan,105912.0,As Salam - Wk,28.25,10.75,SDN,1643.0,West Kordofan,161.0,Sudan,105912.0,As Salam - Wk,both,identical +145138,28.75,10.75,SDN,1643.0,West Kordofan,161.0,Sudan,105916.0,Keilak,28.75,10.75,SDN,1643.0,West Kordofan,161.0,Sudan,105916.0,Keilak,both,identical +145139,29.25,10.75,SDN,1643.0,West Kordofan,161.0,Sudan,105916.0,Keilak,29.25,10.75,SDN,1643.0,West Kordofan,161.0,Sudan,105916.0,Keilak,both,identical +145140,29.75,10.75,SDN,1641.0,South Kordofan,161.0,Sudan,105882.0,Al Buram,29.75,10.75,SDN,1641.0,South Kordofan,161.0,Sudan,105882.0,Al Buram,both,identical +145141,30.25,10.75,SDN,1641.0,South Kordofan,161.0,Sudan,105895.0,Um Durein,30.25,10.75,SDN,1641.0,South Kordofan,161.0,Sudan,105895.0,Um Durein,both,identical +145142,30.75,10.75,SDN,1641.0,South Kordofan,161.0,Sudan,105890.0,Ghadeer,30.75,10.75,SDN,1641.0,South Kordofan,161.0,Sudan,105890.0,Ghadeer,both,identical +145143,31.25,10.75,SDN,1641.0,South Kordofan,161.0,Sudan,105890.0,Ghadeer,31.25,10.75,SDN,1641.0,South Kordofan,161.0,Sudan,105890.0,Ghadeer,both,identical +145144,31.75,10.75,SDN,1641.0,South Kordofan,161.0,Sudan,105880.0,Abu Jubayhah,31.75,10.75,SDN,1641.0,South Kordofan,161.0,Sudan,105880.0,Abu Jubayhah,both,identical +145145,32.25,10.75,SSD,1623.0,Upper Nile,160.0,South Sudan,105715.0,Manyo,32.25,10.75,SSD,1623.0,Upper Nile,160.0,South Sudan,105715.0,Manyo,both,identical +145146,32.75,10.75,SSD,1623.0,Upper Nile,160.0,South Sudan,105716.0,Melut,32.75,10.75,SSD,1623.0,Upper Nile,160.0,South Sudan,105716.0,Melut,both,identical +145147,33.25,10.75,SSD,1623.0,Upper Nile,160.0,South Sudan,105718.0,Renk,33.25,10.75,SSD,1623.0,Upper Nile,160.0,South Sudan,105718.0,Renk,both,identical +145148,33.75,10.75,SDN,1628.0,Blue Nile,161.0,Sudan,105750.0,Baw,33.75,10.75,SDN,1628.0,Blue Nile,161.0,Sudan,105750.0,Baw,both,identical +145149,34.25,10.75,SDN,1628.0,Blue Nile,161.0,Sudan,105747.0,Al Kurmuk,34.25,10.75,SDN,1628.0,Blue Nile,161.0,Sudan,105747.0,Al Kurmuk,both,identical +145150,34.75,10.75,ETH,1292.0,Benishangul Gumz,124.0,Ethiopia,103061.0,Assosa,34.75,10.75,ETH,1292.0,Benishangul Gumz,124.0,Ethiopia,103061.0,Assosa,both,identical +145151,35.25,10.75,ETH,1292.0,Benishangul Gumz,124.0,Ethiopia,103064.0,Metekel,35.25,10.75,ETH,1292.0,Benishangul Gumz,124.0,Ethiopia,103064.0,Metekel,both,identical +145152,35.75,10.75,ETH,1292.0,Benishangul Gumz,124.0,Ethiopia,103064.0,Metekel,35.75,10.75,ETH,1292.0,Benishangul Gumz,124.0,Ethiopia,103064.0,Metekel,both,identical +145153,36.25,10.75,ETH,1292.0,Benishangul Gumz,124.0,Ethiopia,103064.0,Metekel,36.25,10.75,ETH,1292.0,Benishangul Gumz,124.0,Ethiopia,103064.0,Metekel,both,identical +145154,36.75,10.75,ETH,1291.0,Amhara,124.0,Ethiopia,103049.0,Awi,36.75,10.75,ETH,1291.0,Amhara,124.0,Ethiopia,103049.0,Awi,both,identical +145155,37.25,10.75,ETH,1291.0,Amhara,124.0,Ethiopia,103059.0,West Gojam,37.25,10.75,ETH,1291.0,Amhara,124.0,Ethiopia,103059.0,West Gojam,both,identical +145156,37.75,10.75,ETH,1291.0,Amhara,124.0,Ethiopia,103051.0,East Gojam,37.75,10.75,ETH,1291.0,Amhara,124.0,Ethiopia,103051.0,East Gojam,both,identical +145157,38.25,10.75,ETH,1291.0,Amhara,124.0,Ethiopia,103051.0,East Gojam,38.25,10.75,ETH,1291.0,Amhara,124.0,Ethiopia,103051.0,East Gojam,both,identical +145158,38.75,10.75,ETH,1291.0,Amhara,124.0,Ethiopia,103057.0,South Wello,38.75,10.75,ETH,1291.0,Amhara,124.0,Ethiopia,103057.0,South Wello,both,identical +145159,39.25,10.75,ETH,1291.0,Amhara,124.0,Ethiopia,103057.0,South Wello,39.25,10.75,ETH,1291.0,Amhara,124.0,Ethiopia,103057.0,South Wello,both,identical +145160,39.75,10.75,ETH,1291.0,Amhara,124.0,Ethiopia,103057.0,South Wello,39.75,10.75,ETH,1291.0,Amhara,124.0,Ethiopia,103057.0,South Wello,both,identical +145161,40.25,10.75,ETH,1290.0,Afar,124.0,Ethiopia,103047.0,Hari /Zone 5,40.25,10.75,ETH,1290.0,Afar,124.0,Ethiopia,103047.0,Hari /Zone 5,both,identical +145162,40.75,10.75,ETH,1290.0,Afar,124.0,Ethiopia,103046.0,Gabi /Zone 3,40.75,10.75,ETH,1290.0,Afar,124.0,Ethiopia,103046.0,Gabi /Zone 3,both,identical +145163,41.25,10.75,ETH,1299.0,Somali,124.0,Ethiopia,103121.0,Siti,41.25,10.75,ETH,1299.0,Somali,124.0,Ethiopia,103121.0,Siti,both,identical +145164,41.75,10.75,ETH,1299.0,Somali,124.0,Ethiopia,103121.0,Siti,41.75,10.75,ETH,1299.0,Somali,124.0,Ethiopia,103121.0,Siti,both,identical +145165,42.25,10.75,ETH,1299.0,Somali,124.0,Ethiopia,103121.0,Siti,42.25,10.75,ETH,1299.0,Somali,124.0,Ethiopia,103121.0,Siti,both,identical +145166,42.75,10.75,ETH,1299.0,Somali,124.0,Ethiopia,103121.0,Siti,42.75,10.75,ETH,1299.0,Somali,124.0,Ethiopia,103121.0,Siti,both,identical +145167,43.25,10.75,-99,,,,,,,43.25,10.75,SOM,1589.0,Awdal,158.0,Somalia,105538.0,Zeylac,both,country_reassignment +145168,43.75,10.75,-99,,,,,,,43.75,10.75,SOM,1589.0,Awdal,158.0,Somalia,105537.0,Lughaye,both,country_reassignment +145169,44.25,10.75,-99,,,,,,,44.25,10.75,SOM,1589.0,Awdal,158.0,Somalia,105535.0,Baki,both,country_reassignment +145171,45.25,10.75,-99,,,,,,,45.25,10.75,SOM,1606.0,Woqooyi Galbeed,158.0,Somalia,105606.0,Berbera,both,country_reassignment +145172,45.75,10.75,-99,,,,,,,45.75,10.75,SOM,1606.0,Woqooyi Galbeed,158.0,Somalia,105606.0,Berbera,both,country_reassignment +145173,46.25,10.75,-99,,,,,,,46.25,10.75,SOM,1603.0,Sanaag,158.0,Somalia,105595.0,Ceel Afweyn,both,country_reassignment +145174,46.75,10.75,-99,,,,,,,46.75,10.75,SOM,1603.0,Sanaag,158.0,Somalia,105595.0,Ceel Afweyn,both,country_reassignment +145175,47.25,10.75,-99,,,,,,,47.25,10.75,SOM,1603.0,Sanaag,158.0,Somalia,105596.0,Ceerigaabo,both,country_reassignment +145176,47.75,10.75,-99,,,,,,,47.75,10.75,SOM,1603.0,Sanaag,158.0,Somalia,105596.0,Ceerigaabo,both,country_reassignment +145177,48.25,10.75,-99,,,,,,,48.25,10.75,SOM,1603.0,Sanaag,158.0,Somalia,105596.0,Ceerigaabo,both,country_reassignment +145178,48.75,10.75,-99,,,,,,,48.75,10.75,SOM,1603.0,Sanaag,158.0,Somalia,105597.0,Laasqoray,both,country_reassignment +145179,49.25,10.75,SOM,1592.0,Bari,158.0,Somalia,105546.0,Bossaso,49.25,10.75,SOM,1592.0,Bari,158.0,Somalia,105546.0,Bossaso,both,identical +145180,49.75,10.75,SOM,1592.0,Bari,158.0,Somalia,105546.0,Bossaso,49.75,10.75,SOM,1592.0,Bari,158.0,Somalia,105546.0,Bossaso,both,identical +145181,50.25,10.75,SOM,1592.0,Bari,158.0,Somalia,105549.0,Qandala,50.25,10.75,SOM,1592.0,Bari,158.0,Somalia,105549.0,Qandala,both,identical +145182,50.75,10.75,SOM,1592.0,Bari,158.0,Somalia,105548.0,Iskushuban,50.75,10.75,SOM,1592.0,Bari,158.0,Somalia,105548.0,Iskushuban,both,identical +145183,51.25,10.75,SOM,1592.0,Bari,158.0,Somalia,105548.0,Iskushuban,51.25,10.75,SOM,1592.0,Bari,158.0,Somalia,105548.0,Iskushuban,both,identical +145768,-16.25,11.25,GNB,1342.0,Bolama/Bijagós,132.0,Guinea-Bissau,103497.0,Uno,-16.25,11.25,GNB,1342.0,Bolama/Bijagós,132.0,Guinea-Bissau,103497.0,Uno,both,identical +145769,-15.75,11.25,GNB,1342.0,Bolama/Bijagós,132.0,Guinea-Bissau,103495.0,Bubaque,-15.75,11.25,GNB,1342.0,Bolama/Bijagós,132.0,Guinea-Bissau,103495.0,Bubaque,both,identical +145770,-15.25,11.25,GNB,1348.0,Tombali,132.0,Guinea-Bissau,103519.0,Bedanda,-15.25,11.25,GNB,1348.0,Tombali,132.0,Guinea-Bissau,103519.0,Bedanda,both,identical +145771,-14.75,11.25,GIN,1332.0,Boke,131.0,Guinea,103452.0,Boke,-14.75,11.25,GIN,1332.0,Boke,131.0,Guinea,103452.0,Boke,both,identical +145772,-14.25,11.25,GIN,1332.0,Boke,131.0,Guinea,103452.0,Boke,-14.25,11.25,GIN,1332.0,Boke,131.0,Guinea,103452.0,Boke,both,identical +145773,-13.75,11.25,GIN,1332.0,Boke,131.0,Guinea,103470.0,Telimele,-13.75,11.25,GIN,1336.0,Kindia,131.0,Guinea,103470.0,Telimele,both,admin_reallocation +145774,-13.25,11.25,GIN,1332.0,Boke,131.0,Guinea,103454.0,Gaoual,-13.25,11.25,GIN,1332.0,Boke,131.0,Guinea,103454.0,Gaoual,both,identical +145775,-12.75,11.25,GIN,1337.0,Labe,131.0,Guinea,103473.0,Lelouma,-12.75,11.25,GIN,1337.0,Labe,131.0,Guinea,103473.0,Lelouma,both,identical +145776,-12.25,11.25,GIN,1337.0,Labe,131.0,Guinea,103472.0,Labe,-12.25,11.25,GIN,1337.0,Labe,131.0,Guinea,103472.0,Labe,both,identical +145777,-11.75,11.25,GIN,1337.0,Labe,131.0,Guinea,103475.0,Tougue,-11.75,11.25,GIN,1337.0,Labe,131.0,Guinea,103475.0,Tougue,both,identical +145778,-11.25,11.25,GIN,1334.0,Faranah,131.0,Guinea,103458.0,Dinguiraye,-11.25,11.25,GIN,1334.0,Faranah,131.0,Guinea,103458.0,Dinguiraye,both,identical +145779,-10.75,11.25,GIN,1334.0,Faranah,131.0,Guinea,103458.0,Dinguiraye,-10.75,11.25,GIN,1334.0,Faranah,131.0,Guinea,103458.0,Dinguiraye,both,identical +145780,-10.25,11.25,GIN,1335.0,Kankan,131.0,Guinea,103463.0,Kouroussa,-10.25,11.25,GIN,1335.0,Kankan,131.0,Guinea,103463.0,Kouroussa,both,identical +145781,-9.75,11.25,GIN,1335.0,Kankan,131.0,Guinea,103465.0,Siguiri,-9.75,11.25,GIN,1335.0,Kankan,131.0,Guinea,103465.0,Siguiri,both,identical +145782,-9.25,11.25,GIN,1335.0,Kankan,131.0,Guinea,103465.0,Siguiri,-9.25,11.25,GIN,1335.0,Kankan,131.0,Guinea,103465.0,Siguiri,both,identical +145783,-8.75,11.25,GIN,1335.0,Kankan,131.0,Guinea,103464.0,Mandiana,-8.75,11.25,GIN,1335.0,Kankan,131.0,Guinea,103464.0,Mandiana,both,identical +145784,-8.25,11.25,MLI,1443.0,Sikasso,143.0,Mali,104146.0,Yanfolila,-8.25,11.25,MLI,1443.0,Sikasso,143.0,Mali,104146.0,Yanfolila,both,identical +145785,-7.75,11.25,MLI,1443.0,Sikasso,143.0,Mali,104141.0,Bougouni,-7.75,11.25,MLI,1443.0,Sikasso,143.0,Mali,104141.0,Bougouni,both,identical +145786,-7.25,11.25,MLI,1443.0,Sikasso,143.0,Mali,104141.0,Bougouni,-7.25,11.25,MLI,1443.0,Sikasso,143.0,Mali,104141.0,Bougouni,both,identical +145787,-6.75,11.25,MLI,1443.0,Sikasso,143.0,Mali,104143.0,Kolondiéba,-6.75,11.25,MLI,1443.0,Sikasso,143.0,Mali,104143.0,Kolondiéba,both,identical +145788,-6.25,11.25,MLI,1443.0,Sikasso,143.0,Mali,104145.0,Sikasso,-6.25,11.25,MLI,1443.0,Sikasso,143.0,Mali,104145.0,Sikasso,both,identical +145789,-5.75,11.25,MLI,1443.0,Sikasso,143.0,Mali,104145.0,Sikasso,-5.75,11.25,MLI,1443.0,Sikasso,143.0,Mali,104145.0,Sikasso,both,identical +145790,-5.25,11.25,BFA,1109.0,Hauts-Bassins,108.0,Burkina Faso,101848.0,Kénédougou,-5.25,11.25,BFA,1109.0,Hauts-Bassins,108.0,Burkina Faso,101848.0,Kénédougou,both,identical +145791,-4.75,11.25,BFA,1109.0,Hauts-Bassins,108.0,Burkina Faso,101848.0,Kénédougou,-4.75,11.25,BFA,1109.0,Hauts-Bassins,108.0,Burkina Faso,101848.0,Kénédougou,both,identical +145792,-4.25,11.25,BFA,1109.0,Hauts-Bassins,108.0,Burkina Faso,101847.0,Houet,-4.25,11.25,BFA,1109.0,Hauts-Bassins,108.0,Burkina Faso,101847.0,Houet,both,identical +145793,-3.75,11.25,BFA,1109.0,Hauts-Bassins,108.0,Burkina Faso,101849.0,Tuy,-3.75,11.25,BFA,1109.0,Hauts-Bassins,108.0,Burkina Faso,101849.0,Tuy,both,identical +145794,-3.25,11.25,BFA,1113.0,Sud-Ouest,108.0,Burkina Faso,101849.0,Tuy,-3.25,11.25,BFA,1109.0,Hauts-Bassins,108.0,Burkina Faso,101849.0,Tuy,both,admin_reallocation +145795,-2.75,11.25,BFA,1106.0,Centre-Ouest,108.0,Burkina Faso,101837.0,Sissili,-2.75,11.25,BFA,1106.0,Centre-Ouest,108.0,Burkina Faso,101837.0,Sissili,both,identical +145796,-2.25,11.25,BFA,1106.0,Centre-Ouest,108.0,Burkina Faso,101837.0,Sissili,-2.25,11.25,BFA,1106.0,Centre-Ouest,108.0,Burkina Faso,101837.0,Sissili,both,identical +145797,-1.75,11.25,BFA,1106.0,Centre-Ouest,108.0,Burkina Faso,101837.0,Sissili,-1.75,11.25,BFA,1106.0,Centre-Ouest,108.0,Burkina Faso,101837.0,Sissili,both,identical +145798,-1.25,11.25,BFA,1107.0,Centre-Sud,108.0,Burkina Faso,101840.0,Nahouri,-1.25,11.25,BFA,1107.0,Centre-Sud,108.0,Burkina Faso,101840.0,Nahouri,both,identical +145799,-0.75,11.25,BFA,1107.0,Centre-Sud,108.0,Burkina Faso,101829.0,Boulgou,-0.75,11.25,BFA,1104.0,Centre-Est,108.0,Burkina Faso,101829.0,Boulgou,both,admin_reallocation +145800,-0.25,11.25,BFA,1104.0,Centre-Est,108.0,Burkina Faso,101829.0,Boulgou,-0.25,11.25,BFA,1104.0,Centre-Est,108.0,Burkina Faso,101829.0,Boulgou,both,identical +145801,0.25,11.25,BFA,1104.0,Centre-Est,108.0,Burkina Faso,101830.0,Koulpélogo,0.25,11.25,BFA,1104.0,Centre-Est,108.0,Burkina Faso,101830.0,Koulpélogo,both,identical +145802,0.75,11.25,BFA,1108.0,Est,108.0,Burkina Faso,101845.0,Kompienga,0.75,11.25,BFA,1108.0,Est,108.0,Burkina Faso,101845.0,Kompienga,both,identical +145803,1.25,11.25,BEN,1072.0,Atacora,105.0,Benin,101727.0,Tanguiéta,1.25,11.25,BEN,1072.0,Atacora,105.0,Benin,101727.0,Tanguiéta,both,identical +145804,1.75,11.25,BEN,1072.0,Atacora,105.0,Benin,101727.0,Tanguiéta,1.75,11.25,BEN,1072.0,Atacora,105.0,Benin,101727.0,Tanguiéta,both,identical +145805,2.25,11.25,BEN,1071.0,Alibori,105.0,Benin,101714.0,Banikoara,2.25,11.25,BEN,1071.0,Alibori,105.0,Benin,101714.0,Banikoara,both,identical +145806,2.75,11.25,BEN,1071.0,Alibori,105.0,Benin,101716.0,Kandi,2.75,11.25,BEN,1071.0,Alibori,105.0,Benin,101716.0,Kandi,both,identical +145807,3.25,11.25,BEN,1071.0,Alibori,105.0,Benin,101716.0,Kandi,3.25,11.25,BEN,1071.0,Alibori,105.0,Benin,101716.0,Kandi,both,identical +145808,3.75,11.25,NGA,1538.0,Kebbi,151.0,Nigeria,105082.0,Bagudo,3.75,11.25,NGA,1538.0,Kebbi,151.0,Nigeria,105082.0,Bagudo,both,identical +145809,4.25,11.25,NGA,1538.0,Kebbi,151.0,Nigeria,105082.0,Bagudo,4.25,11.25,NGA,1538.0,Kebbi,151.0,Nigeria,105082.0,Bagudo,both,identical +145810,4.75,11.25,NGA,1538.0,Kebbi,151.0,Nigeria,105094.0,Shanga,4.75,11.25,NGA,1538.0,Kebbi,151.0,Nigeria,105094.0,Shanga,both,identical +145811,5.25,11.25,NGA,1538.0,Kebbi,151.0,Nigeria,105189.0,Rijau,5.25,11.25,NGA,1543.0,Niger,151.0,Nigeria,105189.0,Rijau,both,admin_reallocation +145812,5.75,11.25,NGA,1538.0,Kebbi,151.0,Nigeria,105096.0,Wasagu/Danko,5.75,11.25,NGA,1538.0,Kebbi,151.0,Nigeria,105096.0,Wasagu/Danko,both,identical +145813,6.25,11.25,NGA,1553.0,Zamfara,151.0,Nigeria,105400.0,Maru,6.25,11.25,NGA,1553.0,Zamfara,151.0,Nigeria,105400.0,Maru,both,identical +145814,6.75,11.25,NGA,1553.0,Zamfara,151.0,Nigeria,104977.0,Birnin-Gwari,6.75,11.25,NGA,1535.0,Kaduna,151.0,Nigeria,104977.0,Birnin-Gwari,both,admin_reallocation +145815,7.25,11.25,NGA,1535.0,Kaduna,151.0,Nigeria,104979.0,Giwa,7.25,11.25,NGA,1535.0,Kaduna,151.0,Nigeria,104979.0,Giwa,both,identical +145816,7.75,11.25,NGA,1535.0,Kaduna,151.0,Nigeria,104997.0,Soba,7.75,11.25,NGA,1535.0,Kaduna,151.0,Nigeria,104997.0,Soba,both,identical +145817,8.25,11.25,NGA,1535.0,Kaduna,151.0,Nigeria,104981.0,Ikara,8.25,11.25,NGA,1535.0,Kaduna,151.0,Nigeria,104981.0,Ikara,both,identical +145818,8.75,11.25,NGA,1536.0,Kano,151.0,Nigeria,105035.0,Sumaila,8.75,11.25,NGA,1536.0,Kano,151.0,Nigeria,105035.0,Sumaila,both,identical +145819,9.25,11.25,NGA,1521.0,Bauchi,151.0,Nigeria,104735.0,Ningi,9.25,11.25,NGA,1521.0,Bauchi,151.0,Nigeria,104735.0,Ningi,both,identical +145820,9.75,11.25,NGA,1534.0,Jigawa,151.0,Nigeria,104960.0,Gwaram,9.75,11.25,NGA,1534.0,Jigawa,151.0,Nigeria,104960.0,Gwaram,both,identical +145821,10.25,11.25,NGA,1521.0,Bauchi,151.0,Nigeria,104734.0,Misau,10.25,11.25,NGA,1521.0,Bauchi,151.0,Nigeria,104734.0,Misau,both,identical +145822,10.75,11.25,NGA,1521.0,Bauchi,151.0,Nigeria,104725.0,Darazo,10.75,11.25,NGA,1521.0,Bauchi,151.0,Nigeria,104725.0,Darazo,both,identical +145823,11.25,11.25,NGA,1552.0,Yobe,151.0,Nigeria,105377.0,Fika,11.25,11.25,NGA,1552.0,Yobe,151.0,Nigeria,105377.0,Fika,both,identical +145824,11.75,11.25,NGA,1552.0,Yobe,151.0,Nigeria,105380.0,Gujba,11.75,11.25,NGA,1552.0,Yobe,151.0,Nigeria,105380.0,Gujba,both,identical +145825,12.25,11.25,NGA,1524.0,Borno,151.0,Nigeria,104778.0,Damboa,12.25,11.25,NGA,1524.0,Borno,151.0,Nigeria,104778.0,Damboa,both,identical +145826,12.75,11.25,NGA,1524.0,Borno,151.0,Nigeria,104778.0,Damboa,12.75,11.25,NGA,1524.0,Borno,151.0,Nigeria,104778.0,Damboa,both,identical +145827,13.25,11.25,NGA,1524.0,Borno,151.0,Nigeria,104778.0,Damboa,13.25,11.25,NGA,1524.0,Borno,151.0,Nigeria,104778.0,Damboa,both,identical +145828,13.75,11.25,NGA,1524.0,Borno,151.0,Nigeria,104782.0,Gwoza,13.75,11.25,NGA,1524.0,Borno,151.0,Nigeria,104782.0,Gwoza,both,identical +145829,14.25,11.25,CMR,1145.0,Extrême-Nord,112.0,Cameroon,102030.0,Mayo-Sava,14.25,11.25,CMR,1145.0,Extrême-Nord,112.0,Cameroon,102030.0,Mayo-Sava,both,identical +145830,14.75,11.25,CMR,1145.0,Extrême-Nord,112.0,Cameroon,102027.0,Logone-Et-Chari,14.75,11.25,CMR,1145.0,Extrême-Nord,112.0,Cameroon,102027.0,Logone-Et-Chari,both,identical +145831,15.25,11.25,TCD,1162.0,Chari-Baguirmi,114.0,Chad,102091.0,Chari,15.25,11.25,TCD,1162.0,Chari-Baguirmi,114.0,Chad,102091.0,Chari,both,identical +145832,15.75,11.25,TCD,1162.0,Chari-Baguirmi,114.0,Chad,102090.0,Baguirmi,15.75,11.25,TCD,1162.0,Chari-Baguirmi,114.0,Chad,102090.0,Baguirmi,both,identical +145833,16.25,11.25,TCD,1162.0,Chari-Baguirmi,114.0,Chad,102090.0,Baguirmi,16.25,11.25,TCD,1162.0,Chari-Baguirmi,114.0,Chad,102090.0,Baguirmi,both,identical +145834,16.75,11.25,TCD,1162.0,Chari-Baguirmi,114.0,Chad,102090.0,Baguirmi,16.75,11.25,TCD,1162.0,Chari-Baguirmi,114.0,Chad,102090.0,Baguirmi,both,identical +145835,17.25,11.25,TCD,1162.0,Chari-Baguirmi,114.0,Chad,102090.0,Baguirmi,17.25,11.25,TCD,1162.0,Chari-Baguirmi,114.0,Chad,102090.0,Baguirmi,both,identical +145836,17.75,11.25,TCD,1165.0,Guéra,114.0,Chad,102098.0,Barh-Signaka,17.75,11.25,TCD,1165.0,Guéra,114.0,Chad,102098.0,Barh-Signaka,both,identical +145837,18.25,11.25,TCD,1165.0,Guéra,114.0,Chad,102098.0,Barh-Signaka,18.25,11.25,TCD,1165.0,Guéra,114.0,Chad,102098.0,Barh-Signaka,both,identical +145838,18.75,11.25,TCD,1165.0,Guéra,114.0,Chad,102098.0,Barh-Signaka,18.75,11.25,TCD,1165.0,Guéra,114.0,Chad,102098.0,Barh-Signaka,both,identical +145839,19.25,11.25,TCD,1178.0,Salamat,114.0,Chad,102138.0,Aboudéia,19.25,11.25,TCD,1178.0,Salamat,114.0,Chad,102138.0,Aboudéia,both,identical +145840,19.75,11.25,TCD,1178.0,Salamat,114.0,Chad,102138.0,Aboudéia,19.75,11.25,TCD,1178.0,Salamat,114.0,Chad,102138.0,Aboudéia,both,identical +145841,20.25,11.25,TCD,1178.0,Salamat,114.0,Chad,102139.0,Bahr-Azoum,20.25,11.25,TCD,1178.0,Salamat,114.0,Chad,102139.0,Bahr-Azoum,both,identical +145842,20.75,11.25,TCD,1178.0,Salamat,114.0,Chad,102139.0,Bahr-Azoum,20.75,11.25,TCD,1178.0,Salamat,114.0,Chad,102139.0,Bahr-Azoum,both,identical +145843,21.25,11.25,TCD,1178.0,Salamat,114.0,Chad,102140.0,Haraze-Mangueigne,21.25,11.25,TCD,1178.0,Salamat,114.0,Chad,102140.0,Haraze-Mangueigne,both,identical +145844,21.75,11.25,TCD,1178.0,Salamat,114.0,Chad,102140.0,Haraze-Mangueigne,21.75,11.25,TCD,1178.0,Salamat,114.0,Chad,102140.0,Haraze-Mangueigne,both,identical +145845,22.25,11.25,TCD,1178.0,Salamat,114.0,Chad,102140.0,Haraze-Mangueigne,22.25,11.25,TCD,1178.0,Salamat,114.0,Chad,102140.0,Haraze-Mangueigne,both,identical +145846,22.75,11.25,TCD,1179.0,Sila,114.0,Chad,102142.0,Kimiti,22.75,11.25,TCD,1179.0,Sila,114.0,Chad,102142.0,Kimiti,both,identical +145847,23.25,11.25,SDN,1629.0,Central Darfur,161.0,Sudan,105759.0,Um Dukhun,23.25,11.25,SDN,1629.0,Central Darfur,161.0,Sudan,105759.0,Um Dukhun,both,identical +145848,23.75,11.25,SDN,1640.0,South Darfur,161.0,Sudan,105874.0,Rehaid Albirdi,23.75,11.25,SDN,1640.0,South Darfur,161.0,Sudan,105874.0,Rehaid Albirdi,both,identical +145849,24.25,11.25,SDN,1640.0,South Darfur,161.0,Sudan,105868.0,Kateila,24.25,11.25,SDN,1640.0,South Darfur,161.0,Sudan,105868.0,Kateila,both,identical +145850,24.75,11.25,SDN,1640.0,South Darfur,161.0,Sudan,105860.0,As Salam - Sd,24.75,11.25,SDN,1640.0,South Darfur,161.0,Sudan,105860.0,As Salam - Sd,both,identical +145851,25.25,11.25,SDN,1640.0,South Darfur,161.0,Sudan,105866.0,Gereida,25.25,11.25,SDN,1640.0,South Darfur,161.0,Sudan,105866.0,Gereida,both,identical +145852,25.75,11.25,SDN,1630.0,East Darfur,161.0,Sudan,105768.0,Assalaya,25.75,11.25,SDN,1630.0,East Darfur,161.0,Sudan,105768.0,Assalaya,both,identical +145853,26.25,11.25,SDN,1630.0,East Darfur,161.0,Sudan,105769.0,Bahr Al Arab,26.25,11.25,SDN,1630.0,East Darfur,161.0,Sudan,105769.0,Bahr Al Arab,both,identical +145854,26.75,11.25,SDN,1630.0,East Darfur,161.0,Sudan,105763.0,Abu Jabrah,26.75,11.25,SDN,1630.0,East Darfur,161.0,Sudan,105763.0,Abu Jabrah,both,identical +145855,27.25,11.25,SDN,1630.0,East Darfur,161.0,Sudan,105766.0,Adila,27.25,11.25,SDN,1630.0,East Darfur,161.0,Sudan,105766.0,Adila,both,identical +145856,27.75,11.25,SDN,1643.0,West Kordofan,161.0,Sudan,105914.0,Babanusa,27.75,11.25,SDN,1643.0,West Kordofan,161.0,Sudan,105914.0,Babanusa,both,identical +145857,28.25,11.25,SDN,1643.0,West Kordofan,161.0,Sudan,105912.0,As Salam - Wk,28.25,11.25,SDN,1643.0,West Kordofan,161.0,Sudan,105912.0,As Salam - Wk,both,identical +145858,28.75,11.25,SDN,1643.0,West Kordofan,161.0,Sudan,105909.0,Al Lagowa,28.75,11.25,SDN,1643.0,West Kordofan,161.0,Sudan,105909.0,Al Lagowa,both,identical +145859,29.25,11.25,SDN,1643.0,West Kordofan,161.0,Sudan,105909.0,Al Lagowa,29.25,11.25,SDN,1643.0,West Kordofan,161.0,Sudan,105909.0,Al Lagowa,both,identical +145860,29.75,11.25,SDN,1641.0,South Kordofan,161.0,Sudan,105886.0,Ar Reif Ash Shargi,29.75,11.25,SDN,1641.0,South Kordofan,161.0,Sudan,105886.0,Ar Reif Ash Shargi,both,identical +145861,30.25,11.25,SDN,1641.0,South Kordofan,161.0,Sudan,105892.0,Heiban,30.25,11.25,SDN,1641.0,South Kordofan,161.0,Sudan,105892.0,Heiban,both,identical +145862,30.75,11.25,SDN,1641.0,South Kordofan,161.0,Sudan,105892.0,Heiban,30.75,11.25,SDN,1641.0,South Kordofan,161.0,Sudan,105892.0,Heiban,both,identical +145863,31.25,11.25,SDN,1641.0,South Kordofan,161.0,Sudan,105880.0,Abu Jubayhah,31.25,11.25,SDN,1641.0,South Kordofan,161.0,Sudan,105880.0,Abu Jubayhah,both,identical +145864,31.75,11.25,SDN,1641.0,South Kordofan,161.0,Sudan,105880.0,Abu Jubayhah,31.75,11.25,SDN,1641.0,South Kordofan,161.0,Sudan,105880.0,Abu Jubayhah,both,identical +145865,32.25,11.25,SDN,1641.0,South Kordofan,161.0,Sudan,105880.0,Abu Jubayhah,32.25,11.25,SDN,1641.0,South Kordofan,161.0,Sudan,105880.0,Abu Jubayhah,both,identical +145866,32.75,11.25,SSD,1623.0,Upper Nile,160.0,South Sudan,105718.0,Renk,32.75,11.25,SSD,1623.0,Upper Nile,160.0,South Sudan,105718.0,Renk,both,identical +145867,33.25,11.25,SDN,1628.0,Blue Nile,161.0,Sudan,105749.0,At Tadamon - Bn,33.25,11.25,SDN,1628.0,Blue Nile,161.0,Sudan,105749.0,At Tadamon - Bn,both,identical +145868,33.75,11.25,SDN,1628.0,Blue Nile,161.0,Sudan,105750.0,Baw,33.75,11.25,SDN,1628.0,Blue Nile,161.0,Sudan,105750.0,Baw,both,identical +145869,34.25,11.25,SDN,1628.0,Blue Nile,161.0,Sudan,105750.0,Baw,34.25,11.25,SDN,1628.0,Blue Nile,161.0,Sudan,105750.0,Baw,both,identical +145870,34.75,11.25,SDN,1628.0,Blue Nile,161.0,Sudan,105752.0,Geisan,34.75,11.25,SDN,1628.0,Blue Nile,161.0,Sudan,105752.0,Geisan,both,identical +145871,35.25,11.25,ETH,1292.0,Benishangul Gumz,124.0,Ethiopia,103064.0,Metekel,35.25,11.25,ETH,1292.0,Benishangul Gumz,124.0,Ethiopia,103064.0,Metekel,both,identical +145872,35.75,11.25,ETH,1292.0,Benishangul Gumz,124.0,Ethiopia,103064.0,Metekel,35.75,11.25,ETH,1292.0,Benishangul Gumz,124.0,Ethiopia,103064.0,Metekel,both,identical +145873,36.25,11.25,ETH,1292.0,Benishangul Gumz,124.0,Ethiopia,103064.0,Metekel,36.25,11.25,ETH,1292.0,Benishangul Gumz,124.0,Ethiopia,103064.0,Metekel,both,identical +145874,36.75,11.25,ETH,1291.0,Amhara,124.0,Ethiopia,103049.0,Awi,36.75,11.25,ETH,1291.0,Amhara,124.0,Ethiopia,103049.0,Awi,both,identical +145875,37.25,11.25,ETH,1291.0,Amhara,124.0,Ethiopia,103059.0,West Gojam,37.25,11.25,ETH,1291.0,Amhara,124.0,Ethiopia,103059.0,West Gojam,both,identical +145876,37.75,11.25,ETH,1291.0,Amhara,124.0,Ethiopia,103059.0,West Gojam,37.75,11.25,ETH,1291.0,Amhara,124.0,Ethiopia,103059.0,West Gojam,both,identical +145877,38.25,11.25,ETH,1291.0,Amhara,124.0,Ethiopia,103056.0,South Gondar,38.25,11.25,ETH,1291.0,Amhara,124.0,Ethiopia,103056.0,South Gondar,both,identical +145878,38.75,11.25,ETH,1291.0,Amhara,124.0,Ethiopia,103057.0,South Wello,38.75,11.25,ETH,1291.0,Amhara,124.0,Ethiopia,103057.0,South Wello,both,identical +145879,39.25,11.25,ETH,1291.0,Amhara,124.0,Ethiopia,103057.0,South Wello,39.25,11.25,ETH,1291.0,Amhara,124.0,Ethiopia,103057.0,South Wello,both,identical +145880,39.75,11.25,ETH,1291.0,Amhara,124.0,Ethiopia,103057.0,South Wello,39.75,11.25,ETH,1291.0,Amhara,124.0,Ethiopia,103057.0,South Wello,both,identical +145881,40.25,11.25,ETH,1290.0,Afar,124.0,Ethiopia,103044.0,Awsi /Zone 1,40.25,11.25,ETH,1290.0,Afar,124.0,Ethiopia,103044.0,Awsi /Zone 1,both,identical +145882,40.75,11.25,ETH,1290.0,Afar,124.0,Ethiopia,103044.0,Awsi /Zone 1,40.75,11.25,ETH,1290.0,Afar,124.0,Ethiopia,103044.0,Awsi /Zone 1,both,identical +145883,41.25,11.25,ETH,1290.0,Afar,124.0,Ethiopia,103044.0,Awsi /Zone 1,41.25,11.25,ETH,1290.0,Afar,124.0,Ethiopia,103044.0,Awsi /Zone 1,both,identical +145884,41.75,11.25,ETH,1290.0,Afar,124.0,Ethiopia,103044.0,Awsi /Zone 1,41.75,11.25,ETH,1290.0,Afar,124.0,Ethiopia,103044.0,Awsi /Zone 1,both,identical +145885,42.25,11.25,DJI,1240.0,Dikhil,119.0,Djibouti,102515.0,Dikhil,42.25,11.25,DJI,1240.0,Dikhil,119.0,Djibouti,102515.0,Dikhil,both,identical +145886,42.75,11.25,DJI,1238.0,Ali Sabieh,119.0,Djibouti,102513.0,Arta,42.75,11.25,DJI,1239.0,Arta,119.0,Djibouti,102513.0,Arta,both,admin_reallocation +145887,43.25,11.25,-99,,,,,,,43.25,11.25,SOM,1589.0,Awdal,158.0,Somalia,105538.0,Zeylac,both,country_reassignment +145888,43.75,11.25,-99,,,,,,,43.75,11.25,SOM,1589.0,Awdal,158.0,Somalia,105538.0,Zeylac,both,country_reassignment +145895,47.25,11.25,-99,,,,,,,47.25,11.25,SOM,1603.0,Sanaag,158.0,Somalia,105596.0,Ceerigaabo,both,country_reassignment +145896,47.75,11.25,-99,,,,,,,47.75,11.25,SOM,1603.0,Sanaag,158.0,Somalia,105596.0,Ceerigaabo,both,country_reassignment +145897,48.25,11.25,-99,,,,,,,48.25,11.25,SOM,1603.0,Sanaag,158.0,Somalia,105597.0,Laasqoray,both,country_reassignment +145898,48.75,11.25,-99,,,,,,,48.75,11.25,SOM,1603.0,Sanaag,158.0,Somalia,105597.0,Laasqoray,both,country_reassignment +145899,49.25,11.25,SOM,1592.0,Bari,158.0,Somalia,105546.0,Bossaso,49.25,11.25,SOM,1592.0,Bari,158.0,Somalia,105546.0,Bossaso,both,identical +145900,49.75,11.25,SOM,1592.0,Bari,158.0,Somalia,105549.0,Qandala,49.75,11.25,SOM,1592.0,Bari,158.0,Somalia,105549.0,Qandala,both,identical +145901,50.25,11.25,SOM,1592.0,Bari,158.0,Somalia,105549.0,Qandala,50.25,11.25,SOM,1592.0,Bari,158.0,Somalia,105549.0,Qandala,both,identical +145902,50.75,11.25,SOM,1592.0,Bari,158.0,Somalia,105548.0,Iskushuban,50.75,11.25,SOM,1592.0,Bari,158.0,Somalia,105548.0,Iskushuban,both,identical +145903,51.25,11.25,SOM,1592.0,Bari,158.0,Somalia,105548.0,Iskushuban,51.25,11.25,SOM,1592.0,Bari,158.0,Somalia,105548.0,Iskushuban,both,identical +146488,-16.25,11.75,GNB,1343.0,Cacheu,132.0,Guinea-Bissau,103501.0,Caió,-16.25,11.75,GNB,1343.0,Cacheu,132.0,Guinea-Bissau,103501.0,Caió,both,identical +146489,-15.75,11.75,GNB,1341.0,Biombo,132.0,Guinea-Bissau,103492.0,Quinhamel,-15.75,11.75,GNB,1341.0,Biombo,132.0,Guinea-Bissau,103492.0,Quinhamel,both,identical +146490,-15.25,11.75,GNB,1346.0,Quinara,132.0,Guinea-Bissau,103516.0,Fulacunda,-15.25,11.75,GNB,1346.0,Quinara,132.0,Guinea-Bissau,103516.0,Fulacunda,both,identical +146491,-14.75,11.75,GNB,1340.0,Bafatá,132.0,Guinea-Bissau,103490.0,Xitole,-14.75,11.75,GNB,1340.0,Bafatá,132.0,Guinea-Bissau,103490.0,Xitole,both,identical +146492,-14.25,11.75,GNB,1344.0,Gabú,132.0,Guinea-Bissau,103504.0,Boé,-14.25,11.75,GNB,1344.0,Gabú,132.0,Guinea-Bissau,103504.0,Boé,both,identical +146493,-13.75,11.75,GIN,1332.0,Boke,131.0,Guinea,103454.0,Gaoual,-13.75,11.75,GIN,1332.0,Boke,131.0,Guinea,103454.0,Gaoual,both,identical +146494,-13.25,11.75,GIN,1332.0,Boke,131.0,Guinea,103454.0,Gaoual,-13.25,11.75,GIN,1332.0,Boke,131.0,Guinea,103454.0,Gaoual,both,identical +146495,-12.75,11.75,GIN,1337.0,Labe,131.0,Guinea,103454.0,Gaoual,-12.75,11.75,GIN,1332.0,Boke,131.0,Guinea,103454.0,Gaoual,both,admin_reallocation +146496,-12.25,11.75,GIN,1337.0,Labe,131.0,Guinea,103474.0,Mali,-12.25,11.75,GIN,1337.0,Labe,131.0,Guinea,103474.0,Mali,both,identical +146497,-11.75,11.75,GIN,1337.0,Labe,131.0,Guinea,103471.0,Koubia,-11.75,11.75,GIN,1337.0,Labe,131.0,Guinea,103471.0,Koubia,both,identical +146498,-11.25,11.75,GIN,1337.0,Labe,131.0,Guinea,103475.0,Tougue,-11.25,11.75,GIN,1337.0,Labe,131.0,Guinea,103475.0,Tougue,both,identical +146499,-10.75,11.75,GIN,1334.0,Faranah,131.0,Guinea,103458.0,Dinguiraye,-10.75,11.75,GIN,1334.0,Faranah,131.0,Guinea,103458.0,Dinguiraye,both,identical +146500,-10.25,11.75,GIN,1334.0,Faranah,131.0,Guinea,103458.0,Dinguiraye,-10.25,11.75,GIN,1334.0,Faranah,131.0,Guinea,103458.0,Dinguiraye,both,identical +146501,-9.75,11.75,GIN,1335.0,Kankan,131.0,Guinea,103465.0,Siguiri,-9.75,11.75,GIN,1335.0,Kankan,131.0,Guinea,103465.0,Siguiri,both,identical +146502,-9.25,11.75,GIN,1335.0,Kankan,131.0,Guinea,103465.0,Siguiri,-9.25,11.75,GIN,1335.0,Kankan,131.0,Guinea,103465.0,Siguiri,both,identical +146503,-8.75,11.75,MLI,1441.0,Koulikoro,143.0,Mali,104128.0,Kangaba,-8.75,11.75,MLI,1441.0,Koulikoro,143.0,Mali,104128.0,Kangaba,both,identical +146504,-8.25,11.75,MLI,1441.0,Koulikoro,143.0,Mali,104128.0,Kangaba,-8.25,11.75,MLI,1441.0,Koulikoro,143.0,Mali,104128.0,Kangaba,both,identical +146505,-7.75,11.75,MLI,1443.0,Sikasso,143.0,Mali,104141.0,Bougouni,-7.75,11.75,MLI,1443.0,Sikasso,143.0,Mali,104141.0,Bougouni,both,identical +146506,-7.25,11.75,MLI,1443.0,Sikasso,143.0,Mali,104141.0,Bougouni,-7.25,11.75,MLI,1443.0,Sikasso,143.0,Mali,104141.0,Bougouni,both,identical +146507,-6.75,11.75,MLI,1443.0,Sikasso,143.0,Mali,104141.0,Bougouni,-6.75,11.75,MLI,1443.0,Sikasso,143.0,Mali,104141.0,Bougouni,both,identical +146508,-6.25,11.75,MLI,1443.0,Sikasso,143.0,Mali,104145.0,Sikasso,-6.25,11.75,MLI,1443.0,Sikasso,143.0,Mali,104145.0,Sikasso,both,identical +146509,-5.75,11.75,MLI,1443.0,Sikasso,143.0,Mali,104145.0,Sikasso,-5.75,11.75,MLI,1443.0,Sikasso,143.0,Mali,104145.0,Sikasso,both,identical +146510,-5.25,11.75,BFA,1109.0,Hauts-Bassins,108.0,Burkina Faso,101848.0,Kénédougou,-5.25,11.75,BFA,1109.0,Hauts-Bassins,108.0,Burkina Faso,101848.0,Kénédougou,both,identical +146511,-4.75,11.75,BFA,1109.0,Hauts-Bassins,108.0,Burkina Faso,101848.0,Kénédougou,-4.75,11.75,BFA,1109.0,Hauts-Bassins,108.0,Burkina Faso,101848.0,Kénédougou,both,identical +146512,-4.25,11.75,BFA,1109.0,Hauts-Bassins,108.0,Burkina Faso,101847.0,Houet,-4.25,11.75,BFA,1109.0,Hauts-Bassins,108.0,Burkina Faso,101847.0,Houet,both,identical +146513,-3.75,11.75,BFA,1109.0,Hauts-Bassins,108.0,Burkina Faso,101849.0,Tuy,-3.75,11.75,BFA,1109.0,Hauts-Bassins,108.0,Burkina Faso,101849.0,Tuy,both,identical +146514,-3.25,11.75,BFA,1101.0,Boucle Du Mouhoun,108.0,Burkina Faso,101820.0,Balé,-3.25,11.75,BFA,1101.0,Boucle Du Mouhoun,108.0,Burkina Faso,101820.0,Balé,both,identical +146515,-2.75,11.75,BFA,1106.0,Centre-Ouest,108.0,Burkina Faso,101836.0,Sanguié,-2.75,11.75,BFA,1106.0,Centre-Ouest,108.0,Burkina Faso,101836.0,Sanguié,both,identical +146516,-2.25,11.75,BFA,1106.0,Centre-Ouest,108.0,Burkina Faso,101838.0,Ziro,-2.25,11.75,BFA,1106.0,Centre-Ouest,108.0,Burkina Faso,101838.0,Ziro,both,identical +146517,-1.75,11.75,BFA,1106.0,Centre-Ouest,108.0,Burkina Faso,101838.0,Ziro,-1.75,11.75,BFA,1106.0,Centre-Ouest,108.0,Burkina Faso,101838.0,Ziro,both,identical +146518,-1.25,11.75,BFA,1107.0,Centre-Sud,108.0,Burkina Faso,101841.0,Zoundwéogo,-1.25,11.75,BFA,1107.0,Centre-Sud,108.0,Burkina Faso,101841.0,Zoundwéogo,both,identical +146519,-0.75,11.75,BFA,1104.0,Centre-Est,108.0,Burkina Faso,101829.0,Boulgou,-0.75,11.75,BFA,1104.0,Centre-Est,108.0,Burkina Faso,101829.0,Boulgou,both,identical +146520,-0.25,11.75,BFA,1104.0,Centre-Est,108.0,Burkina Faso,101829.0,Boulgou,-0.25,11.75,BFA,1104.0,Centre-Est,108.0,Burkina Faso,101829.0,Boulgou,both,identical +146521,0.25,11.75,BFA,1108.0,Est,108.0,Burkina Faso,101843.0,Gourma,0.25,11.75,BFA,1108.0,Est,108.0,Burkina Faso,101843.0,Gourma,both,identical +146522,0.75,11.75,BFA,1108.0,Est,108.0,Burkina Faso,101845.0,Kompienga,0.75,11.75,BFA,1108.0,Est,108.0,Burkina Faso,101845.0,Kompienga,both,identical +146523,1.25,11.75,BFA,1108.0,Est,108.0,Burkina Faso,101846.0,Tapoa,1.25,11.75,BFA,1108.0,Est,108.0,Burkina Faso,101846.0,Tapoa,both,identical +146524,1.75,11.75,BFA,1108.0,Est,108.0,Burkina Faso,101846.0,Tapoa,1.75,11.75,BFA,1108.0,Est,108.0,Burkina Faso,101846.0,Tapoa,both,identical +146525,2.25,11.75,BFA,1108.0,Est,108.0,Burkina Faso,101846.0,Tapoa,2.25,11.75,BFA,1108.0,Est,108.0,Burkina Faso,101846.0,Tapoa,both,identical +146526,2.75,11.75,BEN,1071.0,Alibori,105.0,Benin,101717.0,Karimama,2.75,11.75,BEN,1071.0,Alibori,105.0,Benin,101717.0,Karimama,both,identical +146527,3.25,11.75,BEN,1071.0,Alibori,105.0,Benin,101718.0,Malanville,3.25,11.75,BEN,1071.0,Alibori,105.0,Benin,101718.0,Malanville,both,identical +146528,3.75,11.75,NGA,1538.0,Kebbi,151.0,Nigeria,105085.0,Dandi,3.75,11.75,NGA,1538.0,Kebbi,151.0,Nigeria,105085.0,Dandi,both,identical +146529,4.25,11.75,NGA,1538.0,Kebbi,151.0,Nigeria,105095.0,Suru,4.25,11.75,NGA,1538.0,Kebbi,151.0,Nigeria,105095.0,Suru,both,identical +146530,4.75,11.75,NGA,1550.0,Sokoto,151.0,Nigeria,105344.0,Kebbe,4.75,11.75,NGA,1550.0,Sokoto,151.0,Nigeria,105344.0,Kebbe,both,identical +146531,5.25,11.75,NGA,1553.0,Zamfara,151.0,Nigeria,105396.0,Gummi,5.25,11.75,NGA,1553.0,Zamfara,151.0,Nigeria,105396.0,Gummi,both,identical +146532,5.75,11.75,NGA,1553.0,Zamfara,151.0,Nigeria,105394.0,Bukkuyum,5.75,11.75,NGA,1553.0,Zamfara,151.0,Nigeria,105394.0,Bukkuyum,both,identical +146533,6.25,11.75,NGA,1553.0,Zamfara,151.0,Nigeria,105400.0,Maru,6.25,11.75,NGA,1553.0,Zamfara,151.0,Nigeria,105400.0,Maru,both,identical +146534,6.75,11.75,NGA,1553.0,Zamfara,151.0,Nigeria,105397.0,Gusau,6.75,11.75,NGA,1553.0,Zamfara,151.0,Nigeria,105397.0,Gusau,both,identical +146535,7.25,11.75,NGA,1537.0,Katsina,151.0,Nigeria,105056.0,Faskari,7.25,11.75,NGA,1537.0,Katsina,151.0,Nigeria,105056.0,Faskari,both,identical +146536,7.75,11.75,NGA,1537.0,Katsina,151.0,Nigeria,105060.0,Kafur,7.75,11.75,NGA,1537.0,Katsina,151.0,Nigeria,105060.0,Kafur,both,identical +146537,8.25,11.75,NGA,1536.0,Kano,151.0,Nigeria,105023.0,Kiru,8.25,11.75,NGA,1536.0,Kano,151.0,Nigeria,105023.0,Kiru,both,identical +146538,8.75,11.75,NGA,1536.0,Kano,151.0,Nigeria,105005.0,Bunkure,8.75,11.75,NGA,1536.0,Kano,151.0,Nigeria,105005.0,Bunkure,both,identical +146539,9.25,11.75,NGA,1534.0,Jigawa,151.0,Nigeria,104955.0,Dutse,9.25,11.75,NGA,1534.0,Jigawa,151.0,Nigeria,104955.0,Dutse,both,identical +146540,9.75,11.75,NGA,1534.0,Jigawa,151.0,Nigeria,104968.0,Kiyawa,9.75,11.75,NGA,1534.0,Jigawa,151.0,Nigeria,104968.0,Kiyawa,both,identical +146541,10.25,11.75,NGA,1521.0,Bauchi,151.0,Nigeria,104732.0,Katagum,10.25,11.75,NGA,1521.0,Bauchi,151.0,Nigeria,104732.0,Katagum,both,identical +146542,10.75,11.75,NGA,1521.0,Bauchi,151.0,Nigeria,104727.0,Gamawa,10.75,11.75,NGA,1521.0,Bauchi,151.0,Nigeria,104727.0,Gamawa,both,identical +146543,11.25,11.75,NGA,1552.0,Yobe,151.0,Nigeria,105378.0,Fune,11.25,11.75,NGA,1552.0,Yobe,151.0,Nigeria,105378.0,Fune,both,identical +146544,11.75,11.75,NGA,1552.0,Yobe,151.0,Nigeria,105378.0,Fune,11.75,11.75,NGA,1552.0,Yobe,151.0,Nigeria,105378.0,Fune,both,identical +146545,12.25,11.75,NGA,1524.0,Borno,151.0,Nigeria,104785.0,Kaga,12.25,11.75,NGA,1524.0,Borno,151.0,Nigeria,104785.0,Kaga,both,identical +146546,12.75,11.75,NGA,1524.0,Borno,151.0,Nigeria,104787.0,Konduga,12.75,11.75,NGA,1524.0,Borno,151.0,Nigeria,104787.0,Konduga,both,identical +146547,13.25,11.75,NGA,1524.0,Borno,151.0,Nigeria,104787.0,Konduga,13.25,11.75,NGA,1524.0,Borno,151.0,Nigeria,104787.0,Konduga,both,identical +146548,13.75,11.75,NGA,1524.0,Borno,151.0,Nigeria,104774.0,Bama,13.75,11.75,NGA,1524.0,Borno,151.0,Nigeria,104774.0,Bama,both,identical +146549,14.25,11.75,NGA,1524.0,Borno,151.0,Nigeria,104774.0,Bama,14.25,11.75,NGA,1524.0,Borno,151.0,Nigeria,104774.0,Bama,both,identical +146550,14.75,11.75,CMR,1145.0,Extrême-Nord,112.0,Cameroon,102027.0,Logone-Et-Chari,14.75,11.75,CMR,1145.0,Extrême-Nord,112.0,Cameroon,102027.0,Logone-Et-Chari,both,identical +146551,15.25,11.75,TCD,1162.0,Chari-Baguirmi,114.0,Chad,102091.0,Chari,15.25,11.75,TCD,1162.0,Chari-Baguirmi,114.0,Chad,102091.0,Chari,both,identical +146552,15.75,11.75,TCD,1162.0,Chari-Baguirmi,114.0,Chad,102090.0,Baguirmi,15.75,11.75,TCD,1162.0,Chari-Baguirmi,114.0,Chad,102090.0,Baguirmi,both,identical +146553,16.25,11.75,TCD,1162.0,Chari-Baguirmi,114.0,Chad,102090.0,Baguirmi,16.25,11.75,TCD,1162.0,Chari-Baguirmi,114.0,Chad,102090.0,Baguirmi,both,identical +146554,16.75,11.75,TCD,1162.0,Chari-Baguirmi,114.0,Chad,102090.0,Baguirmi,16.75,11.75,TCD,1162.0,Chari-Baguirmi,114.0,Chad,102090.0,Baguirmi,both,identical +146555,17.25,11.75,TCD,1166.0,Hadjer Lamis,114.0,Chad,102101.0,Dababa,17.25,11.75,TCD,1166.0,Hadjer Lamis,114.0,Chad,102101.0,Dababa,both,identical +146556,17.75,11.75,TCD,1165.0,Guéra,114.0,Chad,102097.0,Abtouyour,17.75,11.75,TCD,1165.0,Guéra,114.0,Chad,102097.0,Abtouyour,both,identical +146557,18.25,11.75,TCD,1165.0,Guéra,114.0,Chad,102097.0,Abtouyour,18.25,11.75,TCD,1165.0,Guéra,114.0,Chad,102097.0,Abtouyour,both,identical +146558,18.75,11.75,TCD,1165.0,Guéra,114.0,Chad,102099.0,Guéra,18.75,11.75,TCD,1165.0,Guéra,114.0,Chad,102099.0,Guéra,both,identical +146559,19.25,11.75,TCD,1178.0,Salamat,114.0,Chad,102138.0,Aboudéia,19.25,11.75,TCD,1178.0,Salamat,114.0,Chad,102138.0,Aboudéia,both,identical +146560,19.75,11.75,TCD,1178.0,Salamat,114.0,Chad,102138.0,Aboudéia,19.75,11.75,TCD,1178.0,Salamat,114.0,Chad,102138.0,Aboudéia,both,identical +146561,20.25,11.75,TCD,1178.0,Salamat,114.0,Chad,102139.0,Bahr-Azoum,20.25,11.75,TCD,1178.0,Salamat,114.0,Chad,102139.0,Bahr-Azoum,both,identical +146562,20.75,11.75,TCD,1178.0,Salamat,114.0,Chad,102139.0,Bahr-Azoum,20.75,11.75,TCD,1178.0,Salamat,114.0,Chad,102139.0,Bahr-Azoum,both,identical +146563,21.25,11.75,TCD,1179.0,Sila,114.0,Chad,102142.0,Kimiti,21.25,11.75,TCD,1179.0,Sila,114.0,Chad,102142.0,Kimiti,both,identical +146564,21.75,11.75,TCD,1179.0,Sila,114.0,Chad,102142.0,Kimiti,21.75,11.75,TCD,1179.0,Sila,114.0,Chad,102142.0,Kimiti,both,identical +146565,22.25,11.75,TCD,1179.0,Sila,114.0,Chad,102142.0,Kimiti,22.25,11.75,TCD,1179.0,Sila,114.0,Chad,102142.0,Kimiti,both,identical +146566,22.75,11.75,SDN,1629.0,Central Darfur,161.0,Sudan,105755.0,Bendasi,22.75,11.75,SDN,1629.0,Central Darfur,161.0,Sudan,105755.0,Bendasi,both,identical +146567,23.25,11.75,SDN,1629.0,Central Darfur,161.0,Sudan,105757.0,Mukjar,23.25,11.75,SDN,1629.0,Central Darfur,161.0,Sudan,105757.0,Mukjar,both,identical +146568,23.75,11.75,SDN,1640.0,South Darfur,161.0,Sudan,105869.0,Kubum,23.75,11.75,SDN,1640.0,South Darfur,161.0,Sudan,105869.0,Kubum,both,identical +146569,24.25,11.75,SDN,1640.0,South Darfur,161.0,Sudan,105865.0,Ed Al Fursan,24.25,11.75,SDN,1640.0,South Darfur,161.0,Sudan,105865.0,Ed Al Fursan,both,identical +146570,24.75,11.75,SDN,1640.0,South Darfur,161.0,Sudan,105860.0,As Salam - Sd,24.75,11.75,SDN,1640.0,South Darfur,161.0,Sudan,105860.0,As Salam - Sd,both,identical +146571,25.25,11.75,SDN,1640.0,South Darfur,161.0,Sudan,105771.0,Yassin,25.25,11.75,SDN,1630.0,East Darfur,161.0,Sudan,105771.0,Yassin,both,admin_reallocation +146572,25.75,11.75,SDN,1630.0,East Darfur,161.0,Sudan,105771.0,Yassin,25.75,11.75,SDN,1630.0,East Darfur,161.0,Sudan,105771.0,Yassin,both,identical +146573,26.25,11.75,SDN,1630.0,East Darfur,161.0,Sudan,105768.0,Assalaya,26.25,11.75,SDN,1630.0,East Darfur,161.0,Sudan,105768.0,Assalaya,both,identical +146574,26.75,11.75,SDN,1630.0,East Darfur,161.0,Sudan,105804.0,Al Lait,26.75,11.75,SDN,1634.0,North Darfur,161.0,Sudan,105804.0,Al Lait,both,admin_reallocation +146575,27.25,11.75,SDN,1643.0,West Kordofan,161.0,Sudan,105907.0,Al Idia,27.25,11.75,SDN,1643.0,West Kordofan,161.0,Sudan,105907.0,Al Idia,both,identical +146576,27.75,11.75,SDN,1643.0,West Kordofan,161.0,Sudan,105907.0,Al Idia,27.75,11.75,SDN,1643.0,West Kordofan,161.0,Sudan,105907.0,Al Idia,both,identical +146577,28.25,11.75,SDN,1643.0,West Kordofan,161.0,Sudan,105912.0,As Salam - Wk,28.25,11.75,SDN,1643.0,West Kordofan,161.0,Sudan,105912.0,As Salam - Wk,both,identical +146578,28.75,11.75,SDN,1643.0,West Kordofan,161.0,Sudan,105913.0,As Sunut,28.75,11.75,SDN,1643.0,West Kordofan,161.0,Sudan,105913.0,As Sunut,both,identical +146579,29.25,11.75,SDN,1643.0,West Kordofan,161.0,Sudan,105889.0,Dilling,29.25,11.75,SDN,1641.0,South Kordofan,161.0,Sudan,105889.0,Dilling,both,admin_reallocation +146580,29.75,11.75,SDN,1641.0,South Kordofan,161.0,Sudan,105891.0,Habila - Sk,29.75,11.75,SDN,1641.0,South Kordofan,161.0,Sudan,105891.0,Habila - Sk,both,identical +146581,30.25,11.75,SDN,1641.0,South Kordofan,161.0,Sudan,105888.0,Delami,30.25,11.75,SDN,1641.0,South Kordofan,161.0,Sudan,105888.0,Delami,both,identical +146582,30.75,11.75,SDN,1641.0,South Kordofan,161.0,Sudan,105881.0,Abu Kershola,30.75,11.75,SDN,1641.0,South Kordofan,161.0,Sudan,105881.0,Abu Kershola,both,identical +146583,31.25,11.75,SDN,1641.0,South Kordofan,161.0,Sudan,105885.0,Ar Rashad,31.25,11.75,SDN,1641.0,South Kordofan,161.0,Sudan,105885.0,Ar Rashad,both,identical +146584,31.75,11.75,SDN,1641.0,South Kordofan,161.0,Sudan,105880.0,Abu Jubayhah,31.75,11.75,SDN,1641.0,South Kordofan,161.0,Sudan,105880.0,Abu Jubayhah,both,identical +146585,32.25,11.75,SDN,1641.0,South Kordofan,161.0,Sudan,105880.0,Abu Jubayhah,32.25,11.75,SDN,1641.0,South Kordofan,161.0,Sudan,105880.0,Abu Jubayhah,both,identical +146586,32.75,11.75,SSD,1623.0,Upper Nile,160.0,South Sudan,105718.0,Renk,32.75,11.75,SSD,1623.0,Upper Nile,160.0,South Sudan,105718.0,Renk,both,identical +146587,33.25,11.75,SDN,1628.0,Blue Nile,161.0,Sudan,105749.0,At Tadamon - Bn,33.25,11.75,SDN,1628.0,Blue Nile,161.0,Sudan,105749.0,At Tadamon - Bn,both,identical +146588,33.75,11.75,SDN,1628.0,Blue Nile,161.0,Sudan,105749.0,At Tadamon - Bn,33.75,11.75,SDN,1628.0,Blue Nile,161.0,Sudan,105749.0,At Tadamon - Bn,both,identical +146589,34.25,11.75,SDN,1628.0,Blue Nile,161.0,Sudan,105749.0,At Tadamon - Bn,34.25,11.75,SDN,1628.0,Blue Nile,161.0,Sudan,105749.0,At Tadamon - Bn,both,identical +146590,34.75,11.75,SDN,1628.0,Blue Nile,161.0,Sudan,105753.0,Wad Al Mahi,34.75,11.75,SDN,1628.0,Blue Nile,161.0,Sudan,105753.0,Wad Al Mahi,both,identical +146591,35.25,11.75,ETH,1292.0,Benishangul Gumz,124.0,Ethiopia,103064.0,Metekel,35.25,11.75,ETH,1292.0,Benishangul Gumz,124.0,Ethiopia,103064.0,Metekel,both,identical +146592,35.75,11.75,ETH,1292.0,Benishangul Gumz,124.0,Ethiopia,103064.0,Metekel,35.75,11.75,ETH,1292.0,Benishangul Gumz,124.0,Ethiopia,103064.0,Metekel,both,identical +146593,36.25,11.75,ETH,1291.0,Amhara,124.0,Ethiopia,103049.0,Awi,36.25,11.75,ETH,1291.0,Amhara,124.0,Ethiopia,103049.0,Awi,both,identical +146594,36.75,11.75,ETH,1291.0,Amhara,124.0,Ethiopia,103050.0,Central Gondar,36.75,11.75,ETH,1291.0,Amhara,124.0,Ethiopia,103050.0,Central Gondar,both,identical +146595,37.25,11.75,ETH,1291.0,Amhara,124.0,Ethiopia,103059.0,West Gojam,37.25,11.75,ETH,1291.0,Amhara,124.0,Ethiopia,103059.0,West Gojam,both,identical +146596,37.75,11.75,ETH,1291.0,Amhara,124.0,Ethiopia,103056.0,South Gondar,37.75,11.75,ETH,1291.0,Amhara,124.0,Ethiopia,103056.0,South Gondar,both,identical +146597,38.25,11.75,ETH,1291.0,Amhara,124.0,Ethiopia,103056.0,South Gondar,38.25,11.75,ETH,1291.0,Amhara,124.0,Ethiopia,103056.0,South Gondar,both,identical +146598,38.75,11.75,ETH,1291.0,Amhara,124.0,Ethiopia,103054.0,North Wello,38.75,11.75,ETH,1291.0,Amhara,124.0,Ethiopia,103054.0,North Wello,both,identical +146599,39.25,11.75,ETH,1291.0,Amhara,124.0,Ethiopia,103054.0,North Wello,39.25,11.75,ETH,1291.0,Amhara,124.0,Ethiopia,103054.0,North Wello,both,identical +146600,39.75,11.75,ETH,1291.0,Amhara,124.0,Ethiopia,103054.0,North Wello,39.75,11.75,ETH,1291.0,Amhara,124.0,Ethiopia,103054.0,North Wello,both,identical +146601,40.25,11.75,ETH,1290.0,Afar,124.0,Ethiopia,103045.0,Fanti /Zone 4,40.25,11.75,ETH,1290.0,Afar,124.0,Ethiopia,103045.0,Fanti /Zone 4,both,identical +146602,40.75,11.75,ETH,1290.0,Afar,124.0,Ethiopia,103044.0,Awsi /Zone 1,40.75,11.75,ETH,1290.0,Afar,124.0,Ethiopia,103044.0,Awsi /Zone 1,both,identical +146603,41.25,11.75,ETH,1290.0,Afar,124.0,Ethiopia,103044.0,Awsi /Zone 1,41.25,11.75,ETH,1290.0,Afar,124.0,Ethiopia,103044.0,Awsi /Zone 1,both,identical +146604,41.75,11.75,ETH,1290.0,Afar,124.0,Ethiopia,103044.0,Awsi /Zone 1,41.75,11.75,ETH,1290.0,Afar,124.0,Ethiopia,103044.0,Awsi /Zone 1,both,identical +146605,42.25,11.75,DJI,1243.0,Tadjoura,119.0,Djibouti,102517.0,Yuboki,42.25,11.75,DJI,1240.0,Dikhil,119.0,Djibouti,102517.0,Yuboki,both,admin_reallocation +146606,42.75,11.75,DJI,1243.0,Tadjoura,119.0,Djibouti,102529.0,Tadjoura,42.75,11.75,DJI,1243.0,Tadjoura,119.0,Djibouti,102529.0,Tadjoura,both,identical +146607,43.25,11.75,DJI,1242.0,Obock,119.0,Djibouti,102523.0,Obock,43.25,11.75,DJI,1242.0,Obock,119.0,Djibouti,102523.0,Obock,both,identical +146621,50.25,11.75,SOM,1592.0,Bari,158.0,Somalia,105547.0,Caluula,50.25,11.75,SOM,1592.0,Bari,158.0,Somalia,105547.0,Caluula,both,identical +146622,50.75,11.75,SOM,1592.0,Bari,158.0,Somalia,105547.0,Caluula,50.75,11.75,SOM,1592.0,Bari,158.0,Somalia,105547.0,Caluula,both,identical +146623,51.25,11.75,SOM,1592.0,Bari,158.0,Somalia,105547.0,Caluula,51.25,11.75,SOM,1592.0,Bari,158.0,Somalia,105547.0,Caluula,both,identical +147207,-16.75,12.25,SEN,1579.0,Ziguinchor,155.0,Senegal,105510.0,Oussouye,-16.75,12.25,SEN,1579.0,Ziguinchor,155.0,Senegal,105510.0,Oussouye,both,identical +147208,-16.25,12.25,GNB,1343.0,Cacheu,132.0,Guinea-Bissau,103503.0,São Domingos,-16.25,12.25,GNB,1343.0,Cacheu,132.0,Guinea-Bissau,103503.0,São Domingos,both,identical +147209,-15.75,12.25,GNB,1343.0,Cacheu,132.0,Guinea-Bissau,103498.0,Bigene,-15.75,12.25,GNB,1343.0,Cacheu,132.0,Guinea-Bissau,103498.0,Bigene,both,identical +147210,-15.25,12.25,GNB,1345.0,Oio,132.0,Guinea-Bissau,103511.0,Mansaba,-15.25,12.25,GNB,1345.0,Oio,132.0,Guinea-Bissau,103511.0,Mansaba,both,identical +147211,-14.75,12.25,GNB,1340.0,Bafatá,132.0,Guinea-Bissau,103489.0,Gamamudo/Ganadu,-14.75,12.25,GNB,1340.0,Bafatá,132.0,Guinea-Bissau,103489.0,Gamamudo/Ganadu,both,identical +147212,-14.25,12.25,GNB,1344.0,Gabú,132.0,Guinea-Bissau,103505.0,Gabú,-14.25,12.25,GNB,1344.0,Gabú,132.0,Guinea-Bissau,103505.0,Gabú,both,identical +147213,-13.75,12.25,GIN,1332.0,Boke,131.0,Guinea,103454.0,Gaoual,-13.75,12.25,GIN,1332.0,Boke,131.0,Guinea,103454.0,Gaoual,both,identical +147214,-13.25,12.25,GIN,1332.0,Boke,131.0,Guinea,103455.0,Koundara,-13.25,12.25,GIN,1332.0,Boke,131.0,Guinea,103455.0,Koundara,both,identical +147215,-12.75,12.25,GIN,1332.0,Boke,131.0,Guinea,103455.0,Koundara,-12.75,12.25,GIN,1332.0,Boke,131.0,Guinea,103455.0,Koundara,both,identical +147216,-12.25,12.25,GIN,1337.0,Labe,131.0,Guinea,103474.0,Mali,-12.25,12.25,GIN,1337.0,Labe,131.0,Guinea,103474.0,Mali,both,identical +147217,-11.75,12.25,GIN,1337.0,Labe,131.0,Guinea,103474.0,Mali,-11.75,12.25,GIN,1337.0,Labe,131.0,Guinea,103474.0,Mali,both,identical +147218,-11.25,12.25,MLI,1439.0,Kayes,143.0,Mali,104119.0,Kéniéba,-11.25,12.25,MLI,1439.0,Kayes,143.0,Mali,104119.0,Kéniéba,both,identical +147219,-10.75,12.25,MLI,1439.0,Kayes,143.0,Mali,104119.0,Kéniéba,-10.75,12.25,MLI,1439.0,Kayes,143.0,Mali,104119.0,Kéniéba,both,identical +147220,-10.25,12.25,MLI,1439.0,Kayes,143.0,Mali,104118.0,Kita,-10.25,12.25,MLI,1439.0,Kayes,143.0,Mali,104118.0,Kita,both,identical +147221,-9.75,12.25,MLI,1439.0,Kayes,143.0,Mali,104118.0,Kita,-9.75,12.25,MLI,1439.0,Kayes,143.0,Mali,104118.0,Kita,both,identical +147222,-9.25,12.25,GIN,1335.0,Kankan,131.0,Guinea,103465.0,Siguiri,-9.25,12.25,GIN,1335.0,Kankan,131.0,Guinea,103465.0,Siguiri,both,identical +147223,-8.75,12.25,MLI,1441.0,Koulikoro,143.0,Mali,104128.0,Kangaba,-8.75,12.25,MLI,1441.0,Koulikoro,143.0,Mali,104128.0,Kangaba,both,identical +147224,-8.25,12.25,MLI,1441.0,Koulikoro,143.0,Mali,104129.0,Kati,-8.25,12.25,MLI,1441.0,Koulikoro,143.0,Mali,104129.0,Kati,both,identical +147225,-7.75,12.25,MLI,1441.0,Koulikoro,143.0,Mali,104129.0,Kati,-7.75,12.25,MLI,1441.0,Koulikoro,143.0,Mali,104129.0,Kati,both,identical +147226,-7.25,12.25,MLI,1441.0,Koulikoro,143.0,Mali,104141.0,Bougouni,-7.25,12.25,MLI,1443.0,Sikasso,143.0,Mali,104141.0,Bougouni,both,admin_reallocation +147227,-6.75,12.25,MLI,1441.0,Koulikoro,143.0,Mali,104127.0,Dioïla,-6.75,12.25,MLI,1441.0,Koulikoro,143.0,Mali,104127.0,Dioïla,both,identical +147228,-6.25,12.25,MLI,1441.0,Koulikoro,143.0,Mali,104127.0,Dioïla,-6.25,12.25,MLI,1441.0,Koulikoro,143.0,Mali,104127.0,Dioïla,both,identical +147229,-5.75,12.25,MLI,1443.0,Sikasso,143.0,Mali,104144.0,Koutiala,-5.75,12.25,MLI,1443.0,Sikasso,143.0,Mali,104144.0,Koutiala,both,identical +147230,-5.25,12.25,MLI,1443.0,Sikasso,143.0,Mali,104144.0,Koutiala,-5.25,12.25,MLI,1443.0,Sikasso,143.0,Mali,104144.0,Koutiala,both,identical +147231,-4.75,12.25,MLI,1443.0,Sikasso,143.0,Mali,104147.0,Yorosso,-4.75,12.25,MLI,1443.0,Sikasso,143.0,Mali,104147.0,Yorosso,both,identical +147232,-4.25,12.25,BFA,1101.0,Boucle Du Mouhoun,108.0,Burkina Faso,101821.0,Banwa,-4.25,12.25,BFA,1101.0,Boucle Du Mouhoun,108.0,Burkina Faso,101821.0,Banwa,both,identical +147233,-3.75,12.25,BFA,1101.0,Boucle Du Mouhoun,108.0,Burkina Faso,101823.0,Mouhoun,-3.75,12.25,BFA,1101.0,Boucle Du Mouhoun,108.0,Burkina Faso,101823.0,Mouhoun,both,identical +147234,-3.25,12.25,BFA,1101.0,Boucle Du Mouhoun,108.0,Burkina Faso,101823.0,Mouhoun,-3.25,12.25,BFA,1101.0,Boucle Du Mouhoun,108.0,Burkina Faso,101823.0,Mouhoun,both,identical +147235,-2.75,12.25,BFA,1106.0,Centre-Ouest,108.0,Burkina Faso,101836.0,Sanguié,-2.75,12.25,BFA,1106.0,Centre-Ouest,108.0,Burkina Faso,101836.0,Sanguié,both,identical +147236,-2.25,12.25,BFA,1106.0,Centre-Ouest,108.0,Burkina Faso,101835.0,Boulkiemdé,-2.25,12.25,BFA,1106.0,Centre-Ouest,108.0,Burkina Faso,101835.0,Boulkiemdé,both,identical +147237,-1.75,12.25,BFA,1103.0,Centre,108.0,Burkina Faso,101828.0,Kadiogo,-1.75,12.25,BFA,1103.0,Centre,108.0,Burkina Faso,101828.0,Kadiogo,both,identical +147238,-1.25,12.25,BFA,1103.0,Centre,108.0,Burkina Faso,101828.0,Kadiogo,-1.25,12.25,BFA,1103.0,Centre,108.0,Burkina Faso,101828.0,Kadiogo,both,identical +147239,-0.75,12.25,BFA,1111.0,Plateau-Central,108.0,Burkina Faso,101854.0,Ganzourgou,-0.75,12.25,BFA,1111.0,Plateau-Central,108.0,Burkina Faso,101854.0,Ganzourgou,both,identical +147240,-0.25,12.25,BFA,1104.0,Centre-Est,108.0,Burkina Faso,101831.0,Kourittenga,-0.25,12.25,BFA,1104.0,Centre-Est,108.0,Burkina Faso,101831.0,Kourittenga,both,identical +147241,0.25,12.25,BFA,1108.0,Est,108.0,Burkina Faso,101843.0,Gourma,0.25,12.25,BFA,1108.0,Est,108.0,Burkina Faso,101843.0,Gourma,both,identical +147242,0.75,12.25,BFA,1108.0,Est,108.0,Burkina Faso,101843.0,Gourma,0.75,12.25,BFA,1108.0,Est,108.0,Burkina Faso,101843.0,Gourma,both,identical +147243,1.25,12.25,BFA,1108.0,Est,108.0,Burkina Faso,101846.0,Tapoa,1.25,12.25,BFA,1108.0,Est,108.0,Burkina Faso,101846.0,Tapoa,both,identical +147244,1.75,12.25,BFA,1108.0,Est,108.0,Burkina Faso,101846.0,Tapoa,1.75,12.25,BFA,1108.0,Est,108.0,Burkina Faso,101846.0,Tapoa,both,identical +147245,2.25,12.25,NER,1515.0,Tillabéri,150.0,Niger,104617.0,Say,2.25,12.25,NER,1515.0,Tillabéri,150.0,Niger,104617.0,Say,both,identical +147246,2.75,12.25,BEN,1071.0,Alibori,105.0,Benin,101717.0,Karimama,2.75,12.25,BEN,1071.0,Alibori,105.0,Benin,101717.0,Karimama,both,identical +147247,3.25,12.25,NER,1512.0,Dosso,150.0,Niger,104583.0,Dosso,3.25,12.25,NER,1512.0,Dosso,150.0,Niger,104583.0,Dosso,both,identical +147248,3.75,12.25,NGA,1538.0,Kebbi,151.0,Nigeria,105079.0,Arewa-Dandi,3.75,12.25,NGA,1538.0,Kebbi,151.0,Nigeria,105079.0,Arewa-Dandi,both,identical +147249,4.25,12.25,NGA,1538.0,Kebbi,151.0,Nigeria,105089.0,Kalgo,4.25,12.25,NGA,1538.0,Kebbi,151.0,Nigeria,105089.0,Kalgo,both,identical +147250,4.75,12.25,NGA,1550.0,Sokoto,151.0,Nigeria,105352.0,Tambuwal,4.75,12.25,NGA,1550.0,Sokoto,151.0,Nigeria,105352.0,Tambuwal,both,identical +147251,5.25,12.25,NGA,1553.0,Zamfara,151.0,Nigeria,105396.0,Gummi,5.25,12.25,NGA,1553.0,Zamfara,151.0,Nigeria,105396.0,Gummi,both,identical +147252,5.75,12.25,NGA,1553.0,Zamfara,151.0,Nigeria,105394.0,Bukkuyum,5.75,12.25,NGA,1553.0,Zamfara,151.0,Nigeria,105394.0,Bukkuyum,both,identical +147253,6.25,12.25,NGA,1553.0,Zamfara,151.0,Nigeria,105400.0,Maru,6.25,12.25,NGA,1553.0,Zamfara,151.0,Nigeria,105400.0,Maru,both,identical +147254,6.75,12.25,NGA,1553.0,Zamfara,151.0,Nigeria,105395.0,Bungudu,6.75,12.25,NGA,1553.0,Zamfara,151.0,Nigeria,105395.0,Bungudu,both,identical +147255,7.25,12.25,NGA,1537.0,Katsina,151.0,Nigeria,105076.0,Sandamu,7.25,12.25,NGA,1537.0,Katsina,151.0,Nigeria,105076.0,Sandamu,both,identical +147256,7.75,12.25,NGA,1537.0,Katsina,151.0,Nigeria,105072.0,Musawa,7.75,12.25,NGA,1537.0,Katsina,151.0,Nigeria,105072.0,Musawa,both,identical +147257,8.25,12.25,NGA,1536.0,Kano,151.0,Nigeria,105004.0,Bichi,8.25,12.25,NGA,1536.0,Kano,151.0,Nigeria,105004.0,Bichi,both,identical +147258,8.75,12.25,NGA,1536.0,Kano,151.0,Nigeria,105012.0,Gabasawa,8.75,12.25,NGA,1536.0,Kano,151.0,Nigeria,105012.0,Gabasawa,both,identical +147259,9.25,12.25,NGA,1534.0,Jigawa,151.0,Nigeria,104972.0,Ringim,9.25,12.25,NGA,1534.0,Jigawa,151.0,Nigeria,104972.0,Ringim,both,identical +147260,9.75,12.25,NGA,1534.0,Jigawa,151.0,Nigeria,104963.0,Jahun,9.75,12.25,NGA,1534.0,Jigawa,151.0,Nigeria,104963.0,Jahun,both,identical +147261,10.25,12.25,NGA,1521.0,Bauchi,151.0,Nigeria,104740.0,Zaki,10.25,12.25,NGA,1521.0,Bauchi,151.0,Nigeria,104740.0,Zaki,both,identical +147262,10.75,12.25,NGA,1552.0,Yobe,151.0,Nigeria,105382.0,Jakusko,10.75,12.25,NGA,1552.0,Yobe,151.0,Nigeria,105382.0,Jakusko,both,identical +147263,11.25,12.25,NGA,1552.0,Yobe,151.0,Nigeria,105378.0,Fune,11.25,12.25,NGA,1552.0,Yobe,151.0,Nigeria,105378.0,Fune,both,identical +147264,11.75,12.25,NGA,1552.0,Yobe,151.0,Nigeria,105388.0,Tarmuwa,11.75,12.25,NGA,1552.0,Yobe,151.0,Nigeria,105388.0,Tarmuwa,both,identical +147265,12.25,12.25,NGA,1552.0,Yobe,151.0,Nigeria,105388.0,Tarmuwa,12.25,12.25,NGA,1552.0,Yobe,151.0,Nigeria,105388.0,Tarmuwa,both,identical +147266,12.75,12.25,NGA,1524.0,Borno,151.0,Nigeria,104791.0,Magumeri,12.75,12.25,NGA,1524.0,Borno,151.0,Nigeria,104791.0,Magumeri,both,identical +147267,13.25,12.25,NGA,1524.0,Borno,151.0,Nigeria,104797.0,Nganzai,13.25,12.25,NGA,1524.0,Borno,151.0,Nigeria,104797.0,Nganzai,both,identical +147268,13.75,12.25,NGA,1524.0,Borno,151.0,Nigeria,104793.0,Marte,13.75,12.25,NGA,1524.0,Borno,151.0,Nigeria,104793.0,Marte,both,identical +147269,14.25,12.25,NGA,1524.0,Borno,151.0,Nigeria,104796.0,Ngala,14.25,12.25,NGA,1524.0,Borno,151.0,Nigeria,104796.0,Ngala,both,identical +147270,14.75,12.25,CMR,1145.0,Extrême-Nord,112.0,Cameroon,102027.0,Logone-Et-Chari,14.75,12.25,CMR,1145.0,Extrême-Nord,112.0,Cameroon,102027.0,Logone-Et-Chari,both,identical +147271,15.25,12.25,TCD,1166.0,Hadjer Lamis,114.0,Chad,102102.0,Haraze-Al-Biar,15.25,12.25,TCD,1166.0,Hadjer Lamis,114.0,Chad,102102.0,Haraze-Al-Biar,both,identical +147272,15.75,12.25,TCD,1162.0,Chari-Baguirmi,114.0,Chad,102090.0,Baguirmi,15.75,12.25,TCD,1162.0,Chari-Baguirmi,114.0,Chad,102090.0,Baguirmi,both,identical +147273,16.25,12.25,TCD,1162.0,Chari-Baguirmi,114.0,Chad,102090.0,Baguirmi,16.25,12.25,TCD,1162.0,Chari-Baguirmi,114.0,Chad,102090.0,Baguirmi,both,identical +147274,16.75,12.25,TCD,1166.0,Hadjer Lamis,114.0,Chad,102101.0,Dababa,16.75,12.25,TCD,1166.0,Hadjer Lamis,114.0,Chad,102101.0,Dababa,both,identical +147275,17.25,12.25,TCD,1166.0,Hadjer Lamis,114.0,Chad,102101.0,Dababa,17.25,12.25,TCD,1166.0,Hadjer Lamis,114.0,Chad,102101.0,Dababa,both,identical +147276,17.75,12.25,TCD,1165.0,Guéra,114.0,Chad,102097.0,Abtouyour,17.75,12.25,TCD,1165.0,Guéra,114.0,Chad,102097.0,Abtouyour,both,identical +147277,18.25,12.25,TCD,1165.0,Guéra,114.0,Chad,102097.0,Abtouyour,18.25,12.25,TCD,1165.0,Guéra,114.0,Chad,102097.0,Abtouyour,both,identical +147278,18.75,12.25,TCD,1165.0,Guéra,114.0,Chad,102099.0,Guéra,18.75,12.25,TCD,1165.0,Guéra,114.0,Chad,102099.0,Guéra,both,identical +147279,19.25,12.25,TCD,1165.0,Guéra,114.0,Chad,102100.0,Mangalmé,19.25,12.25,TCD,1165.0,Guéra,114.0,Chad,102100.0,Mangalmé,both,identical +147280,19.75,12.25,TCD,1165.0,Guéra,114.0,Chad,102100.0,Mangalmé,19.75,12.25,TCD,1165.0,Guéra,114.0,Chad,102100.0,Mangalmé,both,identical +147281,20.25,12.25,TCD,1179.0,Sila,114.0,Chad,102141.0,Djourf Al Ahmar,20.25,12.25,TCD,1179.0,Sila,114.0,Chad,102141.0,Djourf Al Ahmar,both,identical +147282,20.75,12.25,TCD,1179.0,Sila,114.0,Chad,102141.0,Djourf Al Ahmar,20.75,12.25,TCD,1179.0,Sila,114.0,Chad,102141.0,Djourf Al Ahmar,both,identical +147283,21.25,12.25,TCD,1179.0,Sila,114.0,Chad,102141.0,Djourf Al Ahmar,21.25,12.25,TCD,1179.0,Sila,114.0,Chad,102141.0,Djourf Al Ahmar,both,identical +147284,21.75,12.25,TCD,1179.0,Sila,114.0,Chad,102142.0,Kimiti,21.75,12.25,TCD,1179.0,Sila,114.0,Chad,102142.0,Kimiti,both,identical +147285,22.25,12.25,TCD,1179.0,Sila,114.0,Chad,102142.0,Kimiti,22.25,12.25,TCD,1179.0,Sila,114.0,Chad,102142.0,Kimiti,both,identical +147286,22.75,12.25,SDN,1629.0,Central Darfur,161.0,Sudan,105755.0,Bendasi,22.75,12.25,SDN,1629.0,Central Darfur,161.0,Sudan,105755.0,Bendasi,both,identical +147287,23.25,12.25,SDN,1629.0,Central Darfur,161.0,Sudan,105760.0,Wadi Salih,23.25,12.25,SDN,1629.0,Central Darfur,161.0,Sudan,105760.0,Wadi Salih,both,identical +147288,23.75,12.25,SDN,1640.0,South Darfur,161.0,Sudan,105876.0,Shattaya,23.75,12.25,SDN,1640.0,South Darfur,161.0,Sudan,105876.0,Shattaya,both,identical +147289,24.25,12.25,SDN,1640.0,South Darfur,161.0,Sudan,105867.0,Kas,24.25,12.25,SDN,1640.0,South Darfur,161.0,Sudan,105867.0,Kas,both,identical +147290,24.75,12.25,SDN,1640.0,South Darfur,161.0,Sudan,105873.0,Nyala Shimal,24.75,12.25,SDN,1640.0,South Darfur,161.0,Sudan,105873.0,Nyala Shimal,both,identical +147291,25.25,12.25,SDN,1640.0,South Darfur,161.0,Sudan,105871.0,Nitega,25.25,12.25,SDN,1640.0,South Darfur,161.0,Sudan,105871.0,Nitega,both,identical +147292,25.75,12.25,SDN,1630.0,East Darfur,161.0,Sudan,105770.0,Shia'Ria,25.75,12.25,SDN,1630.0,East Darfur,161.0,Sudan,105770.0,Shia'Ria,both,identical +147293,26.25,12.25,SDN,1634.0,North Darfur,161.0,Sudan,105807.0,At Tawisha,26.25,12.25,SDN,1634.0,North Darfur,161.0,Sudan,105807.0,At Tawisha,both,identical +147294,26.75,12.25,SDN,1634.0,North Darfur,161.0,Sudan,105807.0,At Tawisha,26.75,12.25,SDN,1634.0,North Darfur,161.0,Sudan,105807.0,At Tawisha,both,identical +147295,27.25,12.25,SDN,1643.0,West Kordofan,161.0,Sudan,105915.0,Ghubaish,27.25,12.25,SDN,1643.0,West Kordofan,161.0,Sudan,105915.0,Ghubaish,both,identical +147296,27.75,12.25,SDN,1643.0,West Kordofan,161.0,Sudan,105915.0,Ghubaish,27.75,12.25,SDN,1643.0,West Kordofan,161.0,Sudan,105915.0,Ghubaish,both,identical +147297,28.25,12.25,SDN,1643.0,West Kordofan,161.0,Sudan,105907.0,Al Idia,28.25,12.25,SDN,1643.0,West Kordofan,161.0,Sudan,105907.0,Al Idia,both,identical +147298,28.75,12.25,SDN,1643.0,West Kordofan,161.0,Sudan,105913.0,As Sunut,28.75,12.25,SDN,1643.0,West Kordofan,161.0,Sudan,105913.0,As Sunut,both,identical +147299,29.25,12.25,SDN,1643.0,West Kordofan,161.0,Sudan,105913.0,As Sunut,29.25,12.25,SDN,1643.0,West Kordofan,161.0,Sudan,105913.0,As Sunut,both,identical +147300,29.75,12.25,SDN,1641.0,South Kordofan,161.0,Sudan,105889.0,Dilling,29.75,12.25,SDN,1641.0,South Kordofan,161.0,Sudan,105889.0,Dilling,both,identical +147301,30.25,12.25,SDN,1641.0,South Kordofan,161.0,Sudan,105891.0,Habila - Sk,30.25,12.25,SDN,1641.0,South Kordofan,161.0,Sudan,105891.0,Habila - Sk,both,identical +147302,30.75,12.25,SDN,1641.0,South Kordofan,161.0,Sudan,105881.0,Abu Kershola,30.75,12.25,SDN,1641.0,South Kordofan,161.0,Sudan,105881.0,Abu Kershola,both,identical +147303,31.25,12.25,SDN,1641.0,South Kordofan,161.0,Sudan,105879.0,Abassiya,31.25,12.25,SDN,1641.0,South Kordofan,161.0,Sudan,105879.0,Abassiya,both,identical +147304,31.75,12.25,SDN,1641.0,South Kordofan,161.0,Sudan,105887.0,At Tadamon - Sk,31.75,12.25,SDN,1641.0,South Kordofan,161.0,Sudan,105887.0,At Tadamon - Sk,both,identical +147305,32.25,12.25,SDN,1644.0,White Nile,161.0,Sudan,105921.0,As Salam / Ar Rawat,32.25,12.25,SDN,1644.0,White Nile,161.0,Sudan,105921.0,As Salam / Ar Rawat,both,identical +147306,32.75,12.25,SDN,1644.0,White Nile,161.0,Sudan,105921.0,As Salam / Ar Rawat,32.75,12.25,SDN,1644.0,White Nile,161.0,Sudan,105921.0,As Salam / Ar Rawat,both,identical +147307,33.25,12.25,SDN,1639.0,Sennar,161.0,Sudan,105852.0,Ad Dali,33.25,12.25,SDN,1639.0,Sennar,161.0,Sudan,105852.0,Ad Dali,both,identical +147308,33.75,12.25,SDN,1639.0,Sennar,161.0,Sudan,105852.0,Ad Dali,33.75,12.25,SDN,1639.0,Sennar,161.0,Sudan,105852.0,Ad Dali,both,identical +147309,34.25,12.25,SDN,1628.0,Blue Nile,161.0,Sudan,105751.0,Ed Damazine,34.25,12.25,SDN,1628.0,Blue Nile,161.0,Sudan,105751.0,Ed Damazine,both,identical +147310,34.75,12.25,SDN,1628.0,Blue Nile,161.0,Sudan,105748.0,Ar Rusayris,34.75,12.25,SDN,1628.0,Blue Nile,161.0,Sudan,105748.0,Ar Rusayris,both,identical +147311,35.25,12.25,SDN,1639.0,Sennar,161.0,Sudan,105853.0,Ad Dinder,35.25,12.25,SDN,1639.0,Sennar,161.0,Sudan,105853.0,Ad Dinder,both,identical +147312,35.75,12.25,ETH,1291.0,Amhara,124.0,Ethiopia,103060.0,West Gondar,35.75,12.25,ETH,1291.0,Amhara,124.0,Ethiopia,103060.0,West Gondar,both,identical +147313,36.25,12.25,ETH,1291.0,Amhara,124.0,Ethiopia,103060.0,West Gondar,36.25,12.25,ETH,1291.0,Amhara,124.0,Ethiopia,103060.0,West Gondar,both,identical +147314,36.75,12.25,ETH,1291.0,Amhara,124.0,Ethiopia,103050.0,Central Gondar,36.75,12.25,ETH,1291.0,Amhara,124.0,Ethiopia,103050.0,Central Gondar,both,identical +147315,37.25,12.25,ETH,1291.0,Amhara,124.0,Ethiopia,103050.0,Central Gondar,37.25,12.25,ETH,1291.0,Amhara,124.0,Ethiopia,103050.0,Central Gondar,both,identical +147316,37.75,12.25,ETH,1291.0,Amhara,124.0,Ethiopia,103050.0,Central Gondar,37.75,12.25,ETH,1291.0,Amhara,124.0,Ethiopia,103050.0,Central Gondar,both,identical +147317,38.25,12.25,ETH,1291.0,Amhara,124.0,Ethiopia,103056.0,South Gondar,38.25,12.25,ETH,1291.0,Amhara,124.0,Ethiopia,103056.0,South Gondar,both,identical +147318,38.75,12.25,ETH,1291.0,Amhara,124.0,Ethiopia,103054.0,North Wello,38.75,12.25,ETH,1291.0,Amhara,124.0,Ethiopia,103054.0,North Wello,both,identical +147319,39.25,12.25,ETH,1291.0,Amhara,124.0,Ethiopia,103054.0,North Wello,39.25,12.25,ETH,1291.0,Amhara,124.0,Ethiopia,103054.0,North Wello,both,identical +147320,39.75,12.25,ETH,1291.0,Amhara,124.0,Ethiopia,103054.0,North Wello,39.75,12.25,ETH,1291.0,Amhara,124.0,Ethiopia,103054.0,North Wello,both,identical +147321,40.25,12.25,ETH,1290.0,Afar,124.0,Ethiopia,103045.0,Fanti /Zone 4,40.25,12.25,ETH,1290.0,Afar,124.0,Ethiopia,103045.0,Fanti /Zone 4,both,identical +147322,40.75,12.25,ETH,1290.0,Afar,124.0,Ethiopia,103044.0,Awsi /Zone 1,40.75,12.25,ETH,1290.0,Afar,124.0,Ethiopia,103044.0,Awsi /Zone 1,both,identical +147323,41.25,12.25,ETH,1290.0,Afar,124.0,Ethiopia,103044.0,Awsi /Zone 1,41.25,12.25,ETH,1290.0,Afar,124.0,Ethiopia,103044.0,Awsi /Zone 1,both,identical +147324,41.75,12.25,ETH,1290.0,Afar,124.0,Ethiopia,103044.0,Awsi /Zone 1,41.75,12.25,ETH,1290.0,Afar,124.0,Ethiopia,103044.0,Awsi /Zone 1,both,identical +147325,42.25,12.25,DJI,1243.0,Tadjoura,119.0,Djibouti,102525.0,Dorra,42.25,12.25,ETH,1290.0,Afar,124.0,Ethiopia,103044.0,Awsi /Zone 1,both,country_reassignment +147326,42.75,12.25,DJI,1243.0,Tadjoura,119.0,Djibouti,102525.0,Dorra,42.75,12.25,DJI,1243.0,Tadjoura,119.0,Djibouti,102525.0,Dorra,both,identical +147327,43.25,12.25,DJI,1242.0,Obock,119.0,Djibouti,102521.0,Khôr 'Angar,43.25,12.25,DJI,1242.0,Obock,119.0,Djibouti,102521.0,Khôr 'Angar,both,identical +147345,52.25,12.25,YEM,3288.0,Socotra,282.0,Yemen,133943.0,Qulensya Wa Abd Al Kuri,52.25,12.25,YEM,3288.0,Socotra,282.0,Yemen,133943.0,Qulensya Wa Abd Al Kuri,both,identical +147347,53.25,12.25,YEM,3288.0,Socotra,282.0,Yemen,133943.0,Qulensya Wa Abd Al Kuri,53.25,12.25,YEM,3288.0,Socotra,282.0,Yemen,133943.0,Qulensya Wa Abd Al Kuri,both,identical +147348,53.75,12.25,YEM,3288.0,Socotra,282.0,Yemen,133942.0,Hidaybu,53.75,12.25,YEM,3288.0,Socotra,282.0,Yemen,133942.0,Hidaybu,both,identical +147349,54.25,12.25,YEM,3288.0,Socotra,282.0,Yemen,133942.0,Hidaybu,54.25,12.25,YEM,3288.0,Socotra,282.0,Yemen,133942.0,Hidaybu,both,identical +147927,-16.75,12.75,SEN,1579.0,Ziguinchor,155.0,Senegal,105509.0,Bignona,-16.75,12.75,SEN,1579.0,Ziguinchor,155.0,Senegal,105509.0,Bignona,both,identical +147928,-16.25,12.75,SEN,1579.0,Ziguinchor,155.0,Senegal,105509.0,Bignona,-16.25,12.75,SEN,1579.0,Ziguinchor,155.0,Senegal,105509.0,Bignona,both,identical +147929,-15.75,12.75,SEN,1576.0,Sédhiou,155.0,Senegal,105501.0,Sédhiou,-15.75,12.75,SEN,1576.0,Sédhiou,155.0,Senegal,105501.0,Sédhiou,both,identical +147930,-15.25,12.75,SEN,1576.0,Sédhiou,155.0,Senegal,105500.0,Goudomp,-15.25,12.75,SEN,1576.0,Sédhiou,155.0,Senegal,105500.0,Goudomp,both,identical +147931,-14.75,12.75,SEN,1570.0,Kolda,155.0,Senegal,105484.0,Kolda,-14.75,12.75,SEN,1570.0,Kolda,155.0,Senegal,105484.0,Kolda,both,identical +147932,-14.25,12.75,SEN,1570.0,Kolda,155.0,Senegal,105484.0,Kolda,-14.25,12.75,SEN,1570.0,Kolda,155.0,Senegal,105484.0,Kolda,both,identical +147933,-13.75,12.75,SEN,1570.0,Kolda,155.0,Senegal,105486.0,Vélingara,-13.75,12.75,SEN,1570.0,Kolda,155.0,Senegal,105486.0,Vélingara,both,identical +147934,-13.25,12.75,SEN,1577.0,Tambacounda,155.0,Senegal,105505.0,Tambacounda,-13.25,12.75,SEN,1577.0,Tambacounda,155.0,Senegal,105505.0,Tambacounda,both,identical +147935,-12.75,12.75,SEN,1571.0,Kédougou,155.0,Senegal,105487.0,Kédougou,-12.75,12.75,SEN,1571.0,Kédougou,155.0,Senegal,105487.0,Kédougou,both,identical +147936,-12.25,12.75,SEN,1571.0,Kédougou,155.0,Senegal,105487.0,Kédougou,-12.25,12.75,SEN,1571.0,Kédougou,155.0,Senegal,105487.0,Kédougou,both,identical +147937,-11.75,12.75,SEN,1571.0,Kédougou,155.0,Senegal,105489.0,Saraya,-11.75,12.75,SEN,1571.0,Kédougou,155.0,Senegal,105489.0,Saraya,both,identical +147938,-11.25,12.75,MLI,1439.0,Kayes,143.0,Mali,104119.0,Kéniéba,-11.25,12.75,MLI,1439.0,Kayes,143.0,Mali,104119.0,Kéniéba,both,identical +147939,-10.75,12.75,MLI,1439.0,Kayes,143.0,Mali,104119.0,Kéniéba,-10.75,12.75,MLI,1439.0,Kayes,143.0,Mali,104119.0,Kéniéba,both,identical +147940,-10.25,12.75,MLI,1439.0,Kayes,143.0,Mali,104118.0,Kita,-10.25,12.75,MLI,1439.0,Kayes,143.0,Mali,104118.0,Kita,both,identical +147941,-9.75,12.75,MLI,1439.0,Kayes,143.0,Mali,104118.0,Kita,-9.75,12.75,MLI,1439.0,Kayes,143.0,Mali,104118.0,Kita,both,identical +147942,-9.25,12.75,MLI,1439.0,Kayes,143.0,Mali,104118.0,Kita,-9.25,12.75,MLI,1439.0,Kayes,143.0,Mali,104118.0,Kita,both,identical +147943,-8.75,12.75,MLI,1439.0,Kayes,143.0,Mali,104118.0,Kita,-8.75,12.75,MLI,1439.0,Kayes,143.0,Mali,104118.0,Kita,both,identical +147944,-8.25,12.75,MLI,1441.0,Koulikoro,143.0,Mali,104129.0,Kati,-8.25,12.75,MLI,1441.0,Koulikoro,143.0,Mali,104129.0,Kati,both,identical +147945,-7.75,12.75,MLI,1441.0,Koulikoro,143.0,Mali,104129.0,Kati,-7.75,12.75,MLI,1441.0,Koulikoro,143.0,Mali,104129.0,Kati,both,identical +147946,-7.25,12.75,MLI,1441.0,Koulikoro,143.0,Mali,104127.0,Dioïla,-7.25,12.75,MLI,1441.0,Koulikoro,143.0,Mali,104127.0,Dioïla,both,identical +147947,-6.75,12.75,MLI,1441.0,Koulikoro,143.0,Mali,104127.0,Dioïla,-6.75,12.75,MLI,1441.0,Koulikoro,143.0,Mali,104127.0,Dioïla,both,identical +147948,-6.25,12.75,MLI,1444.0,Ségou,143.0,Mali,104149.0,Bla,-6.25,12.75,MLI,1444.0,Ségou,143.0,Mali,104149.0,Bla,both,identical +147949,-5.75,12.75,MLI,1443.0,Sikasso,143.0,Mali,104144.0,Koutiala,-5.75,12.75,MLI,1443.0,Sikasso,143.0,Mali,104144.0,Koutiala,both,identical +147950,-5.25,12.75,MLI,1444.0,Ségou,143.0,Mali,104144.0,Koutiala,-5.25,12.75,MLI,1443.0,Sikasso,143.0,Mali,104144.0,Koutiala,both,admin_reallocation +147951,-4.75,12.75,MLI,1444.0,Ségou,143.0,Mali,104147.0,Yorosso,-4.75,12.75,MLI,1443.0,Sikasso,143.0,Mali,104147.0,Yorosso,both,admin_reallocation +147952,-4.25,12.75,BFA,1101.0,Boucle Du Mouhoun,108.0,Burkina Faso,101822.0,Kossi,-4.25,12.75,BFA,1101.0,Boucle Du Mouhoun,108.0,Burkina Faso,101822.0,Kossi,both,identical +147953,-3.75,12.75,BFA,1101.0,Boucle Du Mouhoun,108.0,Burkina Faso,101822.0,Kossi,-3.75,12.75,BFA,1101.0,Boucle Du Mouhoun,108.0,Burkina Faso,101822.0,Kossi,both,identical +147954,-3.25,12.75,BFA,1101.0,Boucle Du Mouhoun,108.0,Burkina Faso,101824.0,Nayala,-3.25,12.75,BFA,1101.0,Boucle Du Mouhoun,108.0,Burkina Faso,101824.0,Nayala,both,identical +147955,-2.75,12.75,BFA,1101.0,Boucle Du Mouhoun,108.0,Burkina Faso,101824.0,Nayala,-2.75,12.75,BFA,1101.0,Boucle Du Mouhoun,108.0,Burkina Faso,101824.0,Nayala,both,identical +147956,-2.25,12.75,BFA,1110.0,Nord,108.0,Burkina Faso,101851.0,Passoré,-2.25,12.75,BFA,1110.0,Nord,108.0,Burkina Faso,101851.0,Passoré,both,identical +147957,-1.75,12.75,BFA,1111.0,Plateau-Central,108.0,Burkina Faso,101855.0,Kourwéogo,-1.75,12.75,BFA,1111.0,Plateau-Central,108.0,Burkina Faso,101855.0,Kourwéogo,both,identical +147958,-1.25,12.75,BFA,1111.0,Plateau-Central,108.0,Burkina Faso,101856.0,Oubritenga,-1.25,12.75,BFA,1111.0,Plateau-Central,108.0,Burkina Faso,101856.0,Oubritenga,both,identical +147959,-0.75,12.75,BFA,1105.0,Centre-Nord,108.0,Burkina Faso,101834.0,Sanmatenga,-0.75,12.75,BFA,1105.0,Centre-Nord,108.0,Burkina Faso,101834.0,Sanmatenga,both,identical +147960,-0.25,12.75,BFA,1108.0,Est,108.0,Burkina Faso,101842.0,Gnagna,-0.25,12.75,BFA,1108.0,Est,108.0,Burkina Faso,101842.0,Gnagna,both,identical +147961,0.25,12.75,BFA,1108.0,Est,108.0,Burkina Faso,101842.0,Gnagna,0.25,12.75,BFA,1108.0,Est,108.0,Burkina Faso,101842.0,Gnagna,both,identical +147962,0.75,12.75,BFA,1108.0,Est,108.0,Burkina Faso,101844.0,Komandjari,0.75,12.75,BFA,1108.0,Est,108.0,Burkina Faso,101844.0,Komandjari,both,identical +147963,1.25,12.75,BFA,1108.0,Est,108.0,Burkina Faso,101844.0,Komandjari,1.25,12.75,BFA,1108.0,Est,108.0,Burkina Faso,101844.0,Komandjari,both,identical +147964,1.75,12.75,NER,1515.0,Tillabéri,150.0,Niger,104619.0,Torodi,1.75,12.75,BFA,1108.0,Est,108.0,Burkina Faso,101846.0,Tapoa,both,country_reassignment +147965,2.25,12.75,NER,1515.0,Tillabéri,150.0,Niger,104617.0,Say,2.25,12.75,NER,1515.0,Tillabéri,150.0,Niger,104617.0,Say,both,identical +147966,2.75,12.75,NER,1512.0,Dosso,150.0,Niger,104584.0,Falmey,2.75,12.75,NER,1512.0,Dosso,150.0,Niger,104584.0,Falmey,both,identical +147967,3.25,12.75,NER,1512.0,Dosso,150.0,Niger,104583.0,Dosso,3.25,12.75,NER,1512.0,Dosso,150.0,Niger,104583.0,Dosso,both,identical +147968,3.75,12.75,NER,1512.0,Dosso,150.0,Niger,104581.0,Dioundiou,3.75,12.75,NER,1512.0,Dosso,150.0,Niger,104581.0,Dioundiou,both,identical +147969,4.25,12.75,NGA,1538.0,Kebbi,151.0,Nigeria,105079.0,Arewa-Dandi,4.25,12.75,NGA,1538.0,Kebbi,151.0,Nigeria,105079.0,Arewa-Dandi,both,identical +147970,4.75,12.75,NGA,1538.0,Kebbi,151.0,Nigeria,105081.0,Augie,4.75,12.75,NGA,1538.0,Kebbi,151.0,Nigeria,105081.0,Augie,both,identical +147971,5.25,12.75,NGA,1550.0,Sokoto,151.0,Nigeria,105337.0,Dange-Shuni,5.25,12.75,NGA,1550.0,Sokoto,151.0,Nigeria,105337.0,Dange-Shuni,both,identical +147972,5.75,12.75,NGA,1550.0,Sokoto,151.0,Nigeria,105346.0,Rabah,5.75,12.75,NGA,1550.0,Sokoto,151.0,Nigeria,105346.0,Rabah,both,identical +147973,6.25,12.75,NGA,1553.0,Zamfara,151.0,Nigeria,105399.0,Maradun,6.25,12.75,NGA,1553.0,Zamfara,151.0,Nigeria,105399.0,Maradun,both,identical +147974,6.75,12.75,NGA,1553.0,Zamfara,151.0,Nigeria,105404.0,Zurmi,6.75,12.75,NGA,1553.0,Zamfara,151.0,Nigeria,105404.0,Zurmi,both,identical +147975,7.25,12.75,NGA,1537.0,Katsina,151.0,Nigeria,105046.0,Batsari,7.25,12.75,NGA,1537.0,Katsina,151.0,Nigeria,105046.0,Batsari,both,identical +147976,7.75,12.75,NGA,1537.0,Katsina,151.0,Nigeria,105069.0,Mani,7.75,12.75,NGA,1537.0,Katsina,151.0,Nigeria,105069.0,Mani,both,identical +147977,8.25,12.75,NGA,1537.0,Katsina,151.0,Nigeria,105058.0,Ingawa,8.25,12.75,NGA,1537.0,Katsina,151.0,Nigeria,105058.0,Ingawa,both,identical +147978,8.75,12.75,NGA,1534.0,Jigawa,151.0,Nigeria,104951.0,Babura,8.75,12.75,NGA,1534.0,Jigawa,151.0,Nigeria,104951.0,Babura,both,identical +147979,9.25,12.75,NGA,1534.0,Jigawa,151.0,Nigeria,104974.0,Sule-Tankarkar,9.25,12.75,NGA,1534.0,Jigawa,151.0,Nigeria,104974.0,Sule-Tankarkar,both,identical +147980,9.75,12.75,NGA,1534.0,Jigawa,151.0,Nigeria,104969.0,Maigatari,9.75,12.75,NGA,1534.0,Jigawa,151.0,Nigeria,104969.0,Maigatari,both,identical +147981,10.25,12.75,NGA,1534.0,Jigawa,151.0,Nigeria,104952.0,Biriniwa,10.25,12.75,NGA,1534.0,Jigawa,151.0,Nigeria,104952.0,Biriniwa,both,identical +147982,10.75,12.75,NGA,1552.0,Yobe,151.0,Nigeria,105382.0,Jakusko,10.75,12.75,NGA,1552.0,Yobe,151.0,Nigeria,105382.0,Jakusko,both,identical +147983,11.25,12.75,NGA,1552.0,Yobe,151.0,Nigeria,105375.0,Bursari,11.25,12.75,NGA,1552.0,Yobe,151.0,Nigeria,105375.0,Bursari,both,identical +147984,11.75,12.75,NGA,1552.0,Yobe,151.0,Nigeria,105375.0,Bursari,11.75,12.75,NGA,1552.0,Yobe,151.0,Nigeria,105375.0,Bursari,both,identical +147985,12.25,12.75,NGA,1552.0,Yobe,151.0,Nigeria,105379.0,Geidam,12.25,12.75,NGA,1552.0,Yobe,151.0,Nigeria,105379.0,Geidam,both,identical +147986,12.75,12.75,NGA,1524.0,Borno,151.0,Nigeria,104780.0,Gubio,12.75,12.75,NGA,1524.0,Borno,151.0,Nigeria,104780.0,Gubio,both,identical +147987,13.25,12.75,NGA,1524.0,Borno,151.0,Nigeria,104781.0,Guzamala,13.25,12.75,NGA,1524.0,Borno,151.0,Nigeria,104781.0,Guzamala,both,identical +147988,13.75,12.75,NGA,1524.0,Borno,151.0,Nigeria,104788.0,Kukawa,13.75,12.75,NGA,1524.0,Borno,151.0,Nigeria,104788.0,Kukawa,both,identical +147989,14.25,12.75,CMR,1145.0,Extrême-Nord,112.0,Cameroon,102027.0,Logone-Et-Chari,14.25,12.75,CMR,1145.0,Extrême-Nord,112.0,Cameroon,102027.0,Logone-Et-Chari,both,identical +147990,14.75,12.75,TCD,1166.0,Hadjer Lamis,114.0,Chad,102102.0,Haraze-Al-Biar,14.75,12.75,TCD,1166.0,Hadjer Lamis,114.0,Chad,102102.0,Haraze-Al-Biar,both,identical +147991,15.25,12.75,TCD,1167.0,Hadjer-Lamis,114.0,Chad,102103.0,Dagana,15.25,12.75,TCD,1167.0,Hadjer-Lamis,114.0,Chad,102103.0,Dagana,both,identical +147992,15.75,12.75,TCD,1167.0,Hadjer-Lamis,114.0,Chad,102103.0,Dagana,15.75,12.75,TCD,1167.0,Hadjer-Lamis,114.0,Chad,102103.0,Dagana,both,identical +147993,16.25,12.75,TCD,1166.0,Hadjer Lamis,114.0,Chad,102101.0,Dababa,16.25,12.75,TCD,1166.0,Hadjer Lamis,114.0,Chad,102101.0,Dababa,both,identical +147994,16.75,12.75,TCD,1166.0,Hadjer Lamis,114.0,Chad,102101.0,Dababa,16.75,12.75,TCD,1166.0,Hadjer Lamis,114.0,Chad,102101.0,Dababa,both,identical +147995,17.25,12.75,TCD,1160.0,Batha,114.0,Chad,102087.0,Fitri,17.25,12.75,TCD,1160.0,Batha,114.0,Chad,102087.0,Fitri,both,identical +147996,17.75,12.75,TCD,1160.0,Batha,114.0,Chad,102087.0,Fitri,17.75,12.75,TCD,1160.0,Batha,114.0,Chad,102087.0,Fitri,both,identical +147997,18.25,12.75,TCD,1160.0,Batha,114.0,Chad,102086.0,Batha Ouest,18.25,12.75,TCD,1160.0,Batha,114.0,Chad,102086.0,Batha Ouest,both,identical +147998,18.75,12.75,TCD,1160.0,Batha,114.0,Chad,102086.0,Batha Ouest,18.75,12.75,TCD,1160.0,Batha,114.0,Chad,102086.0,Batha Ouest,both,identical +147999,19.25,12.75,TCD,1165.0,Guéra,114.0,Chad,102100.0,Mangalmé,19.25,12.75,TCD,1165.0,Guéra,114.0,Chad,102100.0,Mangalmé,both,identical +148000,19.75,12.75,TCD,1165.0,Guéra,114.0,Chad,102100.0,Mangalmé,19.75,12.75,TCD,1165.0,Guéra,114.0,Chad,102100.0,Mangalmé,both,identical +148001,20.25,12.75,TCD,1179.0,Sila,114.0,Chad,102141.0,Djourf Al Ahmar,20.25,12.75,TCD,1179.0,Sila,114.0,Chad,102141.0,Djourf Al Ahmar,both,identical +148002,20.75,12.75,TCD,1179.0,Sila,114.0,Chad,102141.0,Djourf Al Ahmar,20.75,12.75,TCD,1179.0,Sila,114.0,Chad,102141.0,Djourf Al Ahmar,both,identical +148003,21.25,12.75,TCD,1177.0,Ouaddaï,114.0,Chad,102135.0,Abdi,21.25,12.75,TCD,1177.0,Ouaddaï,114.0,Chad,102135.0,Abdi,both,identical +148004,21.75,12.75,TCD,1179.0,Sila,114.0,Chad,102142.0,Kimiti,21.75,12.75,TCD,1179.0,Sila,114.0,Chad,102142.0,Kimiti,both,identical +148005,22.25,12.75,SDN,1642.0,West Darfur,161.0,Sudan,105899.0,Habila - Wd,22.25,12.75,SDN,1642.0,West Darfur,161.0,Sudan,105899.0,Habila - Wd,both,identical +148006,22.75,12.75,SDN,1629.0,Central Darfur,161.0,Sudan,105754.0,Azum,22.75,12.75,SDN,1629.0,Central Darfur,161.0,Sudan,105754.0,Azum,both,identical +148007,23.25,12.75,SDN,1629.0,Central Darfur,161.0,Sudan,105754.0,Azum,23.25,12.75,SDN,1629.0,Central Darfur,161.0,Sudan,105754.0,Azum,both,identical +148008,23.75,12.75,SDN,1629.0,Central Darfur,161.0,Sudan,105762.0,Zalingi,23.75,12.75,SDN,1629.0,Central Darfur,161.0,Sudan,105762.0,Zalingi,both,identical +148009,24.25,12.75,SDN,1640.0,South Darfur,161.0,Sudan,105875.0,Sharg Aj Jabal,24.25,12.75,SDN,1640.0,South Darfur,161.0,Sudan,105875.0,Sharg Aj Jabal,both,identical +148010,24.75,12.75,SDN,1640.0,South Darfur,161.0,Sudan,105875.0,Sharg Aj Jabal,24.75,12.75,SDN,1640.0,South Darfur,161.0,Sudan,105875.0,Sharg Aj Jabal,both,identical +148011,25.25,12.75,SDN,1640.0,South Darfur,161.0,Sudan,105871.0,Nitega,25.25,12.75,SDN,1640.0,South Darfur,161.0,Sudan,105871.0,Nitega,both,identical +148012,25.75,12.75,SDN,1630.0,East Darfur,161.0,Sudan,105770.0,Shia'Ria,25.75,12.75,SDN,1630.0,East Darfur,161.0,Sudan,105770.0,Shia'Ria,both,identical +148013,26.25,12.75,SDN,1634.0,North Darfur,161.0,Sudan,105807.0,At Tawisha,26.25,12.75,SDN,1634.0,North Darfur,161.0,Sudan,105807.0,At Tawisha,both,identical +148014,26.75,12.75,SDN,1634.0,North Darfur,161.0,Sudan,105807.0,At Tawisha,26.75,12.75,SDN,1634.0,North Darfur,161.0,Sudan,105807.0,At Tawisha,both,identical +148015,27.25,12.75,SDN,1643.0,West Kordofan,161.0,Sudan,105917.0,Wad Bandah,27.25,12.75,SDN,1643.0,West Kordofan,161.0,Sudan,105917.0,Wad Bandah,both,identical +148016,27.75,12.75,SDN,1643.0,West Kordofan,161.0,Sudan,105917.0,Wad Bandah,27.75,12.75,SDN,1643.0,West Kordofan,161.0,Sudan,105917.0,Wad Bandah,both,identical +148017,28.25,12.75,SDN,1643.0,West Kordofan,161.0,Sudan,105911.0,An Nuhud,28.25,12.75,SDN,1643.0,West Kordofan,161.0,Sudan,105911.0,An Nuhud,both,identical +148018,28.75,12.75,SDN,1643.0,West Kordofan,161.0,Sudan,105911.0,An Nuhud,28.75,12.75,SDN,1643.0,West Kordofan,161.0,Sudan,105911.0,An Nuhud,both,identical +148019,29.25,12.75,SDN,1643.0,West Kordofan,161.0,Sudan,105904.0,Abu Zabad,29.25,12.75,SDN,1643.0,West Kordofan,161.0,Sudan,105904.0,Abu Zabad,both,identical +148020,29.75,12.75,SDN,1643.0,West Kordofan,161.0,Sudan,105904.0,Abu Zabad,29.75,12.75,SDN,1643.0,West Kordofan,161.0,Sudan,105904.0,Abu Zabad,both,identical +148021,30.25,12.75,SDN,1635.0,North Kordofan,161.0,Sudan,105823.0,Sheikan,30.25,12.75,SDN,1635.0,North Kordofan,161.0,Sudan,105823.0,Sheikan,both,identical +148022,30.75,12.75,SDN,1635.0,North Kordofan,161.0,Sudan,105819.0,Ar Rahad,30.75,12.75,SDN,1635.0,North Kordofan,161.0,Sudan,105819.0,Ar Rahad,both,identical +148023,31.25,12.75,SDN,1635.0,North Kordofan,161.0,Sudan,105826.0,Um Rawaba,31.25,12.75,SDN,1635.0,North Kordofan,161.0,Sudan,105826.0,Um Rawaba,both,identical +148024,31.75,12.75,SDN,1644.0,White Nile,161.0,Sudan,105925.0,Tendalti,31.75,12.75,SDN,1644.0,White Nile,161.0,Sudan,105925.0,Tendalti,both,identical +148025,32.25,12.75,SDN,1644.0,White Nile,161.0,Sudan,105921.0,As Salam / Ar Rawat,32.25,12.75,SDN,1644.0,White Nile,161.0,Sudan,105921.0,As Salam / Ar Rawat,both,identical +148026,32.75,12.75,SDN,1644.0,White Nile,161.0,Sudan,105919.0,Aj Jabalain,32.75,12.75,SDN,1644.0,White Nile,161.0,Sudan,105919.0,Aj Jabalain,both,identical +148027,33.25,12.75,SDN,1639.0,Sennar,161.0,Sudan,105852.0,Ad Dali,33.25,12.75,SDN,1639.0,Sennar,161.0,Sudan,105852.0,Ad Dali,both,identical +148028,33.75,12.75,SDN,1639.0,Sennar,161.0,Sudan,105851.0,Abu Hujar,33.75,12.75,SDN,1639.0,Sennar,161.0,Sudan,105851.0,Abu Hujar,both,identical +148029,34.25,12.75,SDN,1639.0,Sennar,161.0,Sudan,105854.0,As Suki,34.25,12.75,SDN,1639.0,Sennar,161.0,Sudan,105854.0,As Suki,both,identical +148030,34.75,12.75,SDN,1639.0,Sennar,161.0,Sudan,105853.0,Ad Dinder,34.75,12.75,SDN,1639.0,Sennar,161.0,Sudan,105853.0,Ad Dinder,both,identical +148031,35.25,12.75,SDN,1639.0,Sennar,161.0,Sudan,105853.0,Ad Dinder,35.25,12.75,SDN,1639.0,Sennar,161.0,Sudan,105853.0,Ad Dinder,both,identical +148032,35.75,12.75,SDN,1631.0,Gedaref,161.0,Sudan,105779.0,Basundah,35.75,12.75,SDN,1631.0,Gedaref,161.0,Sudan,105779.0,Basundah,both,identical +148033,36.25,12.75,ETH,1291.0,Amhara,124.0,Ethiopia,103060.0,West Gondar,36.25,12.75,ETH,1291.0,Amhara,124.0,Ethiopia,103060.0,West Gondar,both,identical +148034,36.75,12.75,ETH,1291.0,Amhara,124.0,Ethiopia,103060.0,West Gondar,36.75,12.75,ETH,1291.0,Amhara,124.0,Ethiopia,103060.0,West Gondar,both,identical +148035,37.25,12.75,ETH,1291.0,Amhara,124.0,Ethiopia,103050.0,Central Gondar,37.25,12.75,ETH,1291.0,Amhara,124.0,Ethiopia,103050.0,Central Gondar,both,identical +148036,37.75,12.75,ETH,1291.0,Amhara,124.0,Ethiopia,103050.0,Central Gondar,37.75,12.75,ETH,1291.0,Amhara,124.0,Ethiopia,103050.0,Central Gondar,both,identical +148037,38.25,12.75,ETH,1291.0,Amhara,124.0,Ethiopia,103050.0,Central Gondar,38.25,12.75,ETH,1291.0,Amhara,124.0,Ethiopia,103050.0,Central Gondar,both,identical +148038,38.75,12.75,ETH,1291.0,Amhara,124.0,Ethiopia,103058.0,Wag Hamra,38.75,12.75,ETH,1291.0,Amhara,124.0,Ethiopia,103058.0,Wag Hamra,both,identical +148039,39.25,12.75,ETH,1301.0,Tigray,124.0,Ethiopia,103133.0,Southern,39.25,12.75,ETH,1301.0,Tigray,124.0,Ethiopia,103133.0,Southern,both,identical +148040,39.75,12.75,ETH,1301.0,Tigray,124.0,Ethiopia,103133.0,Southern,39.75,12.75,ETH,1301.0,Tigray,124.0,Ethiopia,103133.0,Southern,both,identical +148041,40.25,12.75,ETH,1290.0,Afar,124.0,Ethiopia,103045.0,Fanti /Zone 4,40.25,12.75,ETH,1290.0,Afar,124.0,Ethiopia,103045.0,Fanti /Zone 4,both,identical +148042,40.75,12.75,ETH,1290.0,Afar,124.0,Ethiopia,103045.0,Fanti /Zone 4,40.75,12.75,ETH,1290.0,Afar,124.0,Ethiopia,103045.0,Fanti /Zone 4,both,identical +148043,41.25,12.75,ETH,1290.0,Afar,124.0,Ethiopia,103048.0,Kilbati /Zone2,41.25,12.75,ETH,1290.0,Afar,124.0,Ethiopia,103048.0,Kilbati /Zone2,both,identical +148044,41.75,12.75,ETH,1290.0,Afar,124.0,Ethiopia,103044.0,Awsi /Zone 1,41.75,12.75,ETH,1290.0,Afar,124.0,Ethiopia,103044.0,Awsi /Zone 1,both,identical +148045,42.25,12.75,ERI,1281.0,Debubawi Keih Bahri,122.0,Eritrea,102951.0,Debub Deb.Keih Bahri,42.25,12.75,ERI,1281.0,Debubawi Keih Bahri,122.0,Eritrea,102951.0,Debub Deb.Keih Bahri,both,identical +148046,42.75,12.75,ERI,1281.0,Debubawi Keih Bahri,122.0,Eritrea,102951.0,Debub Deb.Keih Bahri,42.75,12.75,ERI,1281.0,Debubawi Keih Bahri,122.0,Eritrea,102951.0,Debub Deb.Keih Bahri,both,identical +148047,43.25,12.75,DJI,1242.0,Obock,119.0,Djibouti,102522.0,Moulhoule,43.25,12.75,DJI,1242.0,Obock,119.0,Djibouti,102522.0,Moulhoule,both,identical +148048,43.75,12.75,YEM,3281.0,Lahj,282.0,Yemen,133851.0,Al Madaribah Wa Al Arah,43.75,12.75,YEM,3281.0,Lahj,282.0,Yemen,133851.0,Al Madaribah Wa Al Arah,both,identical +148049,44.25,12.75,YEM,3281.0,Lahj,282.0,Yemen,133851.0,Al Madaribah Wa Al Arah,44.25,12.75,YEM,3281.0,Lahj,282.0,Yemen,133851.0,Al Madaribah Wa Al Arah,both,identical +148050,44.75,12.75,YEM,3281.0,Lahj,282.0,Yemen,133654.0,Al Buraiqeh,44.75,12.75,YEM,3270.0,Aden,282.0,Yemen,133654.0,Al Buraiqeh,both,admin_reallocation +148051,45.25,12.75,YEM,3270.0,Aden,282.0,Yemen,133860.0,Tuban,45.25,12.75,YEM,3281.0,Lahj,282.0,Yemen,133860.0,Tuban,both,admin_reallocation +148067,53.25,12.75,YEM,3288.0,Socotra,282.0,Yemen,133943.0,Qulensya Wa Abd Al Kuri,53.25,12.75,YEM,3288.0,Socotra,282.0,Yemen,133943.0,Qulensya Wa Abd Al Kuri,both,identical +148068,53.75,12.75,YEM,3288.0,Socotra,282.0,Yemen,133943.0,Qulensya Wa Abd Al Kuri,53.75,12.75,YEM,3288.0,Socotra,282.0,Yemen,133943.0,Qulensya Wa Abd Al Kuri,both,identical +148069,54.25,12.75,YEM,3288.0,Socotra,282.0,Yemen,133942.0,Hidaybu,54.25,12.75,YEM,3288.0,Socotra,282.0,Yemen,133942.0,Hidaybu,both,identical +148647,-16.75,13.25,GMB,1320.0,West Coast,128.0,Gambia,103233.0,Kombo South,-16.75,13.25,SEN,1579.0,Ziguinchor,155.0,Senegal,105509.0,Bignona,both,country_reassignment +148648,-16.25,13.25,GMB,1320.0,West Coast,128.0,Gambia,103217.0,Upper Niumi,-16.25,13.25,SEN,1579.0,Ziguinchor,155.0,Senegal,105509.0,Bignona,both,country_reassignment +148649,-15.75,13.25,SEN,1576.0,Sédhiou,155.0,Senegal,105499.0,Bounkiling,-15.75,13.25,SEN,1576.0,Sédhiou,155.0,Senegal,105499.0,Bounkiling,both,identical +148650,-15.25,13.25,SEN,1570.0,Kolda,155.0,Senegal,105485.0,Médina Yoro Foula,-15.25,13.25,SEN,1570.0,Kolda,155.0,Senegal,105485.0,Médina Yoro Foula,both,identical +148651,-14.75,13.25,SEN,1570.0,Kolda,155.0,Senegal,105485.0,Médina Yoro Foula,-14.75,13.25,SEN,1570.0,Kolda,155.0,Senegal,105485.0,Médina Yoro Foula,both,identical +148652,-14.25,13.25,SEN,1570.0,Kolda,155.0,Senegal,105486.0,Vélingara,-14.25,13.25,SEN,1570.0,Kolda,155.0,Senegal,105486.0,Vélingara,both,identical +148653,-13.75,13.25,SEN,1570.0,Kolda,155.0,Senegal,105486.0,Vélingara,-13.75,13.25,SEN,1570.0,Kolda,155.0,Senegal,105486.0,Vélingara,both,identical +148654,-13.25,13.25,SEN,1577.0,Tambacounda,155.0,Senegal,105505.0,Tambacounda,-13.25,13.25,SEN,1577.0,Tambacounda,155.0,Senegal,105505.0,Tambacounda,both,identical +148655,-12.75,13.25,SEN,1577.0,Tambacounda,155.0,Senegal,105505.0,Tambacounda,-12.75,13.25,SEN,1577.0,Tambacounda,155.0,Senegal,105505.0,Tambacounda,both,identical +148656,-12.25,13.25,SEN,1571.0,Kédougou,155.0,Senegal,105489.0,Saraya,-12.25,13.25,SEN,1571.0,Kédougou,155.0,Senegal,105489.0,Saraya,both,identical +148657,-11.75,13.25,SEN,1571.0,Kédougou,155.0,Senegal,105489.0,Saraya,-11.75,13.25,SEN,1571.0,Kédougou,155.0,Senegal,105489.0,Saraya,both,identical +148658,-11.25,13.25,MLI,1439.0,Kayes,143.0,Mali,104119.0,Kéniéba,-11.25,13.25,MLI,1439.0,Kayes,143.0,Mali,104119.0,Kéniéba,both,identical +148659,-10.75,13.25,MLI,1439.0,Kayes,143.0,Mali,104115.0,Bafoulabé,-10.75,13.25,MLI,1439.0,Kayes,143.0,Mali,104115.0,Bafoulabé,both,identical +148660,-10.25,13.25,MLI,1439.0,Kayes,143.0,Mali,104115.0,Bafoulabé,-10.25,13.25,MLI,1439.0,Kayes,143.0,Mali,104115.0,Bafoulabé,both,identical +148661,-9.75,13.25,MLI,1439.0,Kayes,143.0,Mali,104118.0,Kita,-9.75,13.25,MLI,1439.0,Kayes,143.0,Mali,104118.0,Kita,both,identical +148662,-9.25,13.25,MLI,1439.0,Kayes,143.0,Mali,104118.0,Kita,-9.25,13.25,MLI,1439.0,Kayes,143.0,Mali,104118.0,Kita,both,identical +148663,-8.75,13.25,MLI,1439.0,Kayes,143.0,Mali,104118.0,Kita,-8.75,13.25,MLI,1439.0,Kayes,143.0,Mali,104118.0,Kita,both,identical +148664,-8.25,13.25,MLI,1441.0,Koulikoro,143.0,Mali,104129.0,Kati,-8.25,13.25,MLI,1441.0,Koulikoro,143.0,Mali,104129.0,Kati,both,identical +148665,-7.75,13.25,MLI,1441.0,Koulikoro,143.0,Mali,104130.0,Kolokani,-7.75,13.25,MLI,1441.0,Koulikoro,143.0,Mali,104130.0,Kolokani,both,identical +148666,-7.25,13.25,MLI,1441.0,Koulikoro,143.0,Mali,104131.0,Koulikoro,-7.25,13.25,MLI,1441.0,Koulikoro,143.0,Mali,104131.0,Koulikoro,both,identical +148667,-6.75,13.25,MLI,1444.0,Ségou,143.0,Mali,104148.0,Barouéli,-6.75,13.25,MLI,1444.0,Ségou,143.0,Mali,104148.0,Barouéli,both,identical +148668,-6.25,13.25,MLI,1444.0,Ségou,143.0,Mali,104153.0,Ségou,-6.25,13.25,MLI,1444.0,Ségou,143.0,Mali,104153.0,Ségou,both,identical +148669,-5.75,13.25,MLI,1444.0,Ségou,143.0,Mali,104153.0,Ségou,-5.75,13.25,MLI,1444.0,Ségou,143.0,Mali,104153.0,Ségou,both,identical +148670,-5.25,13.25,MLI,1444.0,Ségou,143.0,Mali,104152.0,San,-5.25,13.25,MLI,1444.0,Ségou,143.0,Mali,104152.0,San,both,identical +148671,-4.75,13.25,MLI,1444.0,Ségou,143.0,Mali,104152.0,San,-4.75,13.25,MLI,1444.0,Ségou,143.0,Mali,104152.0,San,both,identical +148672,-4.25,13.25,MLI,1444.0,Ségou,143.0,Mali,104154.0,Tominian,-4.25,13.25,MLI,1444.0,Ségou,143.0,Mali,104154.0,Tominian,both,identical +148673,-3.75,13.25,BFA,1101.0,Boucle Du Mouhoun,108.0,Burkina Faso,101822.0,Kossi,-3.75,13.25,BFA,1101.0,Boucle Du Mouhoun,108.0,Burkina Faso,101822.0,Kossi,both,identical +148674,-3.25,13.25,BFA,1101.0,Boucle Du Mouhoun,108.0,Burkina Faso,101825.0,Sourou,-3.25,13.25,BFA,1101.0,Boucle Du Mouhoun,108.0,Burkina Faso,101825.0,Sourou,both,identical +148675,-2.75,13.25,BFA,1101.0,Boucle Du Mouhoun,108.0,Burkina Faso,101825.0,Sourou,-2.75,13.25,BFA,1101.0,Boucle Du Mouhoun,108.0,Burkina Faso,101825.0,Sourou,both,identical +148676,-2.25,13.25,BFA,1110.0,Nord,108.0,Burkina Faso,101853.0,Zondoma,-2.25,13.25,BFA,1110.0,Nord,108.0,Burkina Faso,101853.0,Zondoma,both,identical +148677,-1.75,13.25,BFA,1105.0,Centre-Nord,108.0,Burkina Faso,101832.0,Bam,-1.75,13.25,BFA,1105.0,Centre-Nord,108.0,Burkina Faso,101832.0,Bam,both,identical +148678,-1.25,13.25,BFA,1105.0,Centre-Nord,108.0,Burkina Faso,101834.0,Sanmatenga,-1.25,13.25,BFA,1105.0,Centre-Nord,108.0,Burkina Faso,101834.0,Sanmatenga,both,identical +148679,-0.75,13.25,BFA,1105.0,Centre-Nord,108.0,Burkina Faso,101834.0,Sanmatenga,-0.75,13.25,BFA,1105.0,Centre-Nord,108.0,Burkina Faso,101834.0,Sanmatenga,both,identical +148680,-0.25,13.25,BFA,1108.0,Est,108.0,Burkina Faso,101842.0,Gnagna,-0.25,13.25,BFA,1108.0,Est,108.0,Burkina Faso,101842.0,Gnagna,both,identical +148681,0.25,13.25,BFA,1108.0,Est,108.0,Burkina Faso,101842.0,Gnagna,0.25,13.25,BFA,1108.0,Est,108.0,Burkina Faso,101842.0,Gnagna,both,identical +148682,0.75,13.25,BFA,1112.0,Sahel,108.0,Burkina Faso,101860.0,Yagha,0.75,13.25,BFA,1112.0,Sahel,108.0,Burkina Faso,101860.0,Yagha,both,identical +148683,1.25,13.25,NER,1515.0,Tillabéri,150.0,Niger,104619.0,Torodi,1.25,13.25,NER,1515.0,Tillabéri,150.0,Niger,104619.0,Torodi,both,identical +148684,1.75,13.25,NER,1515.0,Tillabéri,150.0,Niger,104619.0,Torodi,1.75,13.25,NER,1515.0,Tillabéri,150.0,Niger,104619.0,Torodi,both,identical +148685,2.25,13.25,NER,1515.0,Tillabéri,150.0,Niger,104615.0,Kollo,2.25,13.25,NER,1515.0,Tillabéri,150.0,Niger,104615.0,Kollo,both,identical +148686,2.75,13.25,NER,1512.0,Dosso,150.0,Niger,104580.0,Boboye,2.75,13.25,NER,1512.0,Dosso,150.0,Niger,104580.0,Boboye,both,identical +148687,3.25,13.25,NER,1512.0,Dosso,150.0,Niger,104583.0,Dosso,3.25,13.25,NER,1512.0,Dosso,150.0,Niger,104583.0,Dosso,both,identical +148688,3.75,13.25,NER,1512.0,Dosso,150.0,Niger,104583.0,Dosso,3.75,13.25,NER,1512.0,Dosso,150.0,Niger,104583.0,Dosso,both,identical +148689,4.25,13.25,NGA,1550.0,Sokoto,151.0,Nigeria,105340.0,Gudu,4.25,13.25,NGA,1550.0,Sokoto,151.0,Nigeria,105340.0,Gudu,both,identical +148690,4.75,13.25,NGA,1550.0,Sokoto,151.0,Nigeria,105340.0,Gudu,4.75,13.25,NGA,1550.0,Sokoto,151.0,Nigeria,105340.0,Gudu,both,identical +148691,5.25,13.25,NGA,1550.0,Sokoto,151.0,Nigeria,105341.0,Gwadabawa,5.25,13.25,NGA,1550.0,Sokoto,151.0,Nigeria,105341.0,Gwadabawa,both,identical +148692,5.75,13.25,NGA,1550.0,Sokoto,151.0,Nigeria,105339.0,Goronyo,5.75,13.25,NGA,1550.0,Sokoto,151.0,Nigeria,105339.0,Goronyo,both,identical +148693,6.25,13.25,NGA,1550.0,Sokoto,151.0,Nigeria,105343.0,Isa,6.25,13.25,NGA,1550.0,Sokoto,151.0,Nigeria,105343.0,Isa,both,identical +148694,6.75,13.25,NER,1513.0,Maradi,150.0,Niger,104593.0,Madarounfa,6.75,13.25,NER,1513.0,Maradi,150.0,Niger,104593.0,Madarounfa,both,identical +148695,7.25,13.25,NER,1513.0,Maradi,150.0,Niger,104593.0,Madarounfa,7.25,13.25,NER,1513.0,Maradi,150.0,Niger,104593.0,Madarounfa,both,identical +148696,7.75,13.25,NGA,1537.0,Katsina,151.0,Nigeria,105061.0,Kaita,7.75,13.25,NGA,1537.0,Katsina,151.0,Nigeria,105061.0,Kaita,both,identical +148697,8.25,13.25,NER,1513.0,Maradi,150.0,Niger,104625.0,Kantché,8.25,13.25,NER,1516.0,Zinder,150.0,Niger,104625.0,Kantché,both,admin_reallocation +148698,8.75,13.25,NER,1516.0,Zinder,150.0,Niger,104626.0,Magaria,8.75,13.25,NER,1516.0,Zinder,150.0,Niger,104626.0,Magaria,both,identical +148699,9.25,13.25,NER,1516.0,Zinder,150.0,Niger,104623.0,Dungass,9.25,13.25,NER,1516.0,Zinder,150.0,Niger,104623.0,Dungass,both,identical +148700,9.75,13.25,NER,1516.0,Zinder,150.0,Niger,104623.0,Dungass,9.75,13.25,NER,1516.0,Zinder,150.0,Niger,104623.0,Dungass,both,identical +148701,10.25,13.25,NGA,1552.0,Yobe,151.0,Nigeria,105384.0,Machina,10.25,13.25,NER,1516.0,Zinder,150.0,Niger,104624.0,Gouré,both,country_reassignment +148702,10.75,13.25,NGA,1552.0,Yobe,151.0,Nigeria,105390.0,Yusufari,10.75,13.25,NGA,1552.0,Yobe,151.0,Nigeria,105390.0,Yusufari,both,identical +148703,11.25,13.25,NGA,1552.0,Yobe,151.0,Nigeria,105390.0,Yusufari,11.25,13.25,NGA,1552.0,Yobe,151.0,Nigeria,105390.0,Yusufari,both,identical +148704,11.75,13.25,NGA,1552.0,Yobe,151.0,Nigeria,105389.0,Yunusari,11.75,13.25,NGA,1552.0,Yobe,151.0,Nigeria,105389.0,Yunusari,both,identical +148705,12.25,13.25,NER,1511.0,Diffa,150.0,Niger,104575.0,Diffa,12.25,13.25,NER,1511.0,Diffa,150.0,Niger,104575.0,Diffa,both,identical +148706,12.75,13.25,NGA,1524.0,Borno,151.0,Nigeria,104794.0,Mobbar,12.75,13.25,NGA,1524.0,Borno,151.0,Nigeria,104794.0,Mobbar,both,identical +148707,13.25,13.25,NGA,1524.0,Borno,151.0,Nigeria,104772.0,Abadam,13.25,13.25,NGA,1524.0,Borno,151.0,Nigeria,104772.0,Abadam,both,identical +148708,13.75,13.25,NGA,1524.0,Borno,151.0,Nigeria,104788.0,Kukawa,13.75,13.25,NGA,1524.0,Borno,151.0,Nigeria,104788.0,Kukawa,both,identical +148709,14.25,13.25,TCD,1169.0,Lac,114.0,Chad,102109.0,Mamdi,14.25,13.25,TCD,1169.0,Lac,114.0,Chad,102109.0,Mamdi,both,identical +148710,14.75,13.25,TCD,1169.0,Lac,114.0,Chad,102109.0,Mamdi,14.75,13.25,TCD,1169.0,Lac,114.0,Chad,102109.0,Mamdi,both,identical +148711,15.25,13.25,TCD,1169.0,Lac,114.0,Chad,102110.0,Wayi,15.25,13.25,TCD,1169.0,Lac,114.0,Chad,102110.0,Wayi,both,identical +148712,15.75,13.25,TCD,1168.0,Kanem,114.0,Chad,102106.0,Wadi Bissam,15.75,13.25,TCD,1168.0,Kanem,114.0,Chad,102106.0,Wadi Bissam,both,identical +148713,16.25,13.25,TCD,1159.0,Barh-El-Gazel,114.0,Chad,102083.0,Barh-El-Gazel Ouest,16.25,13.25,TCD,1159.0,Barh-El-Gazel,114.0,Chad,102083.0,Barh-El-Gazel Ouest,both,identical +148714,16.75,13.25,TCD,1159.0,Barh-El-Gazel,114.0,Chad,102084.0,Barh-El-Gazel Sud,16.75,13.25,TCD,1159.0,Barh-El-Gazel,114.0,Chad,102084.0,Barh-El-Gazel Sud,both,identical +148715,17.25,13.25,TCD,1160.0,Batha,114.0,Chad,102087.0,Fitri,17.25,13.25,TCD,1160.0,Batha,114.0,Chad,102087.0,Fitri,both,identical +148716,17.75,13.25,TCD,1160.0,Batha,114.0,Chad,102087.0,Fitri,17.75,13.25,TCD,1160.0,Batha,114.0,Chad,102087.0,Fitri,both,identical +148717,18.25,13.25,TCD,1160.0,Batha,114.0,Chad,102086.0,Batha Ouest,18.25,13.25,TCD,1160.0,Batha,114.0,Chad,102086.0,Batha Ouest,both,identical +148718,18.75,13.25,TCD,1160.0,Batha,114.0,Chad,102086.0,Batha Ouest,18.75,13.25,TCD,1160.0,Batha,114.0,Chad,102086.0,Batha Ouest,both,identical +148719,19.25,13.25,TCD,1160.0,Batha,114.0,Chad,102085.0,Batha Est,19.25,13.25,TCD,1160.0,Batha,114.0,Chad,102085.0,Batha Est,both,identical +148720,19.75,13.25,TCD,1160.0,Batha,114.0,Chad,102085.0,Batha Est,19.75,13.25,TCD,1160.0,Batha,114.0,Chad,102085.0,Batha Est,both,identical +148721,20.25,13.25,TCD,1160.0,Batha,114.0,Chad,102085.0,Batha Est,20.25,13.25,TCD,1160.0,Batha,114.0,Chad,102085.0,Batha Est,both,identical +148722,20.75,13.25,TCD,1177.0,Ouaddaï,114.0,Chad,102137.0,Ouara,20.75,13.25,TCD,1177.0,Ouaddaï,114.0,Chad,102137.0,Ouara,both,identical +148723,21.25,13.25,TCD,1177.0,Ouaddaï,114.0,Chad,102137.0,Ouara,21.25,13.25,TCD,1177.0,Ouaddaï,114.0,Chad,102137.0,Ouara,both,identical +148724,21.75,13.25,TCD,1177.0,Ouaddaï,114.0,Chad,102136.0,Assoungha,21.75,13.25,TCD,1177.0,Ouaddaï,114.0,Chad,102136.0,Assoungha,both,identical +148725,22.25,13.25,SDN,1642.0,West Darfur,161.0,Sudan,105896.0,Ag Geneina,22.25,13.25,SDN,1642.0,West Darfur,161.0,Sudan,105896.0,Ag Geneina,both,identical +148726,22.75,13.25,SDN,1642.0,West Darfur,161.0,Sudan,105901.0,Kereneik,22.75,13.25,SDN,1642.0,West Darfur,161.0,Sudan,105901.0,Kereneik,both,identical +148727,23.25,13.25,SDN,1629.0,Central Darfur,161.0,Sudan,105762.0,Zalingi,23.25,13.25,SDN,1629.0,Central Darfur,161.0,Sudan,105762.0,Zalingi,both,identical +148728,23.75,13.25,SDN,1629.0,Central Darfur,161.0,Sudan,105762.0,Zalingi,23.75,13.25,SDN,1629.0,Central Darfur,161.0,Sudan,105762.0,Zalingi,both,identical +148729,24.25,13.25,SDN,1629.0,Central Darfur,161.0,Sudan,105810.0,Kebkabiya,24.25,13.25,SDN,1634.0,North Darfur,161.0,Sudan,105810.0,Kebkabiya,both,admin_reallocation +148730,24.75,13.25,SDN,1634.0,North Darfur,161.0,Sudan,105816.0,Tawila,24.75,13.25,SDN,1634.0,North Darfur,161.0,Sudan,105816.0,Tawila,both,identical +148731,25.25,13.25,SDN,1634.0,North Darfur,161.0,Sudan,105809.0,Dar As Salam,25.25,13.25,SDN,1634.0,North Darfur,161.0,Sudan,105809.0,Dar As Salam,both,identical +148732,25.75,13.25,SDN,1634.0,North Darfur,161.0,Sudan,105811.0,Kelemando,25.75,13.25,SDN,1634.0,North Darfur,161.0,Sudan,105811.0,Kelemando,both,identical +148733,26.25,13.25,SDN,1634.0,North Darfur,161.0,Sudan,105811.0,Kelemando,26.25,13.25,SDN,1634.0,North Darfur,161.0,Sudan,105811.0,Kelemando,both,identical +148734,26.75,13.25,SDN,1634.0,North Darfur,161.0,Sudan,105818.0,Um Kadadah,26.75,13.25,SDN,1634.0,North Darfur,161.0,Sudan,105818.0,Um Kadadah,both,identical +148735,27.25,13.25,SDN,1634.0,North Darfur,161.0,Sudan,105818.0,Um Kadadah,27.25,13.25,SDN,1634.0,North Darfur,161.0,Sudan,105818.0,Um Kadadah,both,identical +148736,27.75,13.25,SDN,1643.0,West Kordofan,161.0,Sudan,105917.0,Wad Bandah,27.75,13.25,SDN,1643.0,West Kordofan,161.0,Sudan,105917.0,Wad Bandah,both,identical +148737,28.25,13.25,SDN,1643.0,West Kordofan,161.0,Sudan,105911.0,An Nuhud,28.25,13.25,SDN,1643.0,West Kordofan,161.0,Sudan,105911.0,An Nuhud,both,identical +148738,28.75,13.25,SDN,1643.0,West Kordofan,161.0,Sudan,105908.0,Al Khiwai,28.75,13.25,SDN,1643.0,West Kordofan,161.0,Sudan,105908.0,Al Khiwai,both,identical +148739,29.25,13.25,SDN,1643.0,West Kordofan,161.0,Sudan,105908.0,Al Khiwai,29.25,13.25,SDN,1643.0,West Kordofan,161.0,Sudan,105908.0,Al Khiwai,both,identical +148740,29.75,13.25,SDN,1635.0,North Kordofan,161.0,Sudan,105823.0,Sheikan,29.75,13.25,SDN,1635.0,North Kordofan,161.0,Sudan,105823.0,Sheikan,both,identical +148741,30.25,13.25,SDN,1635.0,North Kordofan,161.0,Sudan,105823.0,Sheikan,30.25,13.25,SDN,1635.0,North Kordofan,161.0,Sudan,105823.0,Sheikan,both,identical +148742,30.75,13.25,SDN,1635.0,North Kordofan,161.0,Sudan,105826.0,Um Rawaba,30.75,13.25,SDN,1635.0,North Kordofan,161.0,Sudan,105826.0,Um Rawaba,both,identical +148743,31.25,13.25,SDN,1635.0,North Kordofan,161.0,Sudan,105826.0,Um Rawaba,31.25,13.25,SDN,1635.0,North Kordofan,161.0,Sudan,105826.0,Um Rawaba,both,identical +148744,31.75,13.25,SDN,1635.0,North Kordofan,161.0,Sudan,105826.0,Um Rawaba,31.75,13.25,SDN,1635.0,North Kordofan,161.0,Sudan,105826.0,Um Rawaba,both,identical +148745,32.25,13.25,SDN,1644.0,White Nile,161.0,Sudan,105922.0,Guli,32.25,13.25,SDN,1644.0,White Nile,161.0,Sudan,105922.0,Guli,both,identical +148746,32.75,13.25,SDN,1644.0,White Nile,161.0,Sudan,105924.0,Rabak,32.75,13.25,SDN,1644.0,White Nile,161.0,Sudan,105924.0,Rabak,both,identical +148747,33.25,13.25,SDN,1639.0,Sennar,161.0,Sudan,105855.0,Sennar,33.25,13.25,SDN,1639.0,Sennar,161.0,Sudan,105855.0,Sennar,both,identical +148748,33.75,13.25,SDN,1639.0,Sennar,161.0,Sudan,105857.0,Sinja,33.75,13.25,SDN,1639.0,Sennar,161.0,Sudan,105857.0,Sinja,both,identical +148749,34.25,13.25,SDN,1639.0,Sennar,161.0,Sudan,105853.0,Ad Dinder,34.25,13.25,SDN,1639.0,Sennar,161.0,Sudan,105853.0,Ad Dinder,both,identical +148750,34.75,13.25,SDN,1631.0,Gedaref,161.0,Sudan,105778.0,Ar Rahad,34.75,13.25,SDN,1631.0,Gedaref,161.0,Sudan,105778.0,Ar Rahad,both,identical +148751,35.25,13.25,SDN,1631.0,Gedaref,161.0,Sudan,105780.0,Gala'A Al Nahal,35.25,13.25,SDN,1631.0,Gedaref,161.0,Sudan,105780.0,Gala'A Al Nahal,both,identical +148752,35.75,13.25,SDN,1631.0,Gedaref,161.0,Sudan,105781.0,Galabat Ash-Shargiah,35.75,13.25,SDN,1631.0,Gedaref,161.0,Sudan,105781.0,Galabat Ash-Shargiah,both,identical +148753,36.25,13.25,ETH,1291.0,Amhara,124.0,Ethiopia,103060.0,West Gondar,36.25,13.25,ETH,1291.0,Amhara,124.0,Ethiopia,103060.0,West Gondar,both,identical +148754,36.75,13.25,ETH,1291.0,Amhara,124.0,Ethiopia,103050.0,Central Gondar,36.75,13.25,ETH,1291.0,Amhara,124.0,Ethiopia,103050.0,Central Gondar,both,identical +148755,37.25,13.25,ETH,1291.0,Amhara,124.0,Ethiopia,103050.0,Central Gondar,37.25,13.25,ETH,1291.0,Amhara,124.0,Ethiopia,103050.0,Central Gondar,both,identical +148756,37.75,13.25,ETH,1291.0,Amhara,124.0,Ethiopia,103052.0,North Gondar,37.75,13.25,ETH,1291.0,Amhara,124.0,Ethiopia,103052.0,North Gondar,both,identical +148757,38.25,13.25,ETH,1291.0,Amhara,124.0,Ethiopia,103052.0,North Gondar,38.25,13.25,ETH,1291.0,Amhara,124.0,Ethiopia,103052.0,North Gondar,both,identical +148758,38.75,13.25,ETH,1291.0,Amhara,124.0,Ethiopia,103058.0,Wag Hamra,38.75,13.25,ETH,1291.0,Amhara,124.0,Ethiopia,103058.0,Wag Hamra,both,identical +148759,39.25,13.25,ETH,1301.0,Tigray,124.0,Ethiopia,103132.0,South Eastern,39.25,13.25,ETH,1301.0,Tigray,124.0,Ethiopia,103132.0,South Eastern,both,identical +148760,39.75,13.25,ETH,1301.0,Tigray,124.0,Ethiopia,103132.0,South Eastern,39.75,13.25,ETH,1301.0,Tigray,124.0,Ethiopia,103132.0,South Eastern,both,identical +148761,40.25,13.25,ETH,1290.0,Afar,124.0,Ethiopia,103048.0,Kilbati /Zone2,40.25,13.25,ETH,1290.0,Afar,124.0,Ethiopia,103048.0,Kilbati /Zone2,both,identical +148762,40.75,13.25,ETH,1290.0,Afar,124.0,Ethiopia,103048.0,Kilbati /Zone2,40.75,13.25,ETH,1290.0,Afar,124.0,Ethiopia,103048.0,Kilbati /Zone2,both,identical +148763,41.25,13.25,ETH,1290.0,Afar,124.0,Ethiopia,103048.0,Kilbati /Zone2,41.25,13.25,ETH,1290.0,Afar,124.0,Ethiopia,103048.0,Kilbati /Zone2,both,identical +148764,41.75,13.25,ERI,1281.0,Debubawi Keih Bahri,122.0,Eritrea,102951.0,Debub Deb.Keih Bahri,41.75,13.25,ETH,1290.0,Afar,124.0,Ethiopia,103048.0,Kilbati /Zone2,both,country_reassignment +148765,42.25,13.25,ERI,1281.0,Debubawi Keih Bahri,122.0,Eritrea,102951.0,Debub Deb.Keih Bahri,42.25,13.25,ERI,1281.0,Debubawi Keih Bahri,122.0,Eritrea,102951.0,Debub Deb.Keih Bahri,both,identical +148766,42.75,13.25,ERI,1281.0,Debubawi Keih Bahri,122.0,Eritrea,102951.0,Debub Deb.Keih Bahri,42.75,13.25,ERI,1281.0,Debubawi Keih Bahri,122.0,Eritrea,102951.0,Debub Deb.Keih Bahri,both,identical +148767,43.25,13.25,YEM,3289.0,Ta'Iz,282.0,Yemen,133944.0,Al Mukha,43.25,13.25,YEM,3289.0,Ta'Iz,282.0,Yemen,133944.0,Al Mukha,both,identical +148768,43.75,13.25,YEM,3289.0,Ta'Iz,282.0,Yemen,133961.0,Mawza,43.75,13.25,YEM,3289.0,Ta'Iz,282.0,Yemen,133961.0,Mawza,both,identical +148769,44.25,13.25,YEM,3281.0,Lahj,282.0,Yemen,133861.0,Tur Al Bahah,44.25,13.25,YEM,3281.0,Lahj,282.0,Yemen,133861.0,Tur Al Bahah,both,identical +148770,44.75,13.25,YEM,3281.0,Lahj,282.0,Yemen,133860.0,Tuban,44.75,13.25,YEM,3281.0,Lahj,282.0,Yemen,133860.0,Tuban,both,identical +148771,45.25,13.25,YEM,3268.0,Abyan,282.0,Yemen,133638.0,Khanfir,45.25,13.25,YEM,3268.0,Abyan,282.0,Yemen,133638.0,Khanfir,both,identical +148772,45.75,13.25,YEM,3268.0,Abyan,282.0,Yemen,133638.0,Khanfir,45.75,13.25,YEM,3268.0,Abyan,282.0,Yemen,133638.0,Khanfir,both,identical +148773,46.25,13.25,YEM,3268.0,Abyan,282.0,Yemen,133638.0,Khanfir,46.25,13.25,YEM,3268.0,Abyan,282.0,Yemen,133638.0,Khanfir,both,identical +148774,46.75,13.25,YEM,3268.0,Abyan,282.0,Yemen,133634.0,Ahwar,46.75,13.25,YEM,3268.0,Abyan,282.0,Yemen,133634.0,Ahwar,both,identical +149367,-16.75,13.75,SEN,1567.0,Fatick,155.0,Senegal,105475.0,Foundiougne,-16.75,13.75,SEN,1567.0,Fatick,155.0,Senegal,105475.0,Foundiougne,both,identical +149368,-16.25,13.75,SEN,1567.0,Fatick,155.0,Senegal,105475.0,Foundiougne,-16.25,13.75,SEN,1567.0,Fatick,155.0,Senegal,105475.0,Foundiougne,both,identical +149369,-15.75,13.75,SEN,1569.0,Kaolack,155.0,Senegal,105483.0,Nioro Du Rip,-15.75,13.75,SEN,1569.0,Kaolack,155.0,Senegal,105483.0,Nioro Du Rip,both,identical +149370,-15.25,13.75,GMB,1315.0,Central River South,128.0,Gambia,103196.0,Niamina East,-15.25,13.75,SEN,1568.0,Kaffrine,155.0,Senegal,105478.0,Kaffrine,both,country_reassignment +149371,-14.75,13.75,SEN,1577.0,Tambacounda,155.0,Senegal,105504.0,Koumpentoum,-14.75,13.75,SEN,1577.0,Tambacounda,155.0,Senegal,105504.0,Koumpentoum,both,identical +149372,-14.25,13.75,SEN,1577.0,Tambacounda,155.0,Senegal,105505.0,Tambacounda,-14.25,13.75,SEN,1577.0,Tambacounda,155.0,Senegal,105505.0,Tambacounda,both,identical +149373,-13.75,13.75,SEN,1577.0,Tambacounda,155.0,Senegal,105505.0,Tambacounda,-13.75,13.75,SEN,1577.0,Tambacounda,155.0,Senegal,105505.0,Tambacounda,both,identical +149374,-13.25,13.75,SEN,1577.0,Tambacounda,155.0,Senegal,105503.0,Goudiry,-13.25,13.75,SEN,1577.0,Tambacounda,155.0,Senegal,105503.0,Goudiry,both,identical +149375,-12.75,13.75,SEN,1577.0,Tambacounda,155.0,Senegal,105503.0,Goudiry,-12.75,13.75,SEN,1577.0,Tambacounda,155.0,Senegal,105503.0,Goudiry,both,identical +149376,-12.25,13.75,SEN,1577.0,Tambacounda,155.0,Senegal,105502.0,Bakel,-12.25,13.75,SEN,1577.0,Tambacounda,155.0,Senegal,105502.0,Bakel,both,identical +149377,-11.75,13.75,MLI,1439.0,Kayes,143.0,Mali,104117.0,Kayes,-11.75,13.75,MLI,1439.0,Kayes,143.0,Mali,104117.0,Kayes,both,identical +149378,-11.25,13.75,MLI,1439.0,Kayes,143.0,Mali,104115.0,Bafoulabé,-11.25,13.75,MLI,1439.0,Kayes,143.0,Mali,104115.0,Bafoulabé,both,identical +149379,-10.75,13.75,MLI,1439.0,Kayes,143.0,Mali,104115.0,Bafoulabé,-10.75,13.75,MLI,1439.0,Kayes,143.0,Mali,104115.0,Bafoulabé,both,identical +149380,-10.25,13.75,MLI,1439.0,Kayes,143.0,Mali,104115.0,Bafoulabé,-10.25,13.75,MLI,1439.0,Kayes,143.0,Mali,104115.0,Bafoulabé,both,identical +149381,-9.75,13.75,MLI,1439.0,Kayes,143.0,Mali,104118.0,Kita,-9.75,13.75,MLI,1439.0,Kayes,143.0,Mali,104118.0,Kita,both,identical +149382,-9.25,13.75,MLI,1439.0,Kayes,143.0,Mali,104118.0,Kita,-9.25,13.75,MLI,1439.0,Kayes,143.0,Mali,104118.0,Kita,both,identical +149383,-8.75,13.75,MLI,1439.0,Kayes,143.0,Mali,104118.0,Kita,-8.75,13.75,MLI,1439.0,Kayes,143.0,Mali,104118.0,Kita,both,identical +149384,-8.25,13.75,MLI,1441.0,Koulikoro,143.0,Mali,104130.0,Kolokani,-8.25,13.75,MLI,1441.0,Koulikoro,143.0,Mali,104130.0,Kolokani,both,identical +149385,-7.75,13.75,MLI,1441.0,Koulikoro,143.0,Mali,104130.0,Kolokani,-7.75,13.75,MLI,1441.0,Koulikoro,143.0,Mali,104130.0,Kolokani,both,identical +149386,-7.25,13.75,MLI,1441.0,Koulikoro,143.0,Mali,104126.0,Banamba,-7.25,13.75,MLI,1441.0,Koulikoro,143.0,Mali,104126.0,Banamba,both,identical +149387,-6.75,13.75,MLI,1444.0,Ségou,143.0,Mali,104153.0,Ségou,-6.75,13.75,MLI,1444.0,Ségou,143.0,Mali,104153.0,Ségou,both,identical +149388,-6.25,13.75,MLI,1444.0,Ségou,143.0,Mali,104153.0,Ségou,-6.25,13.75,MLI,1444.0,Ségou,143.0,Mali,104153.0,Ségou,both,identical +149389,-5.75,13.75,MLI,1444.0,Ségou,143.0,Mali,104153.0,Ségou,-5.75,13.75,MLI,1444.0,Ségou,143.0,Mali,104153.0,Ségou,both,identical +149390,-5.25,13.75,MLI,1444.0,Ségou,143.0,Mali,104150.0,Ké-Macina,-5.25,13.75,MLI,1444.0,Ségou,143.0,Mali,104150.0,Ké-Macina,both,identical +149391,-4.75,13.75,MLI,1442.0,Mopti,143.0,Mali,104135.0,Djenné,-4.75,13.75,MLI,1442.0,Mopti,143.0,Mali,104135.0,Djenné,both,identical +149392,-4.25,13.75,MLI,1444.0,Ségou,143.0,Mali,104154.0,Tominian,-4.25,13.75,MLI,1444.0,Ségou,143.0,Mali,104154.0,Tominian,both,identical +149393,-3.75,13.75,MLI,1442.0,Mopti,143.0,Mali,104134.0,Bankass,-3.75,13.75,MLI,1442.0,Mopti,143.0,Mali,104134.0,Bankass,both,identical +149394,-3.25,13.75,MLI,1442.0,Mopti,143.0,Mali,104137.0,Koro,-3.25,13.75,MLI,1442.0,Mopti,143.0,Mali,104137.0,Koro,both,identical +149395,-2.75,13.75,BFA,1110.0,Nord,108.0,Burkina Faso,101852.0,Yatenga,-2.75,13.75,BFA,1110.0,Nord,108.0,Burkina Faso,101852.0,Yatenga,both,identical +149396,-2.25,13.75,BFA,1110.0,Nord,108.0,Burkina Faso,101852.0,Yatenga,-2.25,13.75,BFA,1110.0,Nord,108.0,Burkina Faso,101852.0,Yatenga,both,identical +149397,-1.75,13.75,BFA,1105.0,Centre-Nord,108.0,Burkina Faso,101832.0,Bam,-1.75,13.75,BFA,1105.0,Centre-Nord,108.0,Burkina Faso,101832.0,Bam,both,identical +149398,-1.25,13.75,BFA,1105.0,Centre-Nord,108.0,Burkina Faso,101858.0,Soum,-1.25,13.75,BFA,1112.0,Sahel,108.0,Burkina Faso,101858.0,Soum,both,admin_reallocation +149399,-0.75,13.75,BFA,1105.0,Centre-Nord,108.0,Burkina Faso,101834.0,Sanmatenga,-0.75,13.75,BFA,1105.0,Centre-Nord,108.0,Burkina Faso,101834.0,Sanmatenga,both,identical +149400,-0.25,13.75,BFA,1112.0,Sahel,108.0,Burkina Faso,101859.0,Séno,-0.25,13.75,BFA,1112.0,Sahel,108.0,Burkina Faso,101859.0,Séno,both,identical +149401,0.25,13.75,BFA,1112.0,Sahel,108.0,Burkina Faso,101859.0,Séno,0.25,13.75,BFA,1112.0,Sahel,108.0,Burkina Faso,101859.0,Séno,both,identical +149402,0.75,13.75,NER,1515.0,Tillabéri,150.0,Niger,104620.0,Téra,0.75,13.75,NER,1515.0,Tillabéri,150.0,Niger,104620.0,Téra,both,identical +149403,1.25,13.75,NER,1515.0,Tillabéri,150.0,Niger,104614.0,Gothèye,1.25,13.75,NER,1515.0,Tillabéri,150.0,Niger,104614.0,Gothèye,both,identical +149404,1.75,13.75,NER,1515.0,Tillabéri,150.0,Niger,104615.0,Kollo,1.75,13.75,NER,1515.0,Tillabéri,150.0,Niger,104615.0,Kollo,both,identical +149405,2.25,13.75,NER,1515.0,Tillabéri,150.0,Niger,104615.0,Kollo,2.25,13.75,NER,1515.0,Tillabéri,150.0,Niger,104615.0,Kollo,both,identical +149406,2.75,13.75,NER,1515.0,Tillabéri,150.0,Niger,104610.0,Balleyara,2.75,13.75,NER,1515.0,Tillabéri,150.0,Niger,104610.0,Balleyara,both,identical +149407,3.25,13.75,NER,1515.0,Tillabéri,150.0,Niger,104613.0,Filingué,3.25,13.75,NER,1515.0,Tillabéri,150.0,Niger,104613.0,Filingué,both,identical +149408,3.75,13.75,NER,1512.0,Dosso,150.0,Niger,104582.0,Dogondoutchi,3.75,13.75,NER,1512.0,Dosso,150.0,Niger,104582.0,Dogondoutchi,both,identical +149409,4.25,13.75,NER,1512.0,Dosso,150.0,Niger,104582.0,Dogondoutchi,4.25,13.75,NER,1512.0,Dosso,150.0,Niger,104582.0,Dogondoutchi,both,identical +149410,4.75,13.75,NER,1514.0,Tahoua,150.0,Niger,104598.0,Birni N'Konni,4.75,13.75,NER,1514.0,Tahoua,150.0,Niger,104598.0,Birni N'Konni,both,identical +149411,5.25,13.75,NGA,1550.0,Sokoto,151.0,Nigeria,105342.0,Illela,5.25,13.75,NER,1514.0,Tahoua,150.0,Niger,104598.0,Birni N'Konni,both,country_reassignment +149412,5.75,13.75,NGA,1550.0,Sokoto,151.0,Nigeria,105338.0,Gada,5.75,13.75,NGA,1550.0,Sokoto,151.0,Nigeria,105338.0,Gada,both,identical +149413,6.25,13.75,NER,1514.0,Tahoua,150.0,Niger,104602.0,Madaoua,6.25,13.75,NER,1514.0,Tahoua,150.0,Niger,104602.0,Madaoua,both,identical +149414,6.75,13.75,NER,1513.0,Maradi,150.0,Niger,104592.0,Guidan Roumdji,6.75,13.75,NER,1513.0,Maradi,150.0,Niger,104592.0,Guidan Roumdji,both,identical +149415,7.25,13.75,NER,1513.0,Maradi,150.0,Niger,104592.0,Guidan Roumdji,7.25,13.75,NER,1513.0,Maradi,150.0,Niger,104592.0,Guidan Roumdji,both,identical +149416,7.75,13.75,NER,1513.0,Maradi,150.0,Niger,104594.0,Mayahi,7.75,13.75,NER,1513.0,Maradi,150.0,Niger,104594.0,Mayahi,both,identical +149417,8.25,13.75,NER,1513.0,Maradi,150.0,Niger,104595.0,Tessaoua,8.25,13.75,NER,1513.0,Maradi,150.0,Niger,104595.0,Tessaoua,both,identical +149418,8.75,13.75,NER,1516.0,Zinder,150.0,Niger,104628.0,Takéita,8.75,13.75,NER,1516.0,Zinder,150.0,Niger,104628.0,Takéita,both,identical +149419,9.25,13.75,NER,1516.0,Zinder,150.0,Niger,104627.0,Mirriah,9.25,13.75,NER,1516.0,Zinder,150.0,Niger,104627.0,Mirriah,both,identical +149420,9.75,13.75,NER,1516.0,Zinder,150.0,Niger,104624.0,Gouré,9.75,13.75,NER,1516.0,Zinder,150.0,Niger,104624.0,Gouré,both,identical +149421,10.25,13.75,NER,1516.0,Zinder,150.0,Niger,104624.0,Gouré,10.25,13.75,NER,1516.0,Zinder,150.0,Niger,104624.0,Gouré,both,identical +149422,10.75,13.75,NER,1516.0,Zinder,150.0,Niger,104624.0,Gouré,10.75,13.75,NER,1516.0,Zinder,150.0,Niger,104624.0,Gouré,both,identical +149423,11.25,13.75,NER,1511.0,Diffa,150.0,Niger,104576.0,Goudoumaria,11.25,13.75,NER,1511.0,Diffa,150.0,Niger,104576.0,Goudoumaria,both,identical +149424,11.75,13.75,NER,1511.0,Diffa,150.0,Niger,104577.0,Maïné-Soroa,11.75,13.75,NER,1511.0,Diffa,150.0,Niger,104577.0,Maïné-Soroa,both,identical +149425,12.25,13.75,NER,1511.0,Diffa,150.0,Niger,104577.0,Maïné-Soroa,12.25,13.75,NER,1511.0,Diffa,150.0,Niger,104577.0,Maïné-Soroa,both,identical +149426,12.75,13.75,NER,1511.0,Diffa,150.0,Niger,104575.0,Diffa,12.75,13.75,NER,1511.0,Diffa,150.0,Niger,104575.0,Diffa,both,identical +149427,13.25,13.75,NER,1511.0,Diffa,150.0,Niger,104574.0,Bosso,13.25,13.75,NER,1511.0,Diffa,150.0,Niger,104574.0,Bosso,both,identical +149428,13.75,13.75,TCD,1169.0,Lac,114.0,Chad,102107.0,Fouli,13.75,13.75,TCD,1169.0,Lac,114.0,Chad,102107.0,Fouli,both,identical +149429,14.25,13.75,TCD,1169.0,Lac,114.0,Chad,102107.0,Fouli,14.25,13.75,TCD,1169.0,Lac,114.0,Chad,102107.0,Fouli,both,identical +149430,14.75,13.75,TCD,1169.0,Lac,114.0,Chad,102104.0,Kanem,14.75,13.75,TCD,1168.0,Kanem,114.0,Chad,102104.0,Kanem,both,admin_reallocation +149431,15.25,13.75,TCD,1168.0,Kanem,114.0,Chad,102104.0,Kanem,15.25,13.75,TCD,1168.0,Kanem,114.0,Chad,102104.0,Kanem,both,identical +149432,15.75,13.75,TCD,1159.0,Barh-El-Gazel,114.0,Chad,102106.0,Wadi Bissam,15.75,13.75,TCD,1168.0,Kanem,114.0,Chad,102106.0,Wadi Bissam,both,admin_reallocation +149433,16.25,13.75,TCD,1159.0,Barh-El-Gazel,114.0,Chad,102084.0,Barh-El-Gazel Sud,16.25,13.75,TCD,1159.0,Barh-El-Gazel,114.0,Chad,102084.0,Barh-El-Gazel Sud,both,identical +149434,16.75,13.75,TCD,1159.0,Barh-El-Gazel,114.0,Chad,102084.0,Barh-El-Gazel Sud,16.75,13.75,TCD,1159.0,Barh-El-Gazel,114.0,Chad,102084.0,Barh-El-Gazel Sud,both,identical +149435,17.25,13.75,TCD,1159.0,Barh-El-Gazel,114.0,Chad,102082.0,Barh-El-Gazel Nord,17.25,13.75,TCD,1159.0,Barh-El-Gazel,114.0,Chad,102082.0,Barh-El-Gazel Nord,both,identical +149436,17.75,13.75,TCD,1160.0,Batha,114.0,Chad,102086.0,Batha Ouest,17.75,13.75,TCD,1160.0,Batha,114.0,Chad,102086.0,Batha Ouest,both,identical +149437,18.25,13.75,TCD,1160.0,Batha,114.0,Chad,102086.0,Batha Ouest,18.25,13.75,TCD,1160.0,Batha,114.0,Chad,102086.0,Batha Ouest,both,identical +149438,18.75,13.75,TCD,1160.0,Batha,114.0,Chad,102086.0,Batha Ouest,18.75,13.75,TCD,1160.0,Batha,114.0,Chad,102086.0,Batha Ouest,both,identical +149439,19.25,13.75,TCD,1160.0,Batha,114.0,Chad,102085.0,Batha Est,19.25,13.75,TCD,1160.0,Batha,114.0,Chad,102085.0,Batha Est,both,identical +149440,19.75,13.75,TCD,1160.0,Batha,114.0,Chad,102085.0,Batha Est,19.75,13.75,TCD,1160.0,Batha,114.0,Chad,102085.0,Batha Est,both,identical +149441,20.25,13.75,TCD,1177.0,Ouaddaï,114.0,Chad,102137.0,Ouara,20.25,13.75,TCD,1177.0,Ouaddaï,114.0,Chad,102137.0,Ouara,both,identical +149442,20.75,13.75,TCD,1177.0,Ouaddaï,114.0,Chad,102137.0,Ouara,20.75,13.75,TCD,1177.0,Ouaddaï,114.0,Chad,102137.0,Ouara,both,identical +149443,21.25,13.75,TCD,1177.0,Ouaddaï,114.0,Chad,102137.0,Ouara,21.25,13.75,TCD,1177.0,Ouaddaï,114.0,Chad,102137.0,Ouara,both,identical +149444,21.75,13.75,TCD,1177.0,Ouaddaï,114.0,Chad,102136.0,Assoungha,21.75,13.75,TCD,1177.0,Ouaddaï,114.0,Chad,102136.0,Assoungha,both,identical +149445,22.25,13.75,SDN,1642.0,West Darfur,161.0,Sudan,105903.0,Sirba,22.25,13.75,SDN,1642.0,West Darfur,161.0,Sudan,105903.0,Sirba,both,identical +149446,22.75,13.75,SDN,1642.0,West Darfur,161.0,Sudan,105901.0,Kereneik,22.75,13.75,SDN,1642.0,West Darfur,161.0,Sudan,105901.0,Kereneik,both,identical +149447,23.25,13.75,SDN,1634.0,North Darfur,161.0,Sudan,105806.0,As Serief,23.25,13.75,SDN,1634.0,North Darfur,161.0,Sudan,105806.0,As Serief,both,identical +149448,23.75,13.75,SDN,1634.0,North Darfur,161.0,Sudan,105806.0,As Serief,23.75,13.75,SDN,1634.0,North Darfur,161.0,Sudan,105806.0,As Serief,both,identical +149449,24.25,13.75,SDN,1634.0,North Darfur,161.0,Sudan,105810.0,Kebkabiya,24.25,13.75,SDN,1634.0,North Darfur,161.0,Sudan,105810.0,Kebkabiya,both,identical +149450,24.75,13.75,SDN,1634.0,North Darfur,161.0,Sudan,105802.0,Al Fasher,24.75,13.75,SDN,1634.0,North Darfur,161.0,Sudan,105802.0,Al Fasher,both,identical +149451,25.25,13.75,SDN,1634.0,North Darfur,161.0,Sudan,105802.0,Al Fasher,25.25,13.75,SDN,1634.0,North Darfur,161.0,Sudan,105802.0,Al Fasher,both,identical +149452,25.75,13.75,SDN,1634.0,North Darfur,161.0,Sudan,105802.0,Al Fasher,25.75,13.75,SDN,1634.0,North Darfur,161.0,Sudan,105802.0,Al Fasher,both,identical +149453,26.25,13.75,SDN,1634.0,North Darfur,161.0,Sudan,105814.0,Melit,26.25,13.75,SDN,1634.0,North Darfur,161.0,Sudan,105814.0,Melit,both,identical +149454,26.75,13.75,SDN,1634.0,North Darfur,161.0,Sudan,105818.0,Um Kadadah,26.75,13.75,SDN,1634.0,North Darfur,161.0,Sudan,105818.0,Um Kadadah,both,identical +149455,27.25,13.75,SDN,1634.0,North Darfur,161.0,Sudan,105818.0,Um Kadadah,27.25,13.75,SDN,1634.0,North Darfur,161.0,Sudan,105818.0,Um Kadadah,both,identical +149456,27.75,13.75,SDN,1643.0,West Kordofan,161.0,Sudan,105917.0,Wad Bandah,27.75,13.75,SDN,1643.0,West Kordofan,161.0,Sudan,105917.0,Wad Bandah,both,identical +149457,28.25,13.75,SDN,1643.0,West Kordofan,161.0,Sudan,105911.0,An Nuhud,28.25,13.75,SDN,1643.0,West Kordofan,161.0,Sudan,105911.0,An Nuhud,both,identical +149458,28.75,13.75,SDN,1643.0,West Kordofan,161.0,Sudan,105908.0,Al Khiwai,28.75,13.75,SDN,1643.0,West Kordofan,161.0,Sudan,105908.0,Al Khiwai,both,identical +149459,29.25,13.75,SDN,1635.0,North Kordofan,161.0,Sudan,105822.0,Gharb Bara,29.25,13.75,SDN,1635.0,North Kordofan,161.0,Sudan,105822.0,Gharb Bara,both,identical +149460,29.75,13.75,SDN,1635.0,North Kordofan,161.0,Sudan,105822.0,Gharb Bara,29.75,13.75,SDN,1635.0,North Kordofan,161.0,Sudan,105822.0,Gharb Bara,both,identical +149461,30.25,13.75,SDN,1635.0,North Kordofan,161.0,Sudan,105820.0,Bara,30.25,13.75,SDN,1635.0,North Kordofan,161.0,Sudan,105820.0,Bara,both,identical +149462,30.75,13.75,SDN,1635.0,North Kordofan,161.0,Sudan,105825.0,Um Dam Haj Ahmed,30.75,13.75,SDN,1635.0,North Kordofan,161.0,Sudan,105825.0,Um Dam Haj Ahmed,both,identical +149463,31.25,13.75,SDN,1635.0,North Kordofan,161.0,Sudan,105820.0,Bara,31.25,13.75,SDN,1635.0,North Kordofan,161.0,Sudan,105820.0,Bara,both,identical +149464,31.75,13.75,SDN,1635.0,North Kordofan,161.0,Sudan,105918.0,Ad Diwaim,31.75,13.75,SDN,1644.0,White Nile,161.0,Sudan,105918.0,Ad Diwaim,both,admin_reallocation +149465,32.25,13.75,SDN,1644.0,White Nile,161.0,Sudan,105918.0,Ad Diwaim,32.25,13.75,SDN,1644.0,White Nile,161.0,Sudan,105918.0,Ad Diwaim,both,identical +149466,32.75,13.75,SDN,1627.0,Aj Jazirah,161.0,Sudan,105741.0,Al Manaqil,32.75,13.75,SDN,1627.0,Aj Jazirah,161.0,Sudan,105741.0,Al Manaqil,both,identical +149467,33.25,13.75,SDN,1639.0,Sennar,161.0,Sudan,105855.0,Sennar,33.25,13.75,SDN,1639.0,Sennar,161.0,Sudan,105855.0,Sennar,both,identical +149468,33.75,13.75,SDN,1639.0,Sennar,161.0,Sudan,105856.0,Sharg Sennar,33.75,13.75,SDN,1639.0,Sennar,161.0,Sudan,105856.0,Sharg Sennar,both,identical +149469,34.25,13.75,SDN,1631.0,Gedaref,161.0,Sudan,105773.0,Al Fao,34.25,13.75,SDN,1631.0,Gedaref,161.0,Sudan,105773.0,Al Fao,both,identical +149470,34.75,13.75,SDN,1631.0,Gedaref,161.0,Sudan,105783.0,Wasat Al Gedaref,34.75,13.75,SDN,1631.0,Gedaref,161.0,Sudan,105783.0,Wasat Al Gedaref,both,identical +149471,35.25,13.75,SDN,1631.0,Gedaref,161.0,Sudan,105775.0,Al Galabat Al Gharbyah - Kassab,35.25,13.75,SDN,1631.0,Gedaref,161.0,Sudan,105775.0,Al Galabat Al Gharbyah - Kassab,both,identical +149472,35.75,13.75,SDN,1631.0,Gedaref,161.0,Sudan,105777.0,Al Qureisha,35.75,13.75,SDN,1631.0,Gedaref,161.0,Sudan,105777.0,Al Qureisha,both,identical +149473,36.25,13.75,SDN,1631.0,Gedaref,161.0,Sudan,105777.0,Al Qureisha,36.25,13.75,SDN,1631.0,Gedaref,161.0,Sudan,105777.0,Al Qureisha,both,identical +149474,36.75,13.75,ETH,1301.0,Tigray,124.0,Ethiopia,103134.0,Western,36.75,13.75,ETH,1301.0,Tigray,124.0,Ethiopia,103134.0,Western,both,identical +149475,37.25,13.75,ETH,1301.0,Tigray,124.0,Ethiopia,103134.0,Western,37.25,13.75,ETH,1301.0,Tigray,124.0,Ethiopia,103134.0,Western,both,identical +149476,37.75,13.75,ETH,1301.0,Tigray,124.0,Ethiopia,103131.0,North Western,37.75,13.75,ETH,1301.0,Tigray,124.0,Ethiopia,103131.0,North Western,both,identical +149477,38.25,13.75,ETH,1301.0,Tigray,124.0,Ethiopia,103131.0,North Western,38.25,13.75,ETH,1301.0,Tigray,124.0,Ethiopia,103131.0,North Western,both,identical +149478,38.75,13.75,ETH,1301.0,Tigray,124.0,Ethiopia,103128.0,Central,38.75,13.75,ETH,1301.0,Tigray,124.0,Ethiopia,103128.0,Central,both,identical +149479,39.25,13.75,ETH,1301.0,Tigray,124.0,Ethiopia,103129.0,Eastern,39.25,13.75,ETH,1301.0,Tigray,124.0,Ethiopia,103129.0,Eastern,both,identical +149480,39.75,13.75,ETH,1301.0,Tigray,124.0,Ethiopia,103129.0,Eastern,39.75,13.75,ETH,1301.0,Tigray,124.0,Ethiopia,103129.0,Eastern,both,identical +149481,40.25,13.75,ETH,1290.0,Afar,124.0,Ethiopia,103048.0,Kilbati /Zone2,40.25,13.75,ETH,1290.0,Afar,124.0,Ethiopia,103048.0,Kilbati /Zone2,both,identical +149482,40.75,13.75,ETH,1290.0,Afar,124.0,Ethiopia,103048.0,Kilbati /Zone2,40.75,13.75,ETH,1290.0,Afar,124.0,Ethiopia,103048.0,Kilbati /Zone2,both,identical +149483,41.25,13.75,ERI,1281.0,Debubawi Keih Bahri,122.0,Eritrea,102952.0,Maekel Deb.Keih Bahri,41.25,13.75,ERI,1281.0,Debubawi Keih Bahri,122.0,Eritrea,102952.0,Maekel Deb.Keih Bahri,both,identical +149484,41.75,13.75,ERI,1281.0,Debubawi Keih Bahri,122.0,Eritrea,102952.0,Maekel Deb.Keih Bahri,41.75,13.75,ERI,1281.0,Debubawi Keih Bahri,122.0,Eritrea,102952.0,Maekel Deb.Keih Bahri,both,identical +149485,42.25,13.75,ERI,1281.0,Debubawi Keih Bahri,122.0,Eritrea,102951.0,Debub Deb.Keih Bahri,42.25,13.75,ERI,1281.0,Debubawi Keih Bahri,122.0,Eritrea,102951.0,Debub Deb.Keih Bahri,both,identical +149486,42.75,13.75,YEM,3272.0,Al Hodeidah,282.0,Yemen,133688.0,Al Khawkhah,42.75,13.75,YEM,3272.0,Al Hodeidah,282.0,Yemen,133688.0,Al Khawkhah,both,identical +149487,43.25,13.75,YEM,3272.0,Al Hodeidah,282.0,Yemen,133944.0,Al Mukha,43.25,13.75,YEM,3289.0,Ta'Iz,282.0,Yemen,133944.0,Al Mukha,both,admin_reallocation +149488,43.75,13.75,YEM,3289.0,Ta'Iz,282.0,Yemen,133958.0,Maqbanah,43.75,13.75,YEM,3289.0,Ta'Iz,282.0,Yemen,133958.0,Maqbanah,both,identical +149489,44.25,13.75,YEM,3280.0,Ibb,282.0,Yemen,133960.0,Mawiyah,44.25,13.75,YEM,3289.0,Ta'Iz,282.0,Yemen,133960.0,Mawiyah,both,admin_reallocation +149490,44.75,13.75,YEM,3269.0,Ad Dali',282.0,Yemen,133653.0,Qa'Atabah,44.75,13.75,YEM,3269.0,Ad Dali',282.0,Yemen,133653.0,Qa'Atabah,both,identical +149491,45.25,13.75,YEM,3281.0,Lahj,282.0,Yemen,133642.0,Sarar,45.25,13.75,YEM,3268.0,Abyan,282.0,Yemen,133642.0,Sarar,both,admin_reallocation +149492,45.75,13.75,YEM,3268.0,Abyan,282.0,Yemen,133639.0,Lawdar,45.75,13.75,YEM,3268.0,Abyan,282.0,Yemen,133639.0,Lawdar,both,identical +149493,46.25,13.75,YEM,3268.0,Abyan,282.0,Yemen,133640.0,Mudiyah,46.25,13.75,YEM,3268.0,Abyan,282.0,Yemen,133640.0,Mudiyah,both,identical +149494,46.75,13.75,YEM,3268.0,Abyan,282.0,Yemen,133634.0,Ahwar,46.75,13.75,YEM,3268.0,Abyan,282.0,Yemen,133634.0,Ahwar,both,identical +149495,47.25,13.75,YEM,3287.0,Shabwah,282.0,Yemen,133940.0,Rudum,47.25,13.75,YEM,3287.0,Shabwah,282.0,Yemen,133940.0,Rudum,both,identical +149496,47.75,13.75,YEM,3287.0,Shabwah,282.0,Yemen,133940.0,Rudum,47.75,13.75,YEM,3287.0,Shabwah,282.0,Yemen,133940.0,Rudum,both,identical +149497,48.25,13.75,YEM,3287.0,Shabwah,282.0,Yemen,133940.0,Rudum,48.25,13.75,YEM,3287.0,Shabwah,282.0,Yemen,133940.0,Rudum,both,identical +150086,-17.25,14.25,SEN,1578.0,Thiès,155.0,Senegal,105506.0,Mbour,-17.25,14.25,SEN,1578.0,Thiès,155.0,Senegal,105506.0,Mbour,both,identical +150087,-16.75,14.25,SEN,1567.0,Fatick,155.0,Senegal,105474.0,Fatick,-16.75,14.25,SEN,1567.0,Fatick,155.0,Senegal,105474.0,Fatick,both,identical +150088,-16.25,14.25,SEN,1567.0,Fatick,155.0,Senegal,105474.0,Fatick,-16.25,14.25,SEN,1567.0,Fatick,155.0,Senegal,105474.0,Fatick,both,identical +150089,-15.75,14.25,SEN,1568.0,Kaffrine,155.0,Senegal,105478.0,Kaffrine,-15.75,14.25,SEN,1568.0,Kaffrine,155.0,Senegal,105478.0,Kaffrine,both,identical +150090,-15.25,14.25,SEN,1568.0,Kaffrine,155.0,Senegal,105480.0,Malem Hodar,-15.25,14.25,SEN,1568.0,Kaffrine,155.0,Senegal,105480.0,Malem Hodar,both,identical +150091,-14.75,14.25,SEN,1568.0,Kaffrine,155.0,Senegal,105479.0,Koungheul,-14.75,14.25,SEN,1568.0,Kaffrine,155.0,Senegal,105479.0,Koungheul,both,identical +150092,-14.25,14.25,SEN,1577.0,Tambacounda,155.0,Senegal,105504.0,Koumpentoum,-14.25,14.25,SEN,1577.0,Tambacounda,155.0,Senegal,105504.0,Koumpentoum,both,identical +150093,-13.75,14.25,SEN,1577.0,Tambacounda,155.0,Senegal,105505.0,Tambacounda,-13.75,14.25,SEN,1577.0,Tambacounda,155.0,Senegal,105505.0,Tambacounda,both,identical +150094,-13.25,14.25,SEN,1577.0,Tambacounda,155.0,Senegal,105503.0,Goudiry,-13.25,14.25,SEN,1577.0,Tambacounda,155.0,Senegal,105503.0,Goudiry,both,identical +150095,-12.75,14.25,SEN,1577.0,Tambacounda,155.0,Senegal,105503.0,Goudiry,-12.75,14.25,SEN,1577.0,Tambacounda,155.0,Senegal,105503.0,Goudiry,both,identical +150096,-12.25,14.25,SEN,1577.0,Tambacounda,155.0,Senegal,105502.0,Bakel,-12.25,14.25,SEN,1577.0,Tambacounda,155.0,Senegal,105502.0,Bakel,both,identical +150097,-11.75,14.25,MLI,1439.0,Kayes,143.0,Mali,104117.0,Kayes,-11.75,14.25,MLI,1439.0,Kayes,143.0,Mali,104117.0,Kayes,both,identical +150098,-11.25,14.25,MLI,1439.0,Kayes,143.0,Mali,104117.0,Kayes,-11.25,14.25,MLI,1439.0,Kayes,143.0,Mali,104117.0,Kayes,both,identical +150099,-10.75,14.25,MLI,1439.0,Kayes,143.0,Mali,104115.0,Bafoulabé,-10.75,14.25,MLI,1439.0,Kayes,143.0,Mali,104115.0,Bafoulabé,both,identical +150100,-10.25,14.25,MLI,1439.0,Kayes,143.0,Mali,104115.0,Bafoulabé,-10.25,14.25,MLI,1439.0,Kayes,143.0,Mali,104115.0,Bafoulabé,both,identical +150101,-9.75,14.25,MLI,1439.0,Kayes,143.0,Mali,104118.0,Kita,-9.75,14.25,MLI,1439.0,Kayes,143.0,Mali,104118.0,Kita,both,identical +150102,-9.25,14.25,MLI,1439.0,Kayes,143.0,Mali,104116.0,Diéma,-9.25,14.25,MLI,1439.0,Kayes,143.0,Mali,104116.0,Diéma,both,identical +150103,-8.75,14.25,MLI,1439.0,Kayes,143.0,Mali,104130.0,Kolokani,-8.75,14.25,MLI,1441.0,Koulikoro,143.0,Mali,104130.0,Kolokani,both,admin_reallocation +150104,-8.25,14.25,MLI,1441.0,Koulikoro,143.0,Mali,104130.0,Kolokani,-8.25,14.25,MLI,1441.0,Koulikoro,143.0,Mali,104130.0,Kolokani,both,identical +150105,-7.75,14.25,MLI,1441.0,Koulikoro,143.0,Mali,104132.0,Nara,-7.75,14.25,MLI,1441.0,Koulikoro,143.0,Mali,104132.0,Nara,both,identical +150106,-7.25,14.25,MLI,1441.0,Koulikoro,143.0,Mali,104132.0,Nara,-7.25,14.25,MLI,1441.0,Koulikoro,143.0,Mali,104132.0,Nara,both,identical +150107,-6.75,14.25,MLI,1444.0,Ségou,143.0,Mali,104153.0,Ségou,-6.75,14.25,MLI,1444.0,Ségou,143.0,Mali,104153.0,Ségou,both,identical +150108,-6.25,14.25,MLI,1444.0,Ségou,143.0,Mali,104151.0,Niono,-6.25,14.25,MLI,1444.0,Ségou,143.0,Mali,104151.0,Niono,both,identical +150109,-5.75,14.25,MLI,1444.0,Ségou,143.0,Mali,104151.0,Niono,-5.75,14.25,MLI,1444.0,Ségou,143.0,Mali,104151.0,Niono,both,identical +150110,-5.25,14.25,MLI,1442.0,Mopti,143.0,Mali,104139.0,Ténenkou,-5.25,14.25,MLI,1442.0,Mopti,143.0,Mali,104139.0,Ténenkou,both,identical +150111,-4.75,14.25,MLI,1442.0,Mopti,143.0,Mali,104135.0,Djenné,-4.75,14.25,MLI,1442.0,Mopti,143.0,Mali,104135.0,Djenné,both,identical +150112,-4.25,14.25,MLI,1442.0,Mopti,143.0,Mali,104138.0,Mopti,-4.25,14.25,MLI,1442.0,Mopti,143.0,Mali,104138.0,Mopti,both,identical +150113,-3.75,14.25,MLI,1442.0,Mopti,143.0,Mali,104133.0,Bandiagara,-3.75,14.25,MLI,1442.0,Mopti,143.0,Mali,104133.0,Bandiagara,both,identical +150114,-3.25,14.25,MLI,1442.0,Mopti,143.0,Mali,104137.0,Koro,-3.25,14.25,MLI,1442.0,Mopti,143.0,Mali,104137.0,Koro,both,identical +150115,-2.75,14.25,MLI,1442.0,Mopti,143.0,Mali,104137.0,Koro,-2.75,14.25,MLI,1442.0,Mopti,143.0,Mali,104137.0,Koro,both,identical +150116,-2.25,14.25,MLI,1442.0,Mopti,143.0,Mali,104137.0,Koro,-2.25,14.25,MLI,1442.0,Mopti,143.0,Mali,104137.0,Koro,both,identical +150117,-1.75,14.25,BFA,1112.0,Sahel,108.0,Burkina Faso,101858.0,Soum,-1.75,14.25,BFA,1112.0,Sahel,108.0,Burkina Faso,101858.0,Soum,both,identical +150118,-1.25,14.25,BFA,1112.0,Sahel,108.0,Burkina Faso,101858.0,Soum,-1.25,14.25,BFA,1112.0,Sahel,108.0,Burkina Faso,101858.0,Soum,both,identical +150119,-0.75,14.25,BFA,1112.0,Sahel,108.0,Burkina Faso,101858.0,Soum,-0.75,14.25,BFA,1112.0,Sahel,108.0,Burkina Faso,101858.0,Soum,both,identical +150120,-0.25,14.25,BFA,1112.0,Sahel,108.0,Burkina Faso,101857.0,Oudalan,-0.25,14.25,BFA,1112.0,Sahel,108.0,Burkina Faso,101857.0,Oudalan,both,identical +150121,0.25,14.25,BFA,1112.0,Sahel,108.0,Burkina Faso,101859.0,Séno,0.25,14.25,BFA,1112.0,Sahel,108.0,Burkina Faso,101859.0,Séno,both,identical +150122,0.75,14.25,NER,1515.0,Tillabéri,150.0,Niger,104620.0,Téra,0.75,14.25,NER,1515.0,Tillabéri,150.0,Niger,104620.0,Téra,both,identical +150123,1.25,14.25,NER,1515.0,Tillabéri,150.0,Niger,104618.0,Tillabéri,1.25,14.25,NER,1515.0,Tillabéri,150.0,Niger,104618.0,Tillabéri,both,identical +150124,1.75,14.25,NER,1515.0,Tillabéri,150.0,Niger,104616.0,Ouallam,1.75,14.25,NER,1515.0,Tillabéri,150.0,Niger,104616.0,Ouallam,both,identical +150125,2.25,14.25,NER,1515.0,Tillabéri,150.0,Niger,104616.0,Ouallam,2.25,14.25,NER,1515.0,Tillabéri,150.0,Niger,104616.0,Ouallam,both,identical +150126,2.75,14.25,NER,1515.0,Tillabéri,150.0,Niger,104613.0,Filingué,2.75,14.25,NER,1515.0,Tillabéri,150.0,Niger,104613.0,Filingué,both,identical +150127,3.25,14.25,NER,1515.0,Tillabéri,150.0,Niger,104613.0,Filingué,3.25,14.25,NER,1515.0,Tillabéri,150.0,Niger,104613.0,Filingué,both,identical +150128,3.75,14.25,NER,1515.0,Tillabéri,150.0,Niger,104613.0,Filingué,3.75,14.25,NER,1515.0,Tillabéri,150.0,Niger,104613.0,Filingué,both,identical +150129,4.25,14.25,NER,1512.0,Dosso,150.0,Niger,104582.0,Dogondoutchi,4.25,14.25,NER,1512.0,Dosso,150.0,Niger,104582.0,Dogondoutchi,both,identical +150130,4.75,14.25,NER,1514.0,Tahoua,150.0,Niger,104597.0,Bagaroua,4.75,14.25,NER,1514.0,Tahoua,150.0,Niger,104597.0,Bagaroua,both,identical +150131,5.25,14.25,NER,1514.0,Tahoua,150.0,Niger,104600.0,Illéla,5.25,14.25,NER,1514.0,Tahoua,150.0,Niger,104600.0,Illéla,both,identical +150132,5.75,14.25,NER,1514.0,Tahoua,150.0,Niger,104599.0,Bouza,5.75,14.25,NER,1514.0,Tahoua,150.0,Niger,104599.0,Bouza,both,identical +150133,6.25,14.25,NER,1514.0,Tahoua,150.0,Niger,104602.0,Madaoua,6.25,14.25,NER,1514.0,Tahoua,150.0,Niger,104602.0,Madaoua,both,identical +150134,6.75,14.25,NER,1513.0,Maradi,150.0,Niger,104590.0,Dakoro,6.75,14.25,NER,1513.0,Maradi,150.0,Niger,104590.0,Dakoro,both,identical +150135,7.25,14.25,NER,1513.0,Maradi,150.0,Niger,104594.0,Mayahi,7.25,14.25,NER,1513.0,Maradi,150.0,Niger,104594.0,Mayahi,both,identical +150136,7.75,14.25,NER,1513.0,Maradi,150.0,Niger,104594.0,Mayahi,7.75,14.25,NER,1513.0,Maradi,150.0,Niger,104594.0,Mayahi,both,identical +150137,8.25,14.25,NER,1513.0,Maradi,150.0,Niger,104595.0,Tessaoua,8.25,14.25,NER,1513.0,Maradi,150.0,Niger,104595.0,Tessaoua,both,identical +150138,8.75,14.25,NER,1516.0,Zinder,150.0,Niger,104629.0,Tanout,8.75,14.25,NER,1516.0,Zinder,150.0,Niger,104629.0,Tanout,both,identical +150139,9.25,14.25,NER,1516.0,Zinder,150.0,Niger,104622.0,Damagaram Takaya,9.25,14.25,NER,1516.0,Zinder,150.0,Niger,104622.0,Damagaram Takaya,both,identical +150140,9.75,14.25,NER,1516.0,Zinder,150.0,Niger,104622.0,Damagaram Takaya,9.75,14.25,NER,1516.0,Zinder,150.0,Niger,104622.0,Damagaram Takaya,both,identical +150141,10.25,14.25,NER,1516.0,Zinder,150.0,Niger,104624.0,Gouré,10.25,14.25,NER,1516.0,Zinder,150.0,Niger,104624.0,Gouré,both,identical +150142,10.75,14.25,NER,1516.0,Zinder,150.0,Niger,104624.0,Gouré,10.75,14.25,NER,1516.0,Zinder,150.0,Niger,104624.0,Gouré,both,identical +150143,11.25,14.25,NER,1516.0,Zinder,150.0,Niger,104630.0,Tesker,11.25,14.25,NER,1516.0,Zinder,150.0,Niger,104630.0,Tesker,both,identical +150144,11.75,14.25,NER,1511.0,Diffa,150.0,Niger,104577.0,Maïné-Soroa,11.75,14.25,NER,1511.0,Diffa,150.0,Niger,104577.0,Maïné-Soroa,both,identical +150145,12.25,14.25,NER,1511.0,Diffa,150.0,Niger,104579.0,N'Guigmi,12.25,14.25,NER,1511.0,Diffa,150.0,Niger,104579.0,N'Guigmi,both,identical +150146,12.75,14.25,NER,1511.0,Diffa,150.0,Niger,104579.0,N'Guigmi,12.75,14.25,NER,1511.0,Diffa,150.0,Niger,104579.0,N'Guigmi,both,identical +150147,13.25,14.25,NER,1511.0,Diffa,150.0,Niger,104579.0,N'Guigmi,13.25,14.25,NER,1511.0,Diffa,150.0,Niger,104579.0,N'Guigmi,both,identical +150148,13.75,14.25,TCD,1169.0,Lac,114.0,Chad,102107.0,Fouli,13.75,14.25,TCD,1169.0,Lac,114.0,Chad,102107.0,Fouli,both,identical +150149,14.25,14.25,TCD,1168.0,Kanem,114.0,Chad,102105.0,Nord Kanem,14.25,14.25,TCD,1168.0,Kanem,114.0,Chad,102105.0,Nord Kanem,both,identical +150150,14.75,14.25,TCD,1168.0,Kanem,114.0,Chad,102105.0,Nord Kanem,14.75,14.25,TCD,1168.0,Kanem,114.0,Chad,102105.0,Nord Kanem,both,identical +150151,15.25,14.25,TCD,1168.0,Kanem,114.0,Chad,102104.0,Kanem,15.25,14.25,TCD,1168.0,Kanem,114.0,Chad,102104.0,Kanem,both,identical +150152,15.75,14.25,TCD,1168.0,Kanem,114.0,Chad,102104.0,Kanem,15.75,14.25,TCD,1168.0,Kanem,114.0,Chad,102104.0,Kanem,both,identical +150153,16.25,14.25,TCD,1159.0,Barh-El-Gazel,114.0,Chad,102082.0,Barh-El-Gazel Nord,16.25,14.25,TCD,1159.0,Barh-El-Gazel,114.0,Chad,102082.0,Barh-El-Gazel Nord,both,identical +150154,16.75,14.25,TCD,1159.0,Barh-El-Gazel,114.0,Chad,102082.0,Barh-El-Gazel Nord,16.75,14.25,TCD,1159.0,Barh-El-Gazel,114.0,Chad,102082.0,Barh-El-Gazel Nord,both,identical +150155,17.25,14.25,TCD,1159.0,Barh-El-Gazel,114.0,Chad,102082.0,Barh-El-Gazel Nord,17.25,14.25,TCD,1159.0,Barh-El-Gazel,114.0,Chad,102082.0,Barh-El-Gazel Nord,both,identical +150156,17.75,14.25,TCD,1160.0,Batha,114.0,Chad,102086.0,Batha Ouest,17.75,14.25,TCD,1160.0,Batha,114.0,Chad,102086.0,Batha Ouest,both,identical +150157,18.25,14.25,TCD,1160.0,Batha,114.0,Chad,102086.0,Batha Ouest,18.25,14.25,TCD,1160.0,Batha,114.0,Chad,102086.0,Batha Ouest,both,identical +150158,18.75,14.25,TCD,1160.0,Batha,114.0,Chad,102086.0,Batha Ouest,18.75,14.25,TCD,1160.0,Batha,114.0,Chad,102086.0,Batha Ouest,both,identical +150159,19.25,14.25,TCD,1160.0,Batha,114.0,Chad,102085.0,Batha Est,19.25,14.25,TCD,1160.0,Batha,114.0,Chad,102085.0,Batha Est,both,identical +150160,19.75,14.25,TCD,1160.0,Batha,114.0,Chad,102085.0,Batha Est,19.75,14.25,TCD,1160.0,Batha,114.0,Chad,102085.0,Batha Est,both,identical +150161,20.25,14.25,TCD,1177.0,Ouaddaï,114.0,Chad,102137.0,Ouara,20.25,14.25,TCD,1177.0,Ouaddaï,114.0,Chad,102137.0,Ouara,both,identical +150162,20.75,14.25,TCD,1177.0,Ouaddaï,114.0,Chad,102137.0,Ouara,20.75,14.25,TCD,1177.0,Ouaddaï,114.0,Chad,102137.0,Ouara,both,identical +150163,21.25,14.25,TCD,1182.0,Wadi Fira,114.0,Chad,102148.0,Biltine,21.25,14.25,TCD,1182.0,Wadi Fira,114.0,Chad,102148.0,Biltine,both,identical +150164,21.75,14.25,TCD,1182.0,Wadi Fira,114.0,Chad,102149.0,Dar-Tama,21.75,14.25,TCD,1182.0,Wadi Fira,114.0,Chad,102149.0,Dar-Tama,both,identical +150165,22.25,14.25,TCD,1182.0,Wadi Fira,114.0,Chad,102149.0,Dar-Tama,22.25,14.25,TCD,1182.0,Wadi Fira,114.0,Chad,102149.0,Dar-Tama,both,identical +150166,22.75,14.25,SDN,1642.0,West Darfur,161.0,Sudan,105900.0,Jebel Moon,22.75,14.25,SDN,1642.0,West Darfur,161.0,Sudan,105900.0,Jebel Moon,both,identical +150167,23.25,14.25,SDN,1634.0,North Darfur,161.0,Sudan,105806.0,As Serief,23.25,14.25,SDN,1634.0,North Darfur,161.0,Sudan,105806.0,As Serief,both,identical +150168,23.75,14.25,SDN,1634.0,North Darfur,161.0,Sudan,105817.0,Um Baru,23.75,14.25,SDN,1634.0,North Darfur,161.0,Sudan,105817.0,Um Baru,both,identical +150169,24.25,14.25,SDN,1634.0,North Darfur,161.0,Sudan,105813.0,Kutum,24.25,14.25,SDN,1634.0,North Darfur,161.0,Sudan,105813.0,Kutum,both,identical +150170,24.75,14.25,SDN,1634.0,North Darfur,161.0,Sudan,105813.0,Kutum,24.75,14.25,SDN,1634.0,North Darfur,161.0,Sudan,105813.0,Kutum,both,identical +150171,25.25,14.25,SDN,1634.0,North Darfur,161.0,Sudan,105814.0,Melit,25.25,14.25,SDN,1634.0,North Darfur,161.0,Sudan,105814.0,Melit,both,identical +150172,25.75,14.25,SDN,1634.0,North Darfur,161.0,Sudan,105814.0,Melit,25.75,14.25,SDN,1634.0,North Darfur,161.0,Sudan,105814.0,Melit,both,identical +150173,26.25,14.25,SDN,1634.0,North Darfur,161.0,Sudan,105814.0,Melit,26.25,14.25,SDN,1634.0,North Darfur,161.0,Sudan,105814.0,Melit,both,identical +150174,26.75,14.25,SDN,1634.0,North Darfur,161.0,Sudan,105814.0,Melit,26.75,14.25,SDN,1634.0,North Darfur,161.0,Sudan,105814.0,Melit,both,identical +150175,27.25,14.25,SDN,1634.0,North Darfur,161.0,Sudan,105814.0,Melit,27.25,14.25,SDN,1634.0,North Darfur,161.0,Sudan,105814.0,Melit,both,identical +150176,27.75,14.25,SDN,1635.0,North Kordofan,161.0,Sudan,105824.0,Soudari,27.75,14.25,SDN,1635.0,North Kordofan,161.0,Sudan,105824.0,Soudari,both,identical +150177,28.25,14.25,SDN,1635.0,North Kordofan,161.0,Sudan,105824.0,Soudari,28.25,14.25,SDN,1635.0,North Kordofan,161.0,Sudan,105824.0,Soudari,both,identical +150178,28.75,14.25,SDN,1635.0,North Kordofan,161.0,Sudan,105824.0,Soudari,28.75,14.25,SDN,1635.0,North Kordofan,161.0,Sudan,105824.0,Soudari,both,identical +150179,29.25,14.25,SDN,1635.0,North Kordofan,161.0,Sudan,105824.0,Soudari,29.25,14.25,SDN,1635.0,North Kordofan,161.0,Sudan,105824.0,Soudari,both,identical +150180,29.75,14.25,SDN,1635.0,North Kordofan,161.0,Sudan,105822.0,Gharb Bara,29.75,14.25,SDN,1635.0,North Kordofan,161.0,Sudan,105822.0,Gharb Bara,both,identical +150181,30.25,14.25,SDN,1635.0,North Kordofan,161.0,Sudan,105822.0,Gharb Bara,30.25,14.25,SDN,1635.0,North Kordofan,161.0,Sudan,105822.0,Gharb Bara,both,identical +150182,30.75,14.25,SDN,1635.0,North Kordofan,161.0,Sudan,105820.0,Bara,30.75,14.25,SDN,1635.0,North Kordofan,161.0,Sudan,105820.0,Bara,both,identical +150183,31.25,14.25,SDN,1635.0,North Kordofan,161.0,Sudan,105820.0,Bara,31.25,14.25,SDN,1635.0,North Kordofan,161.0,Sudan,105820.0,Bara,both,identical +150184,31.75,14.25,SDN,1644.0,White Nile,161.0,Sudan,105918.0,Ad Diwaim,31.75,14.25,SDN,1644.0,White Nile,161.0,Sudan,105918.0,Ad Diwaim,both,identical +150185,32.25,14.25,SDN,1644.0,White Nile,161.0,Sudan,105920.0,Al Gitaina,32.25,14.25,SDN,1644.0,White Nile,161.0,Sudan,105920.0,Al Gitaina,both,identical +150186,32.75,14.25,SDN,1627.0,Aj Jazirah,161.0,Sudan,105742.0,Al Qurashi,32.75,14.25,SDN,1627.0,Aj Jazirah,161.0,Sudan,105742.0,Al Qurashi,both,identical +150187,33.25,14.25,SDN,1627.0,Aj Jazirah,161.0,Sudan,105743.0,Janub Al Jazirah,33.25,14.25,SDN,1627.0,Aj Jazirah,161.0,Sudan,105743.0,Janub Al Jazirah,both,identical +150188,33.75,14.25,SDN,1627.0,Aj Jazirah,161.0,Sudan,105746.0,Um Algura,33.75,14.25,SDN,1627.0,Aj Jazirah,161.0,Sudan,105746.0,Um Algura,both,identical +150189,34.25,14.25,SDN,1631.0,Gedaref,161.0,Sudan,105773.0,Al Fao,34.25,14.25,SDN,1631.0,Gedaref,161.0,Sudan,105773.0,Al Fao,both,identical +150190,34.75,14.25,SDN,1631.0,Gedaref,161.0,Sudan,105783.0,Wasat Al Gedaref,34.75,14.25,SDN,1631.0,Gedaref,161.0,Sudan,105783.0,Wasat Al Gedaref,both,identical +150191,35.25,14.25,SDN,1631.0,Gedaref,161.0,Sudan,105783.0,Wasat Al Gedaref,35.25,14.25,SDN,1631.0,Gedaref,161.0,Sudan,105783.0,Wasat Al Gedaref,both,identical +150192,35.75,14.25,SDN,1631.0,Gedaref,161.0,Sudan,105774.0,Al Fashaga,35.75,14.25,SDN,1631.0,Gedaref,161.0,Sudan,105774.0,Al Fashaga,both,identical +150193,36.25,14.25,SDN,1632.0,Kassala,161.0,Sudan,105794.0,Reifi Wad Elhilaiw,36.25,14.25,SDN,1632.0,Kassala,161.0,Sudan,105794.0,Reifi Wad Elhilaiw,both,identical +150194,36.75,14.25,ETH,1301.0,Tigray,124.0,Ethiopia,103134.0,Western,36.75,14.25,ETH,1301.0,Tigray,124.0,Ethiopia,103134.0,Western,both,identical +150195,37.25,14.25,ETH,1301.0,Tigray,124.0,Ethiopia,103134.0,Western,37.25,14.25,ETH,1301.0,Tigray,124.0,Ethiopia,103134.0,Western,both,identical +150196,37.75,14.25,ETH,1301.0,Tigray,124.0,Ethiopia,103131.0,North Western,37.75,14.25,ETH,1301.0,Tigray,124.0,Ethiopia,103131.0,North Western,both,identical +150197,38.25,14.25,ETH,1301.0,Tigray,124.0,Ethiopia,103131.0,North Western,38.25,14.25,ETH,1301.0,Tigray,124.0,Ethiopia,103131.0,North Western,both,identical +150198,38.75,14.25,ETH,1301.0,Tigray,124.0,Ethiopia,103128.0,Central,38.75,14.25,ETH,1301.0,Tigray,124.0,Ethiopia,103128.0,Central,both,identical +150199,39.25,14.25,ETH,1301.0,Tigray,124.0,Ethiopia,103128.0,Central,39.25,14.25,ETH,1301.0,Tigray,124.0,Ethiopia,103128.0,Central,both,identical +150200,39.75,14.25,ETH,1301.0,Tigray,124.0,Ethiopia,103129.0,Eastern,39.75,14.25,ETH,1301.0,Tigray,124.0,Ethiopia,103129.0,Eastern,both,identical +150201,40.25,14.25,ETH,1290.0,Afar,124.0,Ethiopia,103048.0,Kilbati /Zone2,40.25,14.25,ETH,1290.0,Afar,124.0,Ethiopia,103048.0,Kilbati /Zone2,both,identical +150202,40.75,14.25,ERI,1281.0,Debubawi Keih Bahri,122.0,Eritrea,102949.0,Araeta,40.75,14.25,ERI,1281.0,Debubawi Keih Bahri,122.0,Eritrea,102949.0,Araeta,both,identical +150203,41.25,14.25,ERI,1281.0,Debubawi Keih Bahri,122.0,Eritrea,102949.0,Araeta,41.25,14.25,ERI,1281.0,Debubawi Keih Bahri,122.0,Eritrea,102949.0,Araeta,both,identical +150204,41.75,14.25,ERI,1281.0,Debubawi Keih Bahri,122.0,Eritrea,102952.0,Maekel Deb.Keih Bahri,41.75,14.25,ERI,1281.0,Debubawi Keih Bahri,122.0,Eritrea,102952.0,Maekel Deb.Keih Bahri,both,identical +150206,42.75,14.25,YEM,3272.0,Al Hodeidah,282.0,Yemen,133688.0,Al Khawkhah,42.75,14.25,YEM,3272.0,Al Hodeidah,282.0,Yemen,133688.0,Al Khawkhah,both,identical +150207,43.25,14.25,YEM,3272.0,Al Hodeidah,282.0,Yemen,133702.0,Bayt Al Faqiah,43.25,14.25,YEM,3272.0,Al Hodeidah,282.0,Yemen,133702.0,Bayt Al Faqiah,both,identical +150208,43.75,14.25,YEM,3277.0,Dhamar,282.0,Yemen,133769.0,Wusab As Safil,43.75,14.25,YEM,3277.0,Dhamar,282.0,Yemen,133769.0,Wusab As Safil,both,identical +150209,44.25,14.25,YEM,3280.0,Ibb,282.0,Yemen,133848.0,Yarim,44.25,14.25,YEM,3280.0,Ibb,282.0,Yemen,133848.0,Yarim,both,identical +150210,44.75,14.25,YEM,3271.0,Al Bayda,282.0,Yemen,133652.0,Juban,44.75,14.25,YEM,3269.0,Ad Dali',282.0,Yemen,133652.0,Juban,both,admin_reallocation +150211,45.25,14.25,YEM,3271.0,Al Bayda,282.0,Yemen,133670.0,Ash Sharyah,45.25,14.25,YEM,3271.0,Al Bayda,282.0,Yemen,133670.0,Ash Sharyah,both,identical +150212,45.75,14.25,YEM,3271.0,Al Bayda,282.0,Yemen,133669.0,As Sawma'Ah,45.75,14.25,YEM,3271.0,Al Bayda,282.0,Yemen,133669.0,As Sawma'Ah,both,identical +150213,46.25,14.25,YEM,3287.0,Shabwah,282.0,Yemen,133939.0,Nisab,46.25,14.25,YEM,3287.0,Shabwah,282.0,Yemen,133939.0,Nisab,both,identical +150214,46.75,14.25,YEM,3287.0,Shabwah,282.0,Yemen,133635.0,Al Mahfad,46.75,14.25,YEM,3268.0,Abyan,282.0,Yemen,133635.0,Al Mahfad,both,admin_reallocation +150215,47.25,14.25,YEM,3287.0,Shabwah,282.0,Yemen,133933.0,Habban,47.25,14.25,YEM,3287.0,Shabwah,282.0,Yemen,133933.0,Habban,both,identical +150216,47.75,14.25,YEM,3287.0,Shabwah,282.0,Yemen,133936.0,Mayfa'A,47.75,14.25,YEM,3287.0,Shabwah,282.0,Yemen,133936.0,Mayfa'A,both,identical +150217,48.25,14.25,YEM,3287.0,Shabwah,282.0,Yemen,133940.0,Rudum,48.25,14.25,YEM,3287.0,Shabwah,282.0,Yemen,133940.0,Rudum,both,identical +150218,48.75,14.25,YEM,3278.0,Hadramawt,282.0,Yemen,133781.0,Brom Mayfa,48.75,14.25,YEM,3278.0,Hadramawt,282.0,Yemen,133781.0,Brom Mayfa,both,identical +150219,49.25,14.25,YEM,3278.0,Hadramawt,282.0,Yemen,133774.0,Al Mukalla City,49.25,14.25,YEM,3278.0,Hadramawt,282.0,Yemen,133774.0,Al Mukalla City,both,identical +150791,-24.75,14.75,CPV,1134.0,Brava,111.0,Cabo Verde,101986.0,Brava,-24.75,14.75,CPV,1134.0,Brava,111.0,Cabo Verde,101986.0,Brava,both,identical +150792,-24.25,14.75,CPV,1135.0,Fogo,111.0,Cabo Verde,101989.0,Sao Filipe,-24.25,14.75,CPV,1135.0,Fogo,111.0,Cabo Verde,101989.0,Sao Filipe,both,identical +150793,-23.75,14.75,CPV,1138.0,Santiago,111.0,Cabo Verde,101993.0,Ribeira Grande De Santiago,-23.75,14.75,CPV,1138.0,Santiago,111.0,Cabo Verde,101993.0,Ribeira Grande De Santiago,both,identical +150794,-23.25,14.75,CPV,1138.0,Santiago,111.0,Cabo Verde,101992.0,Praia,-23.25,14.75,CPV,1138.0,Santiago,111.0,Cabo Verde,101992.0,Praia,both,identical +150805,-17.75,14.75,SEN,1565.0,Dakar,155.0,Senegal,105466.0,Dakar,-17.75,14.75,SEN,1565.0,Dakar,155.0,Senegal,105466.0,Dakar,both,identical +150806,-17.25,14.75,SEN,1578.0,Thiès,155.0,Senegal,105470.0,Rufisque,-17.25,14.75,SEN,1565.0,Dakar,155.0,Senegal,105470.0,Rufisque,both,admin_reallocation +150807,-16.75,14.75,SEN,1578.0,Thiès,155.0,Senegal,105507.0,Thiès,-16.75,14.75,SEN,1578.0,Thiès,155.0,Senegal,105507.0,Thiès,both,identical +150808,-16.25,14.75,SEN,1566.0,Diourbel,155.0,Senegal,105472.0,Diourbel,-16.25,14.75,SEN,1566.0,Diourbel,155.0,Senegal,105472.0,Diourbel,both,identical +150809,-15.75,14.75,SEN,1566.0,Diourbel,155.0,Senegal,105473.0,Mbacké,-15.75,14.75,SEN,1566.0,Diourbel,155.0,Senegal,105473.0,Mbacké,both,identical +150810,-15.25,14.75,SEN,1572.0,Louga,155.0,Senegal,105491.0,Linguère,-15.25,14.75,SEN,1572.0,Louga,155.0,Senegal,105491.0,Linguère,both,identical +150811,-14.75,14.75,SEN,1573.0,Matam,155.0,Senegal,105495.0,Ranérou,-14.75,14.75,SEN,1573.0,Matam,155.0,Senegal,105495.0,Ranérou,both,identical +150812,-14.25,14.75,SEN,1573.0,Matam,155.0,Senegal,105495.0,Ranérou,-14.25,14.75,SEN,1573.0,Matam,155.0,Senegal,105495.0,Ranérou,both,identical +150813,-13.75,14.75,SEN,1573.0,Matam,155.0,Senegal,105495.0,Ranérou,-13.75,14.75,SEN,1573.0,Matam,155.0,Senegal,105495.0,Ranérou,both,identical +150814,-13.25,14.75,SEN,1573.0,Matam,155.0,Senegal,105493.0,Kanel,-13.25,14.75,SEN,1573.0,Matam,155.0,Senegal,105493.0,Kanel,both,identical +150815,-12.75,14.75,SEN,1573.0,Matam,155.0,Senegal,105493.0,Kanel,-12.75,14.75,SEN,1573.0,Matam,155.0,Senegal,105493.0,Kanel,both,identical +150816,-12.25,14.75,SEN,1577.0,Tambacounda,155.0,Senegal,105502.0,Bakel,-12.25,14.75,SEN,1577.0,Tambacounda,155.0,Senegal,105502.0,Bakel,both,identical +150817,-11.75,14.75,MLI,1439.0,Kayes,143.0,Mali,104117.0,Kayes,-11.75,14.75,MLI,1439.0,Kayes,143.0,Mali,104117.0,Kayes,both,identical +150818,-11.25,14.75,MLI,1439.0,Kayes,143.0,Mali,104117.0,Kayes,-11.25,14.75,MLI,1439.0,Kayes,143.0,Mali,104117.0,Kayes,both,identical +150819,-10.75,14.75,MLI,1439.0,Kayes,143.0,Mali,104121.0,Yélimané,-10.75,14.75,MLI,1439.0,Kayes,143.0,Mali,104121.0,Yélimané,both,identical +150820,-10.25,14.75,MLI,1439.0,Kayes,143.0,Mali,104120.0,Nioro,-10.25,14.75,MLI,1439.0,Kayes,143.0,Mali,104120.0,Nioro,both,identical +150821,-9.75,14.75,MLI,1439.0,Kayes,143.0,Mali,104120.0,Nioro,-9.75,14.75,MLI,1439.0,Kayes,143.0,Mali,104120.0,Nioro,both,identical +150822,-9.25,14.75,MLI,1439.0,Kayes,143.0,Mali,104116.0,Diéma,-9.25,14.75,MLI,1439.0,Kayes,143.0,Mali,104116.0,Diéma,both,identical +150823,-8.75,14.75,MLI,1439.0,Kayes,143.0,Mali,104116.0,Diéma,-8.75,14.75,MLI,1439.0,Kayes,143.0,Mali,104116.0,Diéma,both,identical +150824,-8.25,14.75,MLI,1441.0,Koulikoro,143.0,Mali,104132.0,Nara,-8.25,14.75,MLI,1441.0,Koulikoro,143.0,Mali,104132.0,Nara,both,identical +150825,-7.75,14.75,MLI,1441.0,Koulikoro,143.0,Mali,104132.0,Nara,-7.75,14.75,MLI,1441.0,Koulikoro,143.0,Mali,104132.0,Nara,both,identical +150826,-7.25,14.75,MLI,1441.0,Koulikoro,143.0,Mali,104132.0,Nara,-7.25,14.75,MLI,1441.0,Koulikoro,143.0,Mali,104132.0,Nara,both,identical +150827,-6.75,14.75,MLI,1441.0,Koulikoro,143.0,Mali,104132.0,Nara,-6.75,14.75,MLI,1441.0,Koulikoro,143.0,Mali,104132.0,Nara,both,identical +150828,-6.25,14.75,MLI,1444.0,Ségou,143.0,Mali,104151.0,Niono,-6.25,14.75,MLI,1444.0,Ségou,143.0,Mali,104151.0,Niono,both,identical +150829,-5.75,14.75,MLI,1444.0,Ségou,143.0,Mali,104151.0,Niono,-5.75,14.75,MLI,1444.0,Ségou,143.0,Mali,104151.0,Niono,both,identical +150830,-5.25,14.75,MLI,1442.0,Mopti,143.0,Mali,104139.0,Ténenkou,-5.25,14.75,MLI,1442.0,Mopti,143.0,Mali,104139.0,Ténenkou,both,identical +150831,-4.75,14.75,MLI,1442.0,Mopti,143.0,Mali,104139.0,Ténenkou,-4.75,14.75,MLI,1442.0,Mopti,143.0,Mali,104139.0,Ténenkou,both,identical +150832,-4.25,14.75,MLI,1442.0,Mopti,143.0,Mali,104138.0,Mopti,-4.25,14.75,MLI,1442.0,Mopti,143.0,Mali,104138.0,Mopti,both,identical +150833,-3.75,14.75,MLI,1442.0,Mopti,143.0,Mali,104133.0,Bandiagara,-3.75,14.75,MLI,1442.0,Mopti,143.0,Mali,104133.0,Bandiagara,both,identical +150834,-3.25,14.75,MLI,1442.0,Mopti,143.0,Mali,104133.0,Bandiagara,-3.25,14.75,MLI,1442.0,Mopti,143.0,Mali,104133.0,Bandiagara,both,identical +150835,-2.75,14.75,MLI,1442.0,Mopti,143.0,Mali,104137.0,Koro,-2.75,14.75,MLI,1442.0,Mopti,143.0,Mali,104137.0,Koro,both,identical +150836,-2.25,14.75,MLI,1442.0,Mopti,143.0,Mali,104136.0,Douentza,-2.25,14.75,MLI,1442.0,Mopti,143.0,Mali,104136.0,Douentza,both,identical +150837,-1.75,14.75,MLI,1442.0,Mopti,143.0,Mali,104136.0,Douentza,-1.75,14.75,MLI,1442.0,Mopti,143.0,Mali,104136.0,Douentza,both,identical +150838,-1.25,14.75,MLI,1442.0,Mopti,143.0,Mali,104136.0,Douentza,-1.25,14.75,MLI,1442.0,Mopti,143.0,Mali,104136.0,Douentza,both,identical +150839,-0.75,14.75,BFA,1112.0,Sahel,108.0,Burkina Faso,101857.0,Oudalan,-0.75,14.75,BFA,1112.0,Sahel,108.0,Burkina Faso,101857.0,Oudalan,both,identical +150840,-0.25,14.75,BFA,1112.0,Sahel,108.0,Burkina Faso,101857.0,Oudalan,-0.25,14.75,BFA,1112.0,Sahel,108.0,Burkina Faso,101857.0,Oudalan,both,identical +150841,0.25,14.75,NER,1515.0,Tillabéri,150.0,Niger,104620.0,Téra,0.25,14.75,NER,1515.0,Tillabéri,150.0,Niger,104620.0,Téra,both,identical +150842,0.75,14.75,NER,1515.0,Tillabéri,150.0,Niger,104620.0,Téra,0.75,14.75,NER,1515.0,Tillabéri,150.0,Niger,104620.0,Téra,both,identical +150843,1.25,14.75,NER,1515.0,Tillabéri,150.0,Niger,104618.0,Tillabéri,1.25,14.75,NER,1515.0,Tillabéri,150.0,Niger,104618.0,Tillabéri,both,identical +150844,1.75,14.75,NER,1515.0,Tillabéri,150.0,Niger,104616.0,Ouallam,1.75,14.75,NER,1515.0,Tillabéri,150.0,Niger,104616.0,Ouallam,both,identical +150845,2.25,14.75,NER,1515.0,Tillabéri,150.0,Niger,104616.0,Ouallam,2.25,14.75,NER,1515.0,Tillabéri,150.0,Niger,104616.0,Ouallam,both,identical +150846,2.75,14.75,NER,1515.0,Tillabéri,150.0,Niger,104616.0,Ouallam,2.75,14.75,NER,1515.0,Tillabéri,150.0,Niger,104616.0,Ouallam,both,identical +150847,3.25,14.75,NER,1515.0,Tillabéri,150.0,Niger,104608.0,Abala,3.25,14.75,NER,1515.0,Tillabéri,150.0,Niger,104608.0,Abala,both,identical +150848,3.75,14.75,NER,1515.0,Tillabéri,150.0,Niger,104608.0,Abala,3.75,14.75,NER,1515.0,Tillabéri,150.0,Niger,104608.0,Abala,both,identical +150849,4.25,14.75,NER,1514.0,Tahoua,150.0,Niger,104604.0,Tahoua,4.25,14.75,NER,1514.0,Tahoua,150.0,Niger,104604.0,Tahoua,both,identical +150850,4.75,14.75,NER,1514.0,Tahoua,150.0,Niger,104604.0,Tahoua,4.75,14.75,NER,1514.0,Tahoua,150.0,Niger,104604.0,Tahoua,both,identical +150851,5.25,14.75,NER,1514.0,Tahoua,150.0,Niger,104604.0,Tahoua,5.25,14.75,NER,1514.0,Tahoua,150.0,Niger,104604.0,Tahoua,both,identical +150852,5.75,14.75,NER,1514.0,Tahoua,150.0,Niger,104601.0,Kéita,5.75,14.75,NER,1514.0,Tahoua,150.0,Niger,104601.0,Kéita,both,identical +150853,6.25,14.75,NER,1514.0,Tahoua,150.0,Niger,104596.0,Abalak,6.25,14.75,NER,1514.0,Tahoua,150.0,Niger,104596.0,Abalak,both,identical +150854,6.75,14.75,NER,1513.0,Maradi,150.0,Niger,104589.0,Bermo,6.75,14.75,NER,1513.0,Maradi,150.0,Niger,104589.0,Bermo,both,identical +150855,7.25,14.75,NER,1513.0,Maradi,150.0,Niger,104590.0,Dakoro,7.25,14.75,NER,1513.0,Maradi,150.0,Niger,104590.0,Dakoro,both,identical +150856,7.75,14.75,NER,1516.0,Zinder,150.0,Niger,104621.0,Belbédji,7.75,14.75,NER,1516.0,Zinder,150.0,Niger,104621.0,Belbédji,both,identical +150857,8.25,14.75,NER,1516.0,Zinder,150.0,Niger,104629.0,Tanout,8.25,14.75,NER,1516.0,Zinder,150.0,Niger,104629.0,Tanout,both,identical +150858,8.75,14.75,NER,1516.0,Zinder,150.0,Niger,104629.0,Tanout,8.75,14.75,NER,1516.0,Zinder,150.0,Niger,104629.0,Tanout,both,identical +150859,9.25,14.75,NER,1516.0,Zinder,150.0,Niger,104629.0,Tanout,9.25,14.75,NER,1516.0,Zinder,150.0,Niger,104629.0,Tanout,both,identical +150860,9.75,14.75,NER,1516.0,Zinder,150.0,Niger,104624.0,Gouré,9.75,14.75,NER,1516.0,Zinder,150.0,Niger,104624.0,Gouré,both,identical +150861,10.25,14.75,NER,1516.0,Zinder,150.0,Niger,104630.0,Tesker,10.25,14.75,NER,1516.0,Zinder,150.0,Niger,104630.0,Tesker,both,identical +150862,10.75,14.75,NER,1516.0,Zinder,150.0,Niger,104630.0,Tesker,10.75,14.75,NER,1516.0,Zinder,150.0,Niger,104630.0,Tesker,both,identical +150863,11.25,14.75,NER,1516.0,Zinder,150.0,Niger,104630.0,Tesker,11.25,14.75,NER,1516.0,Zinder,150.0,Niger,104630.0,Tesker,both,identical +150864,11.75,14.75,NER,1516.0,Zinder,150.0,Niger,104630.0,Tesker,11.75,14.75,NER,1516.0,Zinder,150.0,Niger,104630.0,Tesker,both,identical +150865,12.25,14.75,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,12.25,14.75,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,both,identical +150866,12.75,14.75,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,12.75,14.75,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,both,identical +150867,13.25,14.75,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,13.25,14.75,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,both,identical +150868,13.75,14.75,TCD,1168.0,Kanem,114.0,Chad,102105.0,Nord Kanem,13.75,14.75,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,both,country_reassignment +150869,14.25,14.75,TCD,1168.0,Kanem,114.0,Chad,102105.0,Nord Kanem,14.25,14.75,TCD,1168.0,Kanem,114.0,Chad,102105.0,Nord Kanem,both,identical +150870,14.75,14.75,TCD,1168.0,Kanem,114.0,Chad,102105.0,Nord Kanem,14.75,14.75,TCD,1168.0,Kanem,114.0,Chad,102105.0,Nord Kanem,both,identical +150871,15.25,14.75,TCD,1168.0,Kanem,114.0,Chad,102105.0,Nord Kanem,15.25,14.75,TCD,1168.0,Kanem,114.0,Chad,102105.0,Nord Kanem,both,identical +150872,15.75,14.75,TCD,1168.0,Kanem,114.0,Chad,102105.0,Nord Kanem,15.75,14.75,TCD,1168.0,Kanem,114.0,Chad,102105.0,Nord Kanem,both,identical +150873,16.25,14.75,TCD,1159.0,Barh-El-Gazel,114.0,Chad,102082.0,Barh-El-Gazel Nord,16.25,14.75,TCD,1159.0,Barh-El-Gazel,114.0,Chad,102082.0,Barh-El-Gazel Nord,both,identical +150874,16.75,14.75,TCD,1159.0,Barh-El-Gazel,114.0,Chad,102082.0,Barh-El-Gazel Nord,16.75,14.75,TCD,1159.0,Barh-El-Gazel,114.0,Chad,102082.0,Barh-El-Gazel Nord,both,identical +150875,17.25,14.75,TCD,1159.0,Barh-El-Gazel,114.0,Chad,102082.0,Barh-El-Gazel Nord,17.25,14.75,TCD,1159.0,Barh-El-Gazel,114.0,Chad,102082.0,Barh-El-Gazel Nord,both,identical +150876,17.75,14.75,TCD,1159.0,Barh-El-Gazel,114.0,Chad,102082.0,Barh-El-Gazel Nord,17.75,14.75,TCD,1159.0,Barh-El-Gazel,114.0,Chad,102082.0,Barh-El-Gazel Nord,both,identical +150877,18.25,14.75,TCD,1160.0,Batha,114.0,Chad,102086.0,Batha Ouest,18.25,14.75,TCD,1160.0,Batha,114.0,Chad,102086.0,Batha Ouest,both,identical +150878,18.75,14.75,TCD,1160.0,Batha,114.0,Chad,102086.0,Batha Ouest,18.75,14.75,TCD,1160.0,Batha,114.0,Chad,102086.0,Batha Ouest,both,identical +150879,19.25,14.75,TCD,1160.0,Batha,114.0,Chad,102086.0,Batha Ouest,19.25,14.75,TCD,1160.0,Batha,114.0,Chad,102086.0,Batha Ouest,both,identical +150880,19.75,14.75,TCD,1160.0,Batha,114.0,Chad,102085.0,Batha Est,19.75,14.75,TCD,1160.0,Batha,114.0,Chad,102085.0,Batha Est,both,identical +150881,20.25,14.75,TCD,1182.0,Wadi Fira,114.0,Chad,102148.0,Biltine,20.25,14.75,TCD,1182.0,Wadi Fira,114.0,Chad,102148.0,Biltine,both,identical +150882,20.75,14.75,TCD,1182.0,Wadi Fira,114.0,Chad,102148.0,Biltine,20.75,14.75,TCD,1182.0,Wadi Fira,114.0,Chad,102148.0,Biltine,both,identical +150883,21.25,14.75,TCD,1182.0,Wadi Fira,114.0,Chad,102148.0,Biltine,21.25,14.75,TCD,1182.0,Wadi Fira,114.0,Chad,102148.0,Biltine,both,identical +150884,21.75,14.75,TCD,1182.0,Wadi Fira,114.0,Chad,102149.0,Dar-Tama,21.75,14.75,TCD,1182.0,Wadi Fira,114.0,Chad,102149.0,Dar-Tama,both,identical +150885,22.25,14.75,TCD,1182.0,Wadi Fira,114.0,Chad,102150.0,Kobé,22.25,14.75,TCD,1182.0,Wadi Fira,114.0,Chad,102150.0,Kobé,both,identical +150886,22.75,14.75,SDN,1642.0,West Darfur,161.0,Sudan,105902.0,Kulbus,22.75,14.75,SDN,1642.0,West Darfur,161.0,Sudan,105902.0,Kulbus,both,identical +150887,23.25,14.75,SDN,1634.0,North Darfur,161.0,Sudan,105812.0,Kernoi,23.25,14.75,SDN,1634.0,North Darfur,161.0,Sudan,105812.0,Kernoi,both,identical +150888,23.75,14.75,SDN,1634.0,North Darfur,161.0,Sudan,105817.0,Um Baru,23.75,14.75,SDN,1634.0,North Darfur,161.0,Sudan,105817.0,Um Baru,both,identical +150889,24.25,14.75,SDN,1634.0,North Darfur,161.0,Sudan,105817.0,Um Baru,24.25,14.75,SDN,1634.0,North Darfur,161.0,Sudan,105817.0,Um Baru,both,identical +150890,24.75,14.75,SDN,1634.0,North Darfur,161.0,Sudan,105813.0,Kutum,24.75,14.75,SDN,1634.0,North Darfur,161.0,Sudan,105813.0,Kutum,both,identical +150891,25.25,14.75,SDN,1634.0,North Darfur,161.0,Sudan,105813.0,Kutum,25.25,14.75,SDN,1634.0,North Darfur,161.0,Sudan,105813.0,Kutum,both,identical +150892,25.75,14.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,25.75,14.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +150893,26.25,14.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,26.25,14.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +150894,26.75,14.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,26.75,14.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +150895,27.25,14.75,SDN,1635.0,North Kordofan,161.0,Sudan,105824.0,Soudari,27.25,14.75,SDN,1635.0,North Kordofan,161.0,Sudan,105824.0,Soudari,both,identical +150896,27.75,14.75,SDN,1635.0,North Kordofan,161.0,Sudan,105824.0,Soudari,27.75,14.75,SDN,1635.0,North Kordofan,161.0,Sudan,105824.0,Soudari,both,identical +150897,28.25,14.75,SDN,1635.0,North Kordofan,161.0,Sudan,105824.0,Soudari,28.25,14.75,SDN,1635.0,North Kordofan,161.0,Sudan,105824.0,Soudari,both,identical +150898,28.75,14.75,SDN,1635.0,North Kordofan,161.0,Sudan,105824.0,Soudari,28.75,14.75,SDN,1635.0,North Kordofan,161.0,Sudan,105824.0,Soudari,both,identical +150899,29.25,14.75,SDN,1635.0,North Kordofan,161.0,Sudan,105824.0,Soudari,29.25,14.75,SDN,1635.0,North Kordofan,161.0,Sudan,105824.0,Soudari,both,identical +150900,29.75,14.75,SDN,1635.0,North Kordofan,161.0,Sudan,105824.0,Soudari,29.75,14.75,SDN,1635.0,North Kordofan,161.0,Sudan,105824.0,Soudari,both,identical +150901,30.25,14.75,SDN,1635.0,North Kordofan,161.0,Sudan,105821.0,Gebrat Al Sheikh,30.25,14.75,SDN,1635.0,North Kordofan,161.0,Sudan,105821.0,Gebrat Al Sheikh,both,identical +150902,30.75,14.75,SDN,1635.0,North Kordofan,161.0,Sudan,105821.0,Gebrat Al Sheikh,30.75,14.75,SDN,1635.0,North Kordofan,161.0,Sudan,105821.0,Gebrat Al Sheikh,both,identical +150903,31.25,14.75,SDN,1635.0,North Kordofan,161.0,Sudan,105821.0,Gebrat Al Sheikh,31.25,14.75,SDN,1635.0,North Kordofan,161.0,Sudan,105821.0,Gebrat Al Sheikh,both,identical +150904,31.75,14.75,SDN,1635.0,North Kordofan,161.0,Sudan,105821.0,Gebrat Al Sheikh,31.75,14.75,SDN,1635.0,North Kordofan,161.0,Sudan,105821.0,Gebrat Al Sheikh,both,identical +150905,32.25,14.75,SDN,1644.0,White Nile,161.0,Sudan,105920.0,Al Gitaina,32.25,14.75,SDN,1644.0,White Nile,161.0,Sudan,105920.0,Al Gitaina,both,identical +150906,32.75,14.75,SDN,1627.0,Aj Jazirah,161.0,Sudan,105739.0,Al Hasahisa,32.75,14.75,SDN,1627.0,Aj Jazirah,161.0,Sudan,105739.0,Al Hasahisa,both,identical +150907,33.25,14.75,SDN,1627.0,Aj Jazirah,161.0,Sudan,105739.0,Al Hasahisa,33.25,14.75,SDN,1627.0,Aj Jazirah,161.0,Sudan,105739.0,Al Hasahisa,both,identical +150908,33.75,14.75,SDN,1627.0,Aj Jazirah,161.0,Sudan,105745.0,Sharg Al Jazirah,33.75,14.75,SDN,1627.0,Aj Jazirah,161.0,Sudan,105745.0,Sharg Al Jazirah,both,identical +150909,34.25,14.75,SDN,1631.0,Gedaref,161.0,Sudan,105772.0,Al Butanah,34.25,14.75,SDN,1631.0,Gedaref,161.0,Sudan,105772.0,Al Butanah,both,identical +150910,34.75,14.75,SDN,1631.0,Gedaref,161.0,Sudan,105772.0,Al Butanah,34.75,14.75,SDN,1631.0,Gedaref,161.0,Sudan,105772.0,Al Butanah,both,identical +150911,35.25,14.75,SDN,1631.0,Gedaref,161.0,Sudan,105772.0,Al Butanah,35.25,14.75,SDN,1631.0,Gedaref,161.0,Sudan,105772.0,Al Butanah,both,identical +150912,35.75,14.75,SDN,1631.0,Gedaref,161.0,Sudan,105774.0,Al Fashaga,35.75,14.75,SDN,1631.0,Gedaref,161.0,Sudan,105774.0,Al Fashaga,both,identical +150913,36.25,14.75,SDN,1632.0,Kassala,161.0,Sudan,105794.0,Reifi Wad Elhilaiw,36.25,14.75,SDN,1632.0,Kassala,161.0,Sudan,105794.0,Reifi Wad Elhilaiw,both,identical +150914,36.75,14.75,ERI,1282.0,Gash Barka,122.0,Eritrea,102964.0,Omhajer,36.75,14.75,ERI,1282.0,Gash Barka,122.0,Eritrea,102964.0,Omhajer,both,identical +150915,37.25,14.75,ERI,1282.0,Gash Barka,122.0,Eritrea,102959.0,Lalay Gash,37.25,14.75,ERI,1282.0,Gash Barka,122.0,Eritrea,102959.0,Lalay Gash,both,identical +150916,37.75,14.75,ERI,1282.0,Gash Barka,122.0,Eritrea,102959.0,Lalay Gash,37.75,14.75,ERI,1282.0,Gash Barka,122.0,Eritrea,102959.0,Lalay Gash,both,identical +150917,38.25,14.75,ERI,1282.0,Gash Barka,122.0,Eritrea,102963.0,Molqi,38.25,14.75,ERI,1282.0,Gash Barka,122.0,Eritrea,102963.0,Molqi,both,identical +150918,38.75,14.75,ERI,1280.0,Debub,122.0,Eritrea,102938.0,Adi Quala,38.75,14.75,ERI,1280.0,Debub,122.0,Eritrea,102938.0,Adi Quala,both,identical +150919,39.25,14.75,ERI,1280.0,Debub,122.0,Eritrea,102948.0,Tsorona,39.25,14.75,ERI,1280.0,Debub,122.0,Eritrea,102948.0,Tsorona,both,identical +150920,39.75,14.75,ERI,1284.0,Semienawi Keih Bahri,122.0,Eritrea,102978.0,Ghelaelo,39.75,14.75,ERI,1284.0,Semienawi Keih Bahri,122.0,Eritrea,102978.0,Ghelaelo,both,identical +150921,40.25,14.75,ERI,1284.0,Semienawi Keih Bahri,122.0,Eritrea,102978.0,Ghelaelo,40.25,14.75,ERI,1284.0,Semienawi Keih Bahri,122.0,Eritrea,102978.0,Ghelaelo,both,identical +150922,40.75,14.75,ERI,1281.0,Debubawi Keih Bahri,122.0,Eritrea,102949.0,Araeta,40.75,14.75,ERI,1281.0,Debubawi Keih Bahri,122.0,Eritrea,102949.0,Araeta,both,identical +150923,41.25,14.75,ERI,1281.0,Debubawi Keih Bahri,122.0,Eritrea,102949.0,Araeta,41.25,14.75,ERI,1281.0,Debubawi Keih Bahri,122.0,Eritrea,102949.0,Araeta,both,identical +150926,42.75,14.75,YEM,3272.0,Al Hodeidah,282.0,Yemen,133701.0,Bajil,42.75,14.75,YEM,3272.0,Al Hodeidah,282.0,Yemen,133701.0,Bajil,both,identical +150927,43.25,14.75,YEM,3272.0,Al Hodeidah,282.0,Yemen,133690.0,Al Marawi'Ah,43.25,14.75,YEM,3272.0,Al Hodeidah,282.0,Yemen,133690.0,Al Marawi'Ah,both,identical +150928,43.75,14.75,YEM,3283.0,Raymah,282.0,Yemen,133763.0,Jabal Ash Sharq,43.75,14.75,YEM,3277.0,Dhamar,282.0,Yemen,133763.0,Jabal Ash Sharq,both,admin_reallocation +150929,44.25,14.75,YEM,3277.0,Dhamar,282.0,Yemen,133761.0,Dawran Aness,44.25,14.75,YEM,3277.0,Dhamar,282.0,Yemen,133761.0,Dawran Aness,both,identical +150930,44.75,14.75,YEM,3277.0,Dhamar,282.0,Yemen,133758.0,Al Hada,44.75,14.75,YEM,3277.0,Dhamar,282.0,Yemen,133758.0,Al Hada,both,identical +150931,45.25,14.75,YEM,3282.0,Ma'Rib,282.0,Yemen,133867.0,Harib,45.25,14.75,YEM,3282.0,Ma'Rib,282.0,Yemen,133867.0,Harib,both,identical +150932,45.75,14.75,YEM,3287.0,Shabwah,282.0,Yemen,133931.0,Bayhan,45.75,14.75,YEM,3287.0,Shabwah,282.0,Yemen,133931.0,Bayhan,both,identical +150933,46.25,14.75,YEM,3287.0,Shabwah,282.0,Yemen,133938.0,Merkhah As Sufla,46.25,14.75,YEM,3287.0,Shabwah,282.0,Yemen,133938.0,Merkhah As Sufla,both,identical +150934,46.75,14.75,YEM,3287.0,Shabwah,282.0,Yemen,133935.0,Jardan,46.75,14.75,YEM,3287.0,Shabwah,282.0,Yemen,133935.0,Jardan,both,identical +150935,47.25,14.75,YEM,3287.0,Shabwah,282.0,Yemen,133927.0,Ar Rawdah,47.25,14.75,YEM,3287.0,Shabwah,282.0,Yemen,133927.0,Ar Rawdah,both,identical +150936,47.75,14.75,YEM,3278.0,Hadramawt,282.0,Yemen,133796.0,Yabuth,47.75,14.75,YEM,3278.0,Hadramawt,282.0,Yemen,133796.0,Yabuth,both,identical +150937,48.25,14.75,YEM,3278.0,Hadramawt,282.0,Yemen,133786.0,Hajr,48.25,14.75,YEM,3278.0,Hadramawt,282.0,Yemen,133786.0,Hajr,both,identical +150938,48.75,14.75,YEM,3278.0,Hadramawt,282.0,Yemen,133773.0,Al Mukalla,48.75,14.75,YEM,3278.0,Hadramawt,282.0,Yemen,133773.0,Al Mukalla,both,identical +150939,49.25,14.75,YEM,3278.0,Hadramawt,282.0,Yemen,133783.0,Ghayl Ba Wazir,49.25,14.75,YEM,3278.0,Hadramawt,282.0,Yemen,133783.0,Ghayl Ba Wazir,both,identical +150940,49.75,14.75,YEM,3278.0,Hadramawt,282.0,Yemen,133780.0,Ash Shihr,49.75,14.75,YEM,3278.0,Hadramawt,282.0,Yemen,133780.0,Ash Shihr,both,identical +150941,50.25,14.75,YEM,3278.0,Hadramawt,282.0,Yemen,133770.0,Ad Dis,50.25,14.75,YEM,3278.0,Hadramawt,282.0,Yemen,133770.0,Ad Dis,both,identical +151512,-24.25,15.25,CPV,1135.0,Fogo,111.0,Cabo Verde,101987.0,Mosteiros,-24.25,15.25,CPV,1135.0,Fogo,111.0,Cabo Verde,101987.0,Mosteiros,both,identical +151513,-23.75,15.25,CPV,1138.0,Santiago,111.0,Cabo Verde,101994.0,Santa Catarina,-23.75,15.25,CPV,1138.0,Santiago,111.0,Cabo Verde,101994.0,Santa Catarina,both,identical +151514,-23.25,15.25,CPV,1136.0,Maio,111.0,Cabo Verde,101990.0,Maio,-23.25,15.25,CPV,1136.0,Maio,111.0,Cabo Verde,101990.0,Maio,both,identical +151526,-17.25,15.25,SEN,1578.0,Thiès,155.0,Senegal,105508.0,Tivaouane,-17.25,15.25,SEN,1578.0,Thiès,155.0,Senegal,105508.0,Tivaouane,both,identical +151527,-16.75,15.25,SEN,1578.0,Thiès,155.0,Senegal,105508.0,Tivaouane,-16.75,15.25,SEN,1578.0,Thiès,155.0,Senegal,105508.0,Tivaouane,both,identical +151528,-16.25,15.25,SEN,1572.0,Louga,155.0,Senegal,105490.0,Kébémer,-16.25,15.25,SEN,1572.0,Louga,155.0,Senegal,105490.0,Kébémer,both,identical +151529,-15.75,15.25,SEN,1572.0,Louga,155.0,Senegal,105491.0,Linguère,-15.75,15.25,SEN,1572.0,Louga,155.0,Senegal,105491.0,Linguère,both,identical +151530,-15.25,15.25,SEN,1572.0,Louga,155.0,Senegal,105491.0,Linguère,-15.25,15.25,SEN,1572.0,Louga,155.0,Senegal,105491.0,Linguère,both,identical +151531,-14.75,15.25,SEN,1572.0,Louga,155.0,Senegal,105491.0,Linguère,-14.75,15.25,SEN,1572.0,Louga,155.0,Senegal,105491.0,Linguère,both,identical +151532,-14.25,15.25,SEN,1573.0,Matam,155.0,Senegal,105495.0,Ranérou,-14.25,15.25,SEN,1573.0,Matam,155.0,Senegal,105495.0,Ranérou,both,identical +151533,-13.75,15.25,SEN,1573.0,Matam,155.0,Senegal,105495.0,Ranérou,-13.75,15.25,SEN,1573.0,Matam,155.0,Senegal,105495.0,Ranérou,both,identical +151534,-13.25,15.25,SEN,1573.0,Matam,155.0,Senegal,105493.0,Kanel,-13.25,15.25,SEN,1573.0,Matam,155.0,Senegal,105493.0,Kanel,both,identical +151535,-12.75,15.25,MRT,1451.0,Guidimakha,144.0,Mauritania,104185.0,Wompou,-12.75,15.25,SEN,1573.0,Matam,155.0,Senegal,105493.0,Kanel,both,country_reassignment +151536,-12.25,15.25,MRT,1451.0,Guidimakha,144.0,Mauritania,104182.0,Ghabou,-12.25,15.25,MRT,1451.0,Guidimakha,144.0,Mauritania,104182.0,Ghabou,both,identical +151537,-11.75,15.25,MLI,1439.0,Kayes,143.0,Mali,104117.0,Kayes,-11.75,15.25,MLI,1439.0,Kayes,143.0,Mali,104117.0,Kayes,both,identical +151538,-11.25,15.25,MLI,1439.0,Kayes,143.0,Mali,104117.0,Kayes,-11.25,15.25,MLI,1439.0,Kayes,143.0,Mali,104117.0,Kayes,both,identical +151539,-10.75,15.25,MLI,1439.0,Kayes,143.0,Mali,104121.0,Yélimané,-10.75,15.25,MLI,1439.0,Kayes,143.0,Mali,104121.0,Yélimané,both,identical +151540,-10.25,15.25,MLI,1439.0,Kayes,143.0,Mali,104121.0,Yélimané,-10.25,15.25,MLI,1439.0,Kayes,143.0,Mali,104121.0,Yélimané,both,identical +151541,-9.75,15.25,MLI,1439.0,Kayes,143.0,Mali,104120.0,Nioro,-9.75,15.25,MLI,1439.0,Kayes,143.0,Mali,104120.0,Nioro,both,identical +151542,-9.25,15.25,MLI,1439.0,Kayes,143.0,Mali,104120.0,Nioro,-9.25,15.25,MLI,1439.0,Kayes,143.0,Mali,104120.0,Nioro,both,identical +151543,-8.75,15.25,MLI,1441.0,Koulikoro,143.0,Mali,104132.0,Nara,-8.75,15.25,MLI,1441.0,Koulikoro,143.0,Mali,104132.0,Nara,both,identical +151544,-8.25,15.25,MLI,1441.0,Koulikoro,143.0,Mali,104132.0,Nara,-8.25,15.25,MLI,1441.0,Koulikoro,143.0,Mali,104132.0,Nara,both,identical +151545,-7.75,15.25,MLI,1441.0,Koulikoro,143.0,Mali,104132.0,Nara,-7.75,15.25,MLI,1441.0,Koulikoro,143.0,Mali,104132.0,Nara,both,identical +151546,-7.25,15.25,MLI,1441.0,Koulikoro,143.0,Mali,104132.0,Nara,-7.25,15.25,MLI,1441.0,Koulikoro,143.0,Mali,104132.0,Nara,both,identical +151547,-6.75,15.25,MLI,1441.0,Koulikoro,143.0,Mali,104132.0,Nara,-6.75,15.25,MLI,1441.0,Koulikoro,143.0,Mali,104132.0,Nara,both,identical +151548,-6.25,15.25,MLI,1444.0,Ségou,143.0,Mali,104151.0,Niono,-6.25,15.25,MLI,1444.0,Ségou,143.0,Mali,104151.0,Niono,both,identical +151549,-5.75,15.25,MLI,1444.0,Ségou,143.0,Mali,104151.0,Niono,-5.75,15.25,MLI,1444.0,Ségou,143.0,Mali,104151.0,Niono,both,identical +151550,-5.25,15.25,MLI,1444.0,Ségou,143.0,Mali,104151.0,Niono,-5.25,15.25,MLI,1444.0,Ségou,143.0,Mali,104151.0,Niono,both,identical +151551,-4.75,15.25,MLI,1442.0,Mopti,143.0,Mali,104140.0,Youwarou,-4.75,15.25,MLI,1442.0,Mopti,143.0,Mali,104140.0,Youwarou,both,identical +151552,-4.25,15.25,MLI,1442.0,Mopti,143.0,Mali,104140.0,Youwarou,-4.25,15.25,MLI,1442.0,Mopti,143.0,Mali,104140.0,Youwarou,both,identical +151553,-3.75,15.25,MLI,1442.0,Mopti,143.0,Mali,104138.0,Mopti,-3.75,15.25,MLI,1442.0,Mopti,143.0,Mali,104138.0,Mopti,both,identical +151554,-3.25,15.25,MLI,1442.0,Mopti,143.0,Mali,104136.0,Douentza,-3.25,15.25,MLI,1442.0,Mopti,143.0,Mali,104136.0,Douentza,both,identical +151555,-2.75,15.25,MLI,1442.0,Mopti,143.0,Mali,104136.0,Douentza,-2.75,15.25,MLI,1442.0,Mopti,143.0,Mali,104136.0,Douentza,both,identical +151556,-2.25,15.25,MLI,1442.0,Mopti,143.0,Mali,104136.0,Douentza,-2.25,15.25,MLI,1442.0,Mopti,143.0,Mali,104136.0,Douentza,both,identical +151557,-1.75,15.25,MLI,1442.0,Mopti,143.0,Mali,104136.0,Douentza,-1.75,15.25,MLI,1442.0,Mopti,143.0,Mali,104136.0,Douentza,both,identical +151558,-1.25,15.25,MLI,1445.0,Tombouctou,143.0,Mali,104157.0,Gourma-Rharous,-1.25,15.25,MLI,1445.0,Tombouctou,143.0,Mali,104157.0,Gourma-Rharous,both,identical +151559,-0.75,15.25,MLI,1445.0,Tombouctou,143.0,Mali,104157.0,Gourma-Rharous,-0.75,15.25,MLI,1445.0,Tombouctou,143.0,Mali,104157.0,Gourma-Rharous,both,identical +151560,-0.25,15.25,MLI,1438.0,Gao,143.0,Mali,104113.0,Gao,-0.25,15.25,MLI,1438.0,Gao,143.0,Mali,104113.0,Gao,both,identical +151561,0.25,15.25,MLI,1438.0,Gao,143.0,Mali,104111.0,Ansongo,0.25,15.25,MLI,1438.0,Gao,143.0,Mali,104111.0,Ansongo,both,identical +151562,0.75,15.25,MLI,1438.0,Gao,143.0,Mali,104111.0,Ansongo,0.75,15.25,MLI,1438.0,Gao,143.0,Mali,104111.0,Ansongo,both,identical +151563,1.25,15.25,MLI,1438.0,Gao,143.0,Mali,104111.0,Ansongo,1.25,15.25,MLI,1438.0,Gao,143.0,Mali,104111.0,Ansongo,both,identical +151564,1.75,15.25,NER,1515.0,Tillabéri,150.0,Niger,104616.0,Ouallam,1.75,15.25,MLI,1438.0,Gao,143.0,Mali,104114.0,Ménaka,both,country_reassignment +151565,2.25,15.25,NER,1515.0,Tillabéri,150.0,Niger,104611.0,Banibangou,2.25,15.25,NER,1515.0,Tillabéri,150.0,Niger,104611.0,Banibangou,both,identical +151566,2.75,15.25,NER,1515.0,Tillabéri,150.0,Niger,104611.0,Banibangou,2.75,15.25,NER,1515.0,Tillabéri,150.0,Niger,104611.0,Banibangou,both,identical +151567,3.25,15.25,NER,1515.0,Tillabéri,150.0,Niger,104608.0,Abala,3.25,15.25,NER,1515.0,Tillabéri,150.0,Niger,104608.0,Abala,both,identical +151568,3.75,15.25,NER,1515.0,Tillabéri,150.0,Niger,104608.0,Abala,3.75,15.25,NER,1515.0,Tillabéri,150.0,Niger,104608.0,Abala,both,identical +151569,4.25,15.25,NER,1514.0,Tahoua,150.0,Niger,104607.0,Tillia,4.25,15.25,NER,1514.0,Tahoua,150.0,Niger,104607.0,Tillia,both,identical +151570,4.75,15.25,NER,1514.0,Tahoua,150.0,Niger,104604.0,Tahoua,4.75,15.25,NER,1514.0,Tahoua,150.0,Niger,104604.0,Tahoua,both,identical +151571,5.25,15.25,NER,1514.0,Tahoua,150.0,Niger,104604.0,Tahoua,5.25,15.25,NER,1514.0,Tahoua,150.0,Niger,104604.0,Tahoua,both,identical +151572,5.75,15.25,NER,1514.0,Tahoua,150.0,Niger,104596.0,Abalak,5.75,15.25,NER,1514.0,Tahoua,150.0,Niger,104596.0,Abalak,both,identical +151573,6.25,15.25,NER,1514.0,Tahoua,150.0,Niger,104596.0,Abalak,6.25,15.25,NER,1514.0,Tahoua,150.0,Niger,104596.0,Abalak,both,identical +151574,6.75,15.25,NER,1513.0,Maradi,150.0,Niger,104589.0,Bermo,6.75,15.25,NER,1513.0,Maradi,150.0,Niger,104589.0,Bermo,both,identical +151575,7.25,15.25,NER,1513.0,Maradi,150.0,Niger,104589.0,Bermo,7.25,15.25,NER,1513.0,Maradi,150.0,Niger,104589.0,Bermo,both,identical +151576,7.75,15.25,NER,1516.0,Zinder,150.0,Niger,104621.0,Belbédji,7.75,15.25,NER,1516.0,Zinder,150.0,Niger,104621.0,Belbédji,both,identical +151577,8.25,15.25,NER,1516.0,Zinder,150.0,Niger,104621.0,Belbédji,8.25,15.25,NER,1516.0,Zinder,150.0,Niger,104621.0,Belbédji,both,identical +151578,8.75,15.25,NER,1516.0,Zinder,150.0,Niger,104629.0,Tanout,8.75,15.25,NER,1516.0,Zinder,150.0,Niger,104629.0,Tanout,both,identical +151579,9.25,15.25,NER,1516.0,Zinder,150.0,Niger,104629.0,Tanout,9.25,15.25,NER,1516.0,Zinder,150.0,Niger,104629.0,Tanout,both,identical +151580,9.75,15.25,NER,1516.0,Zinder,150.0,Niger,104630.0,Tesker,9.75,15.25,NER,1516.0,Zinder,150.0,Niger,104630.0,Tesker,both,identical +151581,10.25,15.25,NER,1516.0,Zinder,150.0,Niger,104630.0,Tesker,10.25,15.25,NER,1516.0,Zinder,150.0,Niger,104630.0,Tesker,both,identical +151582,10.75,15.25,NER,1516.0,Zinder,150.0,Niger,104630.0,Tesker,10.75,15.25,NER,1516.0,Zinder,150.0,Niger,104630.0,Tesker,both,identical +151583,11.25,15.25,NER,1516.0,Zinder,150.0,Niger,104630.0,Tesker,11.25,15.25,NER,1516.0,Zinder,150.0,Niger,104630.0,Tesker,both,identical +151584,11.75,15.25,NER,1516.0,Zinder,150.0,Niger,104630.0,Tesker,11.75,15.25,NER,1516.0,Zinder,150.0,Niger,104630.0,Tesker,both,identical +151585,12.25,15.25,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,12.25,15.25,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,both,identical +151586,12.75,15.25,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,12.75,15.25,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,both,identical +151587,13.25,15.25,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,13.25,15.25,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,both,identical +151588,13.75,15.25,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,13.75,15.25,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,both,identical +151589,14.25,15.25,TCD,1168.0,Kanem,114.0,Chad,102105.0,Nord Kanem,14.25,15.25,TCD,1168.0,Kanem,114.0,Chad,102105.0,Nord Kanem,both,identical +151590,14.75,15.25,TCD,1168.0,Kanem,114.0,Chad,102105.0,Nord Kanem,14.75,15.25,TCD,1168.0,Kanem,114.0,Chad,102105.0,Nord Kanem,both,identical +151591,15.25,15.25,TCD,1168.0,Kanem,114.0,Chad,102105.0,Nord Kanem,15.25,15.25,TCD,1168.0,Kanem,114.0,Chad,102105.0,Nord Kanem,both,identical +151592,15.75,15.25,TCD,1168.0,Kanem,114.0,Chad,102105.0,Nord Kanem,15.75,15.25,TCD,1168.0,Kanem,114.0,Chad,102105.0,Nord Kanem,both,identical +151593,16.25,15.25,TCD,1168.0,Kanem,114.0,Chad,102105.0,Nord Kanem,16.25,15.25,TCD,1168.0,Kanem,114.0,Chad,102105.0,Nord Kanem,both,identical +151594,16.75,15.25,TCD,1159.0,Barh-El-Gazel,114.0,Chad,102082.0,Barh-El-Gazel Nord,16.75,15.25,TCD,1159.0,Barh-El-Gazel,114.0,Chad,102082.0,Barh-El-Gazel Nord,both,identical +151595,17.25,15.25,TCD,1159.0,Barh-El-Gazel,114.0,Chad,102082.0,Barh-El-Gazel Nord,17.25,15.25,TCD,1159.0,Barh-El-Gazel,114.0,Chad,102082.0,Barh-El-Gazel Nord,both,identical +151596,17.75,15.25,TCD,1159.0,Barh-El-Gazel,114.0,Chad,102082.0,Barh-El-Gazel Nord,17.75,15.25,TCD,1159.0,Barh-El-Gazel,114.0,Chad,102082.0,Barh-El-Gazel Nord,both,identical +151597,18.25,15.25,TCD,1160.0,Batha,114.0,Chad,102086.0,Batha Ouest,18.25,15.25,TCD,1160.0,Batha,114.0,Chad,102086.0,Batha Ouest,both,identical +151598,18.75,15.25,TCD,1160.0,Batha,114.0,Chad,102086.0,Batha Ouest,18.75,15.25,TCD,1160.0,Batha,114.0,Chad,102086.0,Batha Ouest,both,identical +151599,19.25,15.25,TCD,1160.0,Batha,114.0,Chad,102086.0,Batha Ouest,19.25,15.25,TCD,1160.0,Batha,114.0,Chad,102086.0,Batha Ouest,both,identical +151600,19.75,15.25,TCD,1160.0,Batha,114.0,Chad,102085.0,Batha Est,19.75,15.25,TCD,1160.0,Batha,114.0,Chad,102085.0,Batha Est,both,identical +151601,20.25,15.25,TCD,1182.0,Wadi Fira,114.0,Chad,102148.0,Biltine,20.25,15.25,TCD,1182.0,Wadi Fira,114.0,Chad,102148.0,Biltine,both,identical +151602,20.75,15.25,TCD,1182.0,Wadi Fira,114.0,Chad,102148.0,Biltine,20.75,15.25,TCD,1182.0,Wadi Fira,114.0,Chad,102148.0,Biltine,both,identical +151603,21.25,15.25,TCD,1182.0,Wadi Fira,114.0,Chad,102148.0,Biltine,21.25,15.25,TCD,1182.0,Wadi Fira,114.0,Chad,102148.0,Biltine,both,identical +151604,21.75,15.25,TCD,1182.0,Wadi Fira,114.0,Chad,102151.0,Mégri,21.75,15.25,TCD,1182.0,Wadi Fira,114.0,Chad,102151.0,Mégri,both,identical +151605,22.25,15.25,TCD,1182.0,Wadi Fira,114.0,Chad,102150.0,Kobé,22.25,15.25,TCD,1182.0,Wadi Fira,114.0,Chad,102150.0,Kobé,both,identical +151606,22.75,15.25,TCD,1182.0,Wadi Fira,114.0,Chad,102150.0,Kobé,22.75,15.25,TCD,1182.0,Wadi Fira,114.0,Chad,102150.0,Kobé,both,identical +151607,23.25,15.25,SDN,1634.0,North Darfur,161.0,Sudan,105808.0,At Tina,23.25,15.25,SDN,1634.0,North Darfur,161.0,Sudan,105808.0,At Tina,both,identical +151608,23.75,15.25,SDN,1634.0,North Darfur,161.0,Sudan,105812.0,Kernoi,23.75,15.25,SDN,1634.0,North Darfur,161.0,Sudan,105812.0,Kernoi,both,identical +151609,24.25,15.25,SDN,1634.0,North Darfur,161.0,Sudan,105817.0,Um Baru,24.25,15.25,SDN,1634.0,North Darfur,161.0,Sudan,105817.0,Um Baru,both,identical +151610,24.75,15.25,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,24.75,15.25,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +151611,25.25,15.25,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,25.25,15.25,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +151612,25.75,15.25,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,25.75,15.25,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +151613,26.25,15.25,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,26.25,15.25,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +151614,26.75,15.25,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,26.75,15.25,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +151615,27.25,15.25,SDN,1635.0,North Kordofan,161.0,Sudan,105824.0,Soudari,27.25,15.25,SDN,1635.0,North Kordofan,161.0,Sudan,105824.0,Soudari,both,identical +151616,27.75,15.25,SDN,1635.0,North Kordofan,161.0,Sudan,105824.0,Soudari,27.75,15.25,SDN,1635.0,North Kordofan,161.0,Sudan,105824.0,Soudari,both,identical +151617,28.25,15.25,SDN,1635.0,North Kordofan,161.0,Sudan,105824.0,Soudari,28.25,15.25,SDN,1635.0,North Kordofan,161.0,Sudan,105824.0,Soudari,both,identical +151618,28.75,15.25,SDN,1635.0,North Kordofan,161.0,Sudan,105824.0,Soudari,28.75,15.25,SDN,1635.0,North Kordofan,161.0,Sudan,105824.0,Soudari,both,identical +151619,29.25,15.25,SDN,1635.0,North Kordofan,161.0,Sudan,105824.0,Soudari,29.25,15.25,SDN,1635.0,North Kordofan,161.0,Sudan,105824.0,Soudari,both,identical +151620,29.75,15.25,SDN,1635.0,North Kordofan,161.0,Sudan,105821.0,Gebrat Al Sheikh,29.75,15.25,SDN,1635.0,North Kordofan,161.0,Sudan,105821.0,Gebrat Al Sheikh,both,identical +151621,30.25,15.25,SDN,1635.0,North Kordofan,161.0,Sudan,105821.0,Gebrat Al Sheikh,30.25,15.25,SDN,1635.0,North Kordofan,161.0,Sudan,105821.0,Gebrat Al Sheikh,both,identical +151622,30.75,15.25,SDN,1635.0,North Kordofan,161.0,Sudan,105821.0,Gebrat Al Sheikh,30.75,15.25,SDN,1635.0,North Kordofan,161.0,Sudan,105821.0,Gebrat Al Sheikh,both,identical +151623,31.25,15.25,SDN,1635.0,North Kordofan,161.0,Sudan,105821.0,Gebrat Al Sheikh,31.25,15.25,SDN,1635.0,North Kordofan,161.0,Sudan,105821.0,Gebrat Al Sheikh,both,identical +151624,31.75,15.25,SDN,1635.0,North Kordofan,161.0,Sudan,105821.0,Gebrat Al Sheikh,31.75,15.25,SDN,1635.0,North Kordofan,161.0,Sudan,105821.0,Gebrat Al Sheikh,both,identical +151625,32.25,15.25,SDN,1635.0,North Kordofan,161.0,Sudan,105821.0,Gebrat Al Sheikh,32.25,15.25,SDN,1635.0,North Kordofan,161.0,Sudan,105821.0,Gebrat Al Sheikh,both,identical +151626,32.75,15.25,SDN,1627.0,Aj Jazirah,161.0,Sudan,105740.0,Al Kamlin,32.75,15.25,SDN,1627.0,Aj Jazirah,161.0,Sudan,105740.0,Al Kamlin,both,identical +151627,33.25,15.25,SDN,1627.0,Aj Jazirah,161.0,Sudan,105745.0,Sharg Al Jazirah,33.25,15.25,SDN,1627.0,Aj Jazirah,161.0,Sudan,105745.0,Sharg Al Jazirah,both,identical +151628,33.75,15.25,SDN,1627.0,Aj Jazirah,161.0,Sudan,105745.0,Sharg Al Jazirah,33.75,15.25,SDN,1627.0,Aj Jazirah,161.0,Sudan,105745.0,Sharg Al Jazirah,both,identical +151629,34.25,15.25,SDN,1631.0,Gedaref,161.0,Sudan,105772.0,Al Butanah,34.25,15.25,SDN,1631.0,Gedaref,161.0,Sudan,105772.0,Al Butanah,both,identical +151630,34.75,15.25,SDN,1631.0,Gedaref,161.0,Sudan,105772.0,Al Butanah,34.75,15.25,SDN,1631.0,Gedaref,161.0,Sudan,105772.0,Al Butanah,both,identical +151631,35.25,15.25,SDN,1632.0,Kassala,161.0,Sudan,105790.0,Reifi Khashm Elgirba,35.25,15.25,SDN,1632.0,Kassala,161.0,Sudan,105790.0,Reifi Khashm Elgirba,both,identical +151632,35.75,15.25,SDN,1632.0,Kassala,161.0,Sudan,105784.0,Halfa Aj Jadeedah,35.75,15.25,SDN,1632.0,Kassala,161.0,Sudan,105784.0,Halfa Aj Jadeedah,both,identical +151633,36.25,15.25,SDN,1632.0,Kassala,161.0,Sudan,105787.0,Reifi Gharb Kassala,36.25,15.25,SDN,1632.0,Kassala,161.0,Sudan,105787.0,Reifi Gharb Kassala,both,identical +151634,36.75,15.25,ERI,1282.0,Gash Barka,122.0,Eritrea,102958.0,Haykota,36.75,15.25,ERI,1282.0,Gash Barka,122.0,Eritrea,102958.0,Haykota,both,identical +151635,37.25,15.25,ERI,1282.0,Gash Barka,122.0,Eritrea,102957.0,Gogne,37.25,15.25,ERI,1282.0,Gash Barka,122.0,Eritrea,102957.0,Gogne,both,identical +151636,37.75,15.25,ERI,1282.0,Gash Barka,122.0,Eritrea,102962.0,Mogolo,37.75,15.25,ERI,1282.0,Gash Barka,122.0,Eritrea,102962.0,Mogolo,both,identical +151637,38.25,15.25,ERI,1282.0,Gash Barka,122.0,Eritrea,102961.0,Mensura,38.25,15.25,ERI,1282.0,Gash Barka,122.0,Eritrea,102961.0,Mensura,both,identical +151638,38.75,15.25,ERI,1280.0,Debub,122.0,Eritrea,102940.0,Dbarwa,38.75,15.25,ERI,1280.0,Debub,122.0,Eritrea,102940.0,Dbarwa,both,identical +151639,39.25,15.25,ERI,1284.0,Semienawi Keih Bahri,122.0,Eritrea,102977.0,Foro,39.25,15.25,ERI,1284.0,Semienawi Keih Bahri,122.0,Eritrea,102977.0,Foro,both,identical +151640,39.75,15.25,ERI,1284.0,Semienawi Keih Bahri,122.0,Eritrea,102977.0,Foro,39.75,15.25,ERI,1284.0,Semienawi Keih Bahri,122.0,Eritrea,102977.0,Foro,both,identical +151641,40.25,15.25,ERI,1284.0,Semienawi Keih Bahri,122.0,Eritrea,102978.0,Ghelaelo,40.25,15.25,ERI,1284.0,Semienawi Keih Bahri,122.0,Eritrea,102978.0,Ghelaelo,both,identical +151646,42.75,15.25,YEM,3272.0,Al Hodeidah,282.0,Yemen,133693.0,Al Munirah,42.75,15.25,YEM,3272.0,Al Hodeidah,282.0,Yemen,133693.0,Al Munirah,both,identical +151647,43.25,15.25,YEM,3272.0,Al Hodeidah,282.0,Yemen,133701.0,Bajil,43.25,15.25,YEM,3272.0,Al Hodeidah,282.0,Yemen,133701.0,Bajil,both,identical +151648,43.75,15.25,YEM,3285.0,Sana'A,282.0,Yemen,133911.0,Manakhah,43.75,15.25,YEM,3285.0,Sana'A,282.0,Yemen,133911.0,Manakhah,both,identical +151649,44.25,15.25,YEM,3285.0,Sana'A,282.0,Yemen,133906.0,Bani Matar,44.25,15.25,YEM,3285.0,Sana'A,282.0,Yemen,133906.0,Bani Matar,both,identical +151650,44.75,15.25,YEM,3285.0,Sana'A,282.0,Yemen,133904.0,Bani Dhabyan,44.75,15.25,YEM,3285.0,Sana'A,282.0,Yemen,133904.0,Bani Dhabyan,both,identical +151651,45.25,15.25,YEM,3282.0,Ma'Rib,282.0,Yemen,133865.0,Al Jubah,45.25,15.25,YEM,3282.0,Ma'Rib,282.0,Yemen,133865.0,Al Jubah,both,identical +151652,45.75,15.25,YEM,3282.0,Ma'Rib,282.0,Yemen,133872.0,Marib,45.75,15.25,YEM,3282.0,Ma'Rib,282.0,Yemen,133872.0,Marib,both,identical +151653,46.25,15.25,YEM,3287.0,Shabwah,282.0,Yemen,133941.0,Usaylan,46.25,15.25,YEM,3287.0,Shabwah,282.0,Yemen,133941.0,Usaylan,both,identical +151654,46.75,15.25,YEM,3287.0,Shabwah,282.0,Yemen,133935.0,Jardan,46.75,15.25,YEM,3287.0,Shabwah,282.0,Yemen,133935.0,Jardan,both,identical +151655,47.25,15.25,YEM,3287.0,Shabwah,282.0,Yemen,133928.0,Arma,47.25,15.25,YEM,3287.0,Shabwah,282.0,Yemen,133928.0,Arma,both,identical +151656,47.75,15.25,YEM,3278.0,Hadramawt,282.0,Yemen,133771.0,Adh Dhlia'Ah,47.75,15.25,YEM,3278.0,Hadramawt,282.0,Yemen,133771.0,Adh Dhlia'Ah,both,identical +151657,48.25,15.25,YEM,3278.0,Hadramawt,282.0,Yemen,133782.0,Daw'An,48.25,15.25,YEM,3278.0,Hadramawt,282.0,Yemen,133782.0,Daw'An,both,identical +151658,48.75,15.25,YEM,3278.0,Hadramawt,282.0,Yemen,133795.0,Wadi Al Ayn,48.75,15.25,YEM,3278.0,Hadramawt,282.0,Yemen,133795.0,Wadi Al Ayn,both,identical +151659,49.25,15.25,YEM,3278.0,Hadramawt,282.0,Yemen,133784.0,Ghayl Bin Yamin,49.25,15.25,YEM,3278.0,Hadramawt,282.0,Yemen,133784.0,Ghayl Bin Yamin,both,identical +151660,49.75,15.25,YEM,3278.0,Hadramawt,282.0,Yemen,133784.0,Ghayl Bin Yamin,49.75,15.25,YEM,3278.0,Hadramawt,282.0,Yemen,133784.0,Ghayl Bin Yamin,both,identical +151661,50.25,15.25,YEM,3278.0,Hadramawt,282.0,Yemen,133778.0,Ar Raydah Wa Qusayar,50.25,15.25,YEM,3278.0,Hadramawt,282.0,Yemen,133778.0,Ar Raydah Wa Qusayar,both,identical +151662,50.75,15.25,YEM,3274.0,Al Maharah,282.0,Yemen,133721.0,Al Masilah,50.75,15.25,YEM,3274.0,Al Maharah,282.0,Yemen,133721.0,Al Masilah,both,identical +151663,51.25,15.25,YEM,3274.0,Al Maharah,282.0,Yemen,133727.0,Sayhut,51.25,15.25,YEM,3274.0,Al Maharah,282.0,Yemen,133727.0,Sayhut,both,identical +151664,51.75,15.25,YEM,3274.0,Al Maharah,282.0,Yemen,133726.0,Qishn,51.75,15.25,YEM,3274.0,Al Maharah,282.0,Yemen,133726.0,Qishn,both,identical +152235,-22.75,15.75,CPV,1133.0,Boavista,111.0,Cabo Verde,101985.0,Boavista,-22.75,15.75,CPV,1133.0,Boavista,111.0,Cabo Verde,101985.0,Boavista,both,identical +152247,-16.75,15.75,SEN,1572.0,Louga,155.0,Senegal,105490.0,Kébémer,-16.75,15.75,SEN,1572.0,Louga,155.0,Senegal,105490.0,Kébémer,both,identical +152248,-16.25,15.75,SEN,1572.0,Louga,155.0,Senegal,105492.0,Louga,-16.25,15.75,SEN,1572.0,Louga,155.0,Senegal,105492.0,Louga,both,identical +152249,-15.75,15.75,SEN,1572.0,Louga,155.0,Senegal,105492.0,Louga,-15.75,15.75,SEN,1572.0,Louga,155.0,Senegal,105492.0,Louga,both,identical +152250,-15.25,15.75,SEN,1572.0,Louga,155.0,Senegal,105491.0,Linguère,-15.25,15.75,SEN,1572.0,Louga,155.0,Senegal,105491.0,Linguère,both,identical +152251,-14.75,15.75,SEN,1572.0,Louga,155.0,Senegal,105491.0,Linguère,-14.75,15.75,SEN,1572.0,Louga,155.0,Senegal,105491.0,Linguère,both,identical +152252,-14.25,15.75,SEN,1574.0,Saint Louis,155.0,Senegal,105497.0,Podor,-14.25,15.75,SEN,1574.0,Saint Louis,155.0,Senegal,105497.0,Podor,both,identical +152253,-13.75,15.75,SEN,1573.0,Matam,155.0,Senegal,105494.0,Matam,-13.75,15.75,SEN,1573.0,Matam,155.0,Senegal,105494.0,Matam,both,identical +152254,-13.25,15.75,SEN,1573.0,Matam,155.0,Senegal,105494.0,Matam,-13.25,15.75,SEN,1573.0,Matam,155.0,Senegal,105494.0,Matam,both,identical +152255,-12.75,15.75,MRT,1450.0,Gorgol,144.0,Mauritania,104179.0,M'Bout,-12.75,15.75,MRT,1450.0,Gorgol,144.0,Mauritania,104179.0,M'Bout,both,identical +152256,-12.25,15.75,MRT,1451.0,Guidimakha,144.0,Mauritania,104179.0,M'Bout,-12.25,15.75,MRT,1450.0,Gorgol,144.0,Mauritania,104179.0,M'Bout,both,admin_reallocation +152257,-11.75,15.75,MRT,1451.0,Guidimakha,144.0,Mauritania,104183.0,Ould Yenge,-11.75,15.75,MRT,1451.0,Guidimakha,144.0,Mauritania,104183.0,Ould Yenge,both,identical +152258,-11.25,15.75,MRT,1447.0,Assaba,144.0,Mauritania,104167.0,Kankossa,-11.25,15.75,MRT,1447.0,Assaba,144.0,Mauritania,104167.0,Kankossa,both,identical +152259,-10.75,15.75,MRT,1447.0,Assaba,144.0,Mauritania,104167.0,Kankossa,-10.75,15.75,MRT,1447.0,Assaba,144.0,Mauritania,104167.0,Kankossa,both,identical +152260,-10.25,15.75,MRT,1453.0,Hodh El Gharbi,144.0,Mauritania,104197.0,Tintane,-10.25,15.75,MRT,1453.0,Hodh El Gharbi,144.0,Mauritania,104197.0,Tintane,both,identical +152261,-9.75,15.75,MRT,1453.0,Hodh El Gharbi,144.0,Mauritania,104195.0,Kobeni,-9.75,15.75,MRT,1453.0,Hodh El Gharbi,144.0,Mauritania,104195.0,Kobeni,both,identical +152262,-9.25,15.75,MRT,1453.0,Hodh El Gharbi,144.0,Mauritania,104195.0,Kobeni,-9.25,15.75,MRT,1453.0,Hodh El Gharbi,144.0,Mauritania,104195.0,Kobeni,both,identical +152263,-8.75,15.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104189.0,Djigueni,-8.75,15.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104189.0,Djigueni,both,identical +152264,-8.25,15.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104193.0,Timbedra,-8.25,15.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104193.0,Timbedra,both,identical +152265,-7.75,15.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104193.0,Timbedra,-7.75,15.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104193.0,Timbedra,both,identical +152266,-7.25,15.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104187.0,Amourj,-7.25,15.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104187.0,Amourj,both,identical +152267,-6.75,15.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104186.0,Adel Bagrou,-6.75,15.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104186.0,Adel Bagrou,both,identical +152268,-6.25,15.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104188.0,Bassikounou,-6.25,15.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104188.0,Bassikounou,both,identical +152269,-5.75,15.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104188.0,Bassikounou,-5.75,15.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104188.0,Bassikounou,both,identical +152270,-5.25,15.75,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,-5.25,15.75,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,both,identical +152271,-4.75,15.75,MLI,1445.0,Tombouctou,143.0,Mali,104158.0,Niafunké,-4.75,15.75,MLI,1445.0,Tombouctou,143.0,Mali,104158.0,Niafunké,both,identical +152272,-4.25,15.75,MLI,1445.0,Tombouctou,143.0,Mali,104158.0,Niafunké,-4.25,15.75,MLI,1445.0,Tombouctou,143.0,Mali,104158.0,Niafunké,both,identical +152273,-3.75,15.75,MLI,1445.0,Tombouctou,143.0,Mali,104158.0,Niafunké,-3.75,15.75,MLI,1445.0,Tombouctou,143.0,Mali,104158.0,Niafunké,both,identical +152274,-3.25,15.75,MLI,1442.0,Mopti,143.0,Mali,104136.0,Douentza,-3.25,15.75,MLI,1442.0,Mopti,143.0,Mali,104136.0,Douentza,both,identical +152275,-2.75,15.75,MLI,1445.0,Tombouctou,143.0,Mali,104157.0,Gourma-Rharous,-2.75,15.75,MLI,1445.0,Tombouctou,143.0,Mali,104157.0,Gourma-Rharous,both,identical +152276,-2.25,15.75,MLI,1445.0,Tombouctou,143.0,Mali,104157.0,Gourma-Rharous,-2.25,15.75,MLI,1445.0,Tombouctou,143.0,Mali,104157.0,Gourma-Rharous,both,identical +152277,-1.75,15.75,MLI,1445.0,Tombouctou,143.0,Mali,104157.0,Gourma-Rharous,-1.75,15.75,MLI,1445.0,Tombouctou,143.0,Mali,104157.0,Gourma-Rharous,both,identical +152278,-1.25,15.75,MLI,1445.0,Tombouctou,143.0,Mali,104157.0,Gourma-Rharous,-1.25,15.75,MLI,1445.0,Tombouctou,143.0,Mali,104157.0,Gourma-Rharous,both,identical +152279,-0.75,15.75,MLI,1445.0,Tombouctou,143.0,Mali,104157.0,Gourma-Rharous,-0.75,15.75,MLI,1445.0,Tombouctou,143.0,Mali,104157.0,Gourma-Rharous,both,identical +152280,-0.25,15.75,MLI,1438.0,Gao,143.0,Mali,104113.0,Gao,-0.25,15.75,MLI,1438.0,Gao,143.0,Mali,104113.0,Gao,both,identical +152281,0.25,15.75,MLI,1438.0,Gao,143.0,Mali,104111.0,Ansongo,0.25,15.75,MLI,1438.0,Gao,143.0,Mali,104111.0,Ansongo,both,identical +152282,0.75,15.75,MLI,1438.0,Gao,143.0,Mali,104111.0,Ansongo,0.75,15.75,MLI,1438.0,Gao,143.0,Mali,104111.0,Ansongo,both,identical +152283,1.25,15.75,MLI,1438.0,Gao,143.0,Mali,104111.0,Ansongo,1.25,15.75,MLI,1438.0,Gao,143.0,Mali,104111.0,Ansongo,both,identical +152284,1.75,15.75,MLI,1438.0,Gao,143.0,Mali,104114.0,Ménaka,1.75,15.75,MLI,1438.0,Gao,143.0,Mali,104114.0,Ménaka,both,identical +152285,2.25,15.75,MLI,1438.0,Gao,143.0,Mali,104114.0,Ménaka,2.25,15.75,MLI,1438.0,Gao,143.0,Mali,104114.0,Ménaka,both,identical +152286,2.75,15.75,MLI,1438.0,Gao,143.0,Mali,104114.0,Ménaka,2.75,15.75,MLI,1438.0,Gao,143.0,Mali,104114.0,Ménaka,both,identical +152287,3.25,15.75,MLI,1438.0,Gao,143.0,Mali,104114.0,Ménaka,3.25,15.75,MLI,1438.0,Gao,143.0,Mali,104114.0,Ménaka,both,identical +152288,3.75,15.75,MLI,1438.0,Gao,143.0,Mali,104114.0,Ménaka,3.75,15.75,MLI,1438.0,Gao,143.0,Mali,104114.0,Ménaka,both,identical +152289,4.25,15.75,NER,1514.0,Tahoua,150.0,Niger,104607.0,Tillia,4.25,15.75,NER,1514.0,Tahoua,150.0,Niger,104607.0,Tillia,both,identical +152290,4.75,15.75,NER,1514.0,Tahoua,150.0,Niger,104607.0,Tillia,4.75,15.75,NER,1514.0,Tahoua,150.0,Niger,104607.0,Tillia,both,identical +152291,5.25,15.75,NER,1514.0,Tahoua,150.0,Niger,104606.0,Tchintabaraden,5.25,15.75,NER,1514.0,Tahoua,150.0,Niger,104606.0,Tchintabaraden,both,identical +152292,5.75,15.75,NER,1514.0,Tahoua,150.0,Niger,104606.0,Tchintabaraden,5.75,15.75,NER,1514.0,Tahoua,150.0,Niger,104606.0,Tchintabaraden,both,identical +152293,6.25,15.75,NER,1514.0,Tahoua,150.0,Niger,104596.0,Abalak,6.25,15.75,NER,1514.0,Tahoua,150.0,Niger,104596.0,Abalak,both,identical +152294,6.75,15.75,NER,1509.0,Agadez,150.0,Niger,104596.0,Abalak,6.75,15.75,NER,1514.0,Tahoua,150.0,Niger,104596.0,Abalak,both,admin_reallocation +152295,7.25,15.75,NER,1509.0,Agadez,150.0,Niger,104567.0,Aderbissinat,7.25,15.75,NER,1509.0,Agadez,150.0,Niger,104567.0,Aderbissinat,both,identical +152296,7.75,15.75,NER,1509.0,Agadez,150.0,Niger,104567.0,Aderbissinat,7.75,15.75,NER,1509.0,Agadez,150.0,Niger,104567.0,Aderbissinat,both,identical +152297,8.25,15.75,NER,1509.0,Agadez,150.0,Niger,104567.0,Aderbissinat,8.25,15.75,NER,1509.0,Agadez,150.0,Niger,104567.0,Aderbissinat,both,identical +152298,8.75,15.75,NER,1509.0,Agadez,150.0,Niger,104567.0,Aderbissinat,8.75,15.75,NER,1509.0,Agadez,150.0,Niger,104567.0,Aderbissinat,both,identical +152299,9.25,15.75,NER,1516.0,Zinder,150.0,Niger,104629.0,Tanout,9.25,15.75,NER,1516.0,Zinder,150.0,Niger,104629.0,Tanout,both,identical +152300,9.75,15.75,NER,1516.0,Zinder,150.0,Niger,104630.0,Tesker,9.75,15.75,NER,1516.0,Zinder,150.0,Niger,104630.0,Tesker,both,identical +152301,10.25,15.75,NER,1516.0,Zinder,150.0,Niger,104630.0,Tesker,10.25,15.75,NER,1516.0,Zinder,150.0,Niger,104630.0,Tesker,both,identical +152302,10.75,15.75,NER,1516.0,Zinder,150.0,Niger,104630.0,Tesker,10.75,15.75,NER,1516.0,Zinder,150.0,Niger,104630.0,Tesker,both,identical +152303,11.25,15.75,NER,1516.0,Zinder,150.0,Niger,104630.0,Tesker,11.25,15.75,NER,1516.0,Zinder,150.0,Niger,104630.0,Tesker,both,identical +152304,11.75,15.75,NER,1516.0,Zinder,150.0,Niger,104630.0,Tesker,11.75,15.75,NER,1516.0,Zinder,150.0,Niger,104630.0,Tesker,both,identical +152305,12.25,15.75,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,12.25,15.75,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,both,identical +152306,12.75,15.75,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,12.75,15.75,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,both,identical +152307,13.25,15.75,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,13.25,15.75,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,both,identical +152308,13.75,15.75,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,13.75,15.75,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,both,identical +152309,14.25,15.75,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,14.25,15.75,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,both,identical +152310,14.75,15.75,TCD,1168.0,Kanem,114.0,Chad,102105.0,Nord Kanem,14.75,15.75,TCD,1168.0,Kanem,114.0,Chad,102105.0,Nord Kanem,both,identical +152311,15.25,15.75,TCD,1168.0,Kanem,114.0,Chad,102105.0,Nord Kanem,15.25,15.75,TCD,1168.0,Kanem,114.0,Chad,102105.0,Nord Kanem,both,identical +152312,15.75,15.75,TCD,1168.0,Kanem,114.0,Chad,102105.0,Nord Kanem,15.75,15.75,TCD,1168.0,Kanem,114.0,Chad,102105.0,Nord Kanem,both,identical +152313,16.25,15.75,TCD,1168.0,Kanem,114.0,Chad,102105.0,Nord Kanem,16.25,15.75,TCD,1168.0,Kanem,114.0,Chad,102105.0,Nord Kanem,both,identical +152314,16.75,15.75,TCD,1168.0,Kanem,114.0,Chad,102105.0,Nord Kanem,16.75,15.75,TCD,1168.0,Kanem,114.0,Chad,102105.0,Nord Kanem,both,identical +152315,17.25,15.75,TCD,1159.0,Barh-El-Gazel,114.0,Chad,102082.0,Barh-El-Gazel Nord,17.25,15.75,TCD,1159.0,Barh-El-Gazel,114.0,Chad,102082.0,Barh-El-Gazel Nord,both,identical +152316,17.75,15.75,TCD,1161.0,Borkou,114.0,Chad,102088.0,Borkou,17.75,15.75,TCD,1161.0,Borkou,114.0,Chad,102088.0,Borkou,both,identical +152317,18.25,15.75,TCD,1161.0,Borkou,114.0,Chad,102088.0,Borkou,18.25,15.75,TCD,1161.0,Borkou,114.0,Chad,102088.0,Borkou,both,identical +152318,18.75,15.75,TCD,1161.0,Borkou,114.0,Chad,102088.0,Borkou,18.75,15.75,TCD,1161.0,Borkou,114.0,Chad,102088.0,Borkou,both,identical +152319,19.25,15.75,TCD,1160.0,Batha,114.0,Chad,102086.0,Batha Ouest,19.25,15.75,TCD,1160.0,Batha,114.0,Chad,102086.0,Batha Ouest,both,identical +152320,19.75,15.75,TCD,1160.0,Batha,114.0,Chad,102086.0,Batha Ouest,19.75,15.75,TCD,1160.0,Batha,114.0,Chad,102086.0,Batha Ouest,both,identical +152321,20.25,15.75,TCD,1161.0,Borkou,114.0,Chad,102088.0,Borkou,20.25,15.75,TCD,1161.0,Borkou,114.0,Chad,102088.0,Borkou,both,identical +152322,20.75,15.75,TCD,1164.0,Ennedi Ouest,114.0,Chad,102096.0,Mourtcha,20.75,15.75,TCD,1164.0,Ennedi Ouest,114.0,Chad,102096.0,Mourtcha,both,identical +152323,21.25,15.75,TCD,1182.0,Wadi Fira,114.0,Chad,102148.0,Biltine,21.25,15.75,TCD,1182.0,Wadi Fira,114.0,Chad,102148.0,Biltine,both,identical +152324,21.75,15.75,TCD,1182.0,Wadi Fira,114.0,Chad,102151.0,Mégri,21.75,15.75,TCD,1182.0,Wadi Fira,114.0,Chad,102151.0,Mégri,both,identical +152325,22.25,15.75,TCD,1182.0,Wadi Fira,114.0,Chad,102150.0,Kobé,22.25,15.75,TCD,1182.0,Wadi Fira,114.0,Chad,102150.0,Kobé,both,identical +152326,22.75,15.75,TCD,1163.0,Ennedi Est,114.0,Chad,102094.0,Wadi Hawar,22.75,15.75,TCD,1163.0,Ennedi Est,114.0,Chad,102094.0,Wadi Hawar,both,identical +152327,23.25,15.75,TCD,1163.0,Ennedi Est,114.0,Chad,102094.0,Wadi Hawar,23.25,15.75,TCD,1163.0,Ennedi Est,114.0,Chad,102094.0,Wadi Hawar,both,identical +152328,23.75,15.75,TCD,1163.0,Ennedi Est,114.0,Chad,102094.0,Wadi Hawar,23.75,15.75,TCD,1163.0,Ennedi Est,114.0,Chad,102094.0,Wadi Hawar,both,identical +152329,24.25,15.75,SDN,1634.0,North Darfur,161.0,Sudan,105817.0,Um Baru,24.25,15.75,SDN,1634.0,North Darfur,161.0,Sudan,105817.0,Um Baru,both,identical +152330,24.75,15.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,24.75,15.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +152331,25.25,15.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,25.25,15.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +152332,25.75,15.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,25.75,15.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +152333,26.25,15.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,26.25,15.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +152334,26.75,15.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,26.75,15.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +152335,27.25,15.75,SDN,1635.0,North Kordofan,161.0,Sudan,105824.0,Soudari,27.25,15.75,SDN,1635.0,North Kordofan,161.0,Sudan,105824.0,Soudari,both,identical +152336,27.75,15.75,SDN,1635.0,North Kordofan,161.0,Sudan,105824.0,Soudari,27.75,15.75,SDN,1635.0,North Kordofan,161.0,Sudan,105824.0,Soudari,both,identical +152337,28.25,15.75,SDN,1635.0,North Kordofan,161.0,Sudan,105824.0,Soudari,28.25,15.75,SDN,1635.0,North Kordofan,161.0,Sudan,105824.0,Soudari,both,identical +152338,28.75,15.75,SDN,1635.0,North Kordofan,161.0,Sudan,105824.0,Soudari,28.75,15.75,SDN,1635.0,North Kordofan,161.0,Sudan,105824.0,Soudari,both,identical +152339,29.25,15.75,SDN,1635.0,North Kordofan,161.0,Sudan,105824.0,Soudari,29.25,15.75,SDN,1635.0,North Kordofan,161.0,Sudan,105824.0,Soudari,both,identical +152340,29.75,15.75,SDN,1635.0,North Kordofan,161.0,Sudan,105824.0,Soudari,29.75,15.75,SDN,1635.0,North Kordofan,161.0,Sudan,105824.0,Soudari,both,identical +152341,30.25,15.75,SDN,1635.0,North Kordofan,161.0,Sudan,105821.0,Gebrat Al Sheikh,30.25,15.75,SDN,1635.0,North Kordofan,161.0,Sudan,105821.0,Gebrat Al Sheikh,both,identical +152342,30.75,15.75,SDN,1635.0,North Kordofan,161.0,Sudan,105821.0,Gebrat Al Sheikh,30.75,15.75,SDN,1635.0,North Kordofan,161.0,Sudan,105821.0,Gebrat Al Sheikh,both,identical +152343,31.25,15.75,SDN,1635.0,North Kordofan,161.0,Sudan,105821.0,Gebrat Al Sheikh,31.25,15.75,SDN,1635.0,North Kordofan,161.0,Sudan,105821.0,Gebrat Al Sheikh,both,identical +152344,31.75,15.75,SDN,1635.0,North Kordofan,161.0,Sudan,105821.0,Gebrat Al Sheikh,31.75,15.75,SDN,1635.0,North Kordofan,161.0,Sudan,105821.0,Gebrat Al Sheikh,both,identical +152345,32.25,15.75,SDN,1633.0,Khartoum,161.0,Sudan,105800.0,Um Bada,32.25,15.75,SDN,1633.0,Khartoum,161.0,Sudan,105800.0,Um Bada,both,identical +152346,32.75,15.75,SDN,1633.0,Khartoum,161.0,Sudan,105795.0,Bahri,32.75,15.75,SDN,1633.0,Khartoum,161.0,Sudan,105795.0,Bahri,both,identical +152347,33.25,15.75,SDN,1633.0,Khartoum,161.0,Sudan,105799.0,Sharg An Neel,33.25,15.75,SDN,1633.0,Khartoum,161.0,Sudan,105799.0,Sharg An Neel,both,identical +152348,33.75,15.75,SDN,1633.0,Khartoum,161.0,Sudan,105799.0,Sharg An Neel,33.75,15.75,SDN,1633.0,Khartoum,161.0,Sudan,105799.0,Sharg An Neel,both,identical +152349,34.25,15.75,SDN,1631.0,Gedaref,161.0,Sudan,105772.0,Al Butanah,34.25,15.75,SDN,1631.0,Gedaref,161.0,Sudan,105772.0,Al Butanah,both,identical +152350,34.75,15.75,SDN,1632.0,Kassala,161.0,Sudan,105790.0,Reifi Khashm Elgirba,34.75,15.75,SDN,1632.0,Kassala,161.0,Sudan,105790.0,Reifi Khashm Elgirba,both,identical +152351,35.25,15.75,SDN,1632.0,Kassala,161.0,Sudan,105790.0,Reifi Khashm Elgirba,35.25,15.75,SDN,1632.0,Kassala,161.0,Sudan,105790.0,Reifi Khashm Elgirba,both,identical +152352,35.75,15.75,SDN,1632.0,Kassala,161.0,Sudan,105786.0,Reifi Aroma,35.75,15.75,SDN,1632.0,Kassala,161.0,Sudan,105786.0,Reifi Aroma,both,identical +152353,36.25,15.75,SDN,1632.0,Kassala,161.0,Sudan,105786.0,Reifi Aroma,36.25,15.75,SDN,1632.0,Kassala,161.0,Sudan,105786.0,Reifi Aroma,both,identical +152354,36.75,15.75,ERI,1282.0,Gash Barka,122.0,Eritrea,102956.0,Forto,36.75,15.75,ERI,1282.0,Gash Barka,122.0,Eritrea,102956.0,Forto,both,identical +152355,37.25,15.75,ERI,1282.0,Gash Barka,122.0,Eritrea,102955.0,Dige,37.25,15.75,ERI,1282.0,Gash Barka,122.0,Eritrea,102955.0,Dige,both,identical +152356,37.75,15.75,ERI,1282.0,Gash Barka,122.0,Eritrea,102955.0,Dige,37.75,15.75,ERI,1282.0,Gash Barka,122.0,Eritrea,102955.0,Dige,both,identical +152357,38.25,15.75,ERI,1279.0,Anseba,122.0,Eritrea,102931.0,Hagaz,38.25,15.75,ERI,1279.0,Anseba,122.0,Eritrea,102931.0,Hagaz,both,identical +152358,38.75,15.75,ERI,1279.0,Anseba,122.0,Eritrea,102983.0,Shieb,38.75,15.75,ERI,1284.0,Semienawi Keih Bahri,122.0,Eritrea,102983.0,Shieb,both,admin_reallocation +152359,39.25,15.75,ERI,1284.0,Semienawi Keih Bahri,122.0,Eritrea,102983.0,Shieb,39.25,15.75,ERI,1284.0,Semienawi Keih Bahri,122.0,Eritrea,102983.0,Shieb,both,identical +152360,39.75,15.75,ERI,1284.0,Semienawi Keih Bahri,122.0,Eritrea,102976.0,Dahlak,39.75,15.75,ERI,1284.0,Semienawi Keih Bahri,122.0,Eritrea,102976.0,Dahlak,both,identical +152361,40.25,15.75,ERI,1284.0,Semienawi Keih Bahri,122.0,Eritrea,102976.0,Dahlak,40.25,15.75,ERI,1284.0,Semienawi Keih Bahri,122.0,Eritrea,102976.0,Dahlak,both,identical +152366,42.75,15.75,YEM,3272.0,Al Hodeidah,282.0,Yemen,133695.0,Alluheyah,42.75,15.75,YEM,3272.0,Al Hodeidah,282.0,Yemen,133695.0,Alluheyah,both,identical +152367,43.25,15.75,YEM,3279.0,Hajjah,282.0,Yemen,133700.0,Az Zuhrah,43.25,15.75,YEM,3272.0,Al Hodeidah,282.0,Yemen,133700.0,Az Zuhrah,both,admin_reallocation +152368,43.75,15.75,YEM,3276.0,Amran,282.0,Yemen,133750.0,Jabal Iyal Yazid,43.75,15.75,YEM,3276.0,Amran,282.0,Yemen,133750.0,Jabal Iyal Yazid,both,identical +152369,44.25,15.75,YEM,3285.0,Sana'A,282.0,Yemen,133902.0,Arhab,44.25,15.75,YEM,3285.0,Sana'A,282.0,Yemen,133902.0,Arhab,both,identical +152370,44.75,15.75,YEM,3282.0,Ma'Rib,282.0,Yemen,133871.0,Majzar,44.75,15.75,YEM,3282.0,Ma'Rib,282.0,Yemen,133871.0,Majzar,both,identical +152371,45.25,15.75,YEM,3282.0,Ma'Rib,282.0,Yemen,133872.0,Marib,45.25,15.75,YEM,3282.0,Ma'Rib,282.0,Yemen,133872.0,Marib,both,identical +152372,45.75,15.75,YEM,3282.0,Ma'Rib,282.0,Yemen,133872.0,Marib,45.75,15.75,YEM,3282.0,Ma'Rib,282.0,Yemen,133872.0,Marib,both,identical +152373,46.25,15.75,YEM,3282.0,Ma'Rib,282.0,Yemen,133872.0,Marib,46.25,15.75,YEM,3282.0,Ma'Rib,282.0,Yemen,133872.0,Marib,both,identical +152374,46.75,15.75,YEM,3278.0,Hadramawt,282.0,Yemen,133772.0,Al Abr,46.75,15.75,YEM,3278.0,Hadramawt,282.0,Yemen,133772.0,Al Abr,both,identical +152375,47.25,15.75,YEM,3278.0,Hadramawt,282.0,Yemen,133772.0,Al Abr,47.25,15.75,YEM,3278.0,Hadramawt,282.0,Yemen,133772.0,Al Abr,both,identical +152376,47.75,15.75,YEM,3278.0,Hadramawt,282.0,Yemen,133772.0,Al Abr,47.75,15.75,YEM,3278.0,Hadramawt,282.0,Yemen,133772.0,Al Abr,both,identical +152377,48.25,15.75,YEM,3278.0,Hadramawt,282.0,Yemen,133776.0,Al Qatn,48.25,15.75,YEM,3278.0,Hadramawt,282.0,Yemen,133776.0,Al Qatn,both,identical +152378,48.75,15.75,YEM,3278.0,Hadramawt,282.0,Yemen,133790.0,Sah,48.75,15.75,YEM,3278.0,Hadramawt,282.0,Yemen,133790.0,Sah,both,identical +152379,49.25,15.75,YEM,3278.0,Hadramawt,282.0,Yemen,133784.0,Ghayl Bin Yamin,49.25,15.75,YEM,3278.0,Hadramawt,282.0,Yemen,133784.0,Ghayl Bin Yamin,both,identical +152380,49.75,15.75,YEM,3278.0,Hadramawt,282.0,Yemen,133779.0,As Sawm,49.75,15.75,YEM,3278.0,Hadramawt,282.0,Yemen,133779.0,As Sawm,both,identical +152381,50.25,15.75,YEM,3274.0,Al Maharah,282.0,Yemen,133721.0,Al Masilah,50.25,15.75,YEM,3274.0,Al Maharah,282.0,Yemen,133721.0,Al Masilah,both,identical +152382,50.75,15.75,YEM,3274.0,Al Maharah,282.0,Yemen,133721.0,Al Masilah,50.75,15.75,YEM,3274.0,Al Maharah,282.0,Yemen,133721.0,Al Masilah,both,identical +152383,51.25,15.75,YEM,3274.0,Al Maharah,282.0,Yemen,133726.0,Qishn,51.25,15.75,YEM,3274.0,Al Maharah,282.0,Yemen,133726.0,Qishn,both,identical +152384,51.75,15.75,YEM,3274.0,Al Maharah,282.0,Yemen,133724.0,Huswain,51.75,15.75,YEM,3274.0,Al Maharah,282.0,Yemen,133724.0,Huswain,both,identical +152385,52.25,15.75,YEM,3274.0,Al Maharah,282.0,Yemen,133720.0,Al Ghaydah,52.25,15.75,YEM,3274.0,Al Maharah,282.0,Yemen,133720.0,Al Ghaydah,both,identical +152952,-24.25,16.25,CPV,1140.0,Sao Nicolau,111.0,Cabo Verde,102005.0,Tarrafal De Sao Nicolau,-24.25,16.25,CPV,1140.0,Sao Nicolau,111.0,Cabo Verde,102005.0,Tarrafal De Sao Nicolau,both,identical +152955,-22.75,16.25,CPV,1133.0,Boavista,111.0,Cabo Verde,101985.0,Boavista,-22.75,16.25,CPV,1133.0,Boavista,111.0,Cabo Verde,101985.0,Boavista,both,identical +152967,-16.75,16.25,MRT,1460.0,Trarza,144.0,Mauritania,104217.0,Keur-Macene,-16.75,16.25,MRT,1460.0,Trarza,144.0,Mauritania,104217.0,Keur-Macene,both,identical +152968,-16.25,16.25,SEN,1574.0,Saint Louis,155.0,Senegal,105496.0,Dagana,-16.25,16.25,SEN,1574.0,Saint Louis,155.0,Senegal,105496.0,Dagana,both,identical +152969,-15.75,16.25,SEN,1574.0,Saint Louis,155.0,Senegal,105496.0,Dagana,-15.75,16.25,SEN,1574.0,Saint Louis,155.0,Senegal,105496.0,Dagana,both,identical +152970,-15.25,16.25,SEN,1574.0,Saint Louis,155.0,Senegal,105497.0,Podor,-15.25,16.25,SEN,1574.0,Saint Louis,155.0,Senegal,105497.0,Podor,both,identical +152971,-14.75,16.25,SEN,1574.0,Saint Louis,155.0,Senegal,105497.0,Podor,-14.75,16.25,SEN,1574.0,Saint Louis,155.0,Senegal,105497.0,Podor,both,identical +152972,-14.25,16.25,SEN,1574.0,Saint Louis,155.0,Senegal,105497.0,Podor,-14.25,16.25,SEN,1574.0,Saint Louis,155.0,Senegal,105497.0,Podor,both,identical +152973,-13.75,16.25,MRT,1448.0,Brakna,144.0,Mauritania,104172.0,M'Bagne,-13.75,16.25,MRT,1448.0,Brakna,144.0,Mauritania,104172.0,M'Bagne,both,identical +152974,-13.25,16.25,MRT,1450.0,Gorgol,144.0,Mauritania,104178.0,Lexeiba,-13.25,16.25,MRT,1450.0,Gorgol,144.0,Mauritania,104178.0,Lexeiba,both,identical +152975,-12.75,16.25,MRT,1450.0,Gorgol,144.0,Mauritania,104179.0,M'Bout,-12.75,16.25,MRT,1450.0,Gorgol,144.0,Mauritania,104179.0,M'Bout,both,identical +152976,-12.25,16.25,MRT,1447.0,Assaba,144.0,Mauritania,104164.0,Barkeol,-12.25,16.25,MRT,1447.0,Assaba,144.0,Mauritania,104164.0,Barkeol,both,identical +152977,-11.75,16.25,MRT,1447.0,Assaba,144.0,Mauritania,104168.0,Kiffa,-11.75,16.25,MRT,1447.0,Assaba,144.0,Mauritania,104168.0,Kiffa,both,identical +152978,-11.25,16.25,MRT,1447.0,Assaba,144.0,Mauritania,104167.0,Kankossa,-11.25,16.25,MRT,1447.0,Assaba,144.0,Mauritania,104167.0,Kankossa,both,identical +152979,-10.75,16.25,MRT,1453.0,Hodh El Gharbi,144.0,Mauritania,104197.0,Tintane,-10.75,16.25,MRT,1453.0,Hodh El Gharbi,144.0,Mauritania,104197.0,Tintane,both,identical +152980,-10.25,16.25,MRT,1453.0,Hodh El Gharbi,144.0,Mauritania,104197.0,Tintane,-10.25,16.25,MRT,1453.0,Hodh El Gharbi,144.0,Mauritania,104197.0,Tintane,both,identical +152981,-9.75,16.25,MRT,1453.0,Hodh El Gharbi,144.0,Mauritania,104194.0,Aioun,-9.75,16.25,MRT,1453.0,Hodh El Gharbi,144.0,Mauritania,104194.0,Aioun,both,identical +152982,-9.25,16.25,MRT,1453.0,Hodh El Gharbi,144.0,Mauritania,104195.0,Kobeni,-9.25,16.25,MRT,1453.0,Hodh El Gharbi,144.0,Mauritania,104195.0,Kobeni,both,identical +152983,-8.75,16.25,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104189.0,Djigueni,-8.75,16.25,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104189.0,Djigueni,both,identical +152984,-8.25,16.25,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104193.0,Timbedra,-8.25,16.25,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104193.0,Timbedra,both,identical +152985,-7.75,16.25,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104191.0,Nema,-7.75,16.25,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104191.0,Nema,both,identical +152986,-7.25,16.25,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104191.0,Nema,-7.25,16.25,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104191.0,Nema,both,identical +152987,-6.75,16.25,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104188.0,Bassikounou,-6.75,16.25,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104188.0,Bassikounou,both,identical +152988,-6.25,16.25,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104188.0,Bassikounou,-6.25,16.25,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104188.0,Bassikounou,both,identical +152989,-5.75,16.25,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104188.0,Bassikounou,-5.75,16.25,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104188.0,Bassikounou,both,identical +152990,-5.25,16.25,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,-5.25,16.25,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,both,identical +152991,-4.75,16.25,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,-4.75,16.25,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,both,identical +152992,-4.25,16.25,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,-4.25,16.25,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,both,identical +152993,-3.75,16.25,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,-3.75,16.25,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,both,identical +152994,-3.25,16.25,MLI,1445.0,Tombouctou,143.0,Mali,104155.0,Diré,-3.25,16.25,MLI,1445.0,Tombouctou,143.0,Mali,104155.0,Diré,both,identical +152995,-2.75,16.25,MLI,1445.0,Tombouctou,143.0,Mali,104157.0,Gourma-Rharous,-2.75,16.25,MLI,1445.0,Tombouctou,143.0,Mali,104157.0,Gourma-Rharous,both,identical +152996,-2.25,16.25,MLI,1445.0,Tombouctou,143.0,Mali,104157.0,Gourma-Rharous,-2.25,16.25,MLI,1445.0,Tombouctou,143.0,Mali,104157.0,Gourma-Rharous,both,identical +152997,-1.75,16.25,MLI,1445.0,Tombouctou,143.0,Mali,104157.0,Gourma-Rharous,-1.75,16.25,MLI,1445.0,Tombouctou,143.0,Mali,104157.0,Gourma-Rharous,both,identical +152998,-1.25,16.25,MLI,1445.0,Tombouctou,143.0,Mali,104157.0,Gourma-Rharous,-1.25,16.25,MLI,1445.0,Tombouctou,143.0,Mali,104157.0,Gourma-Rharous,both,identical +152999,-0.75,16.25,MLI,1438.0,Gao,143.0,Mali,104113.0,Gao,-0.75,16.25,MLI,1438.0,Gao,143.0,Mali,104113.0,Gao,both,identical +153000,-0.25,16.25,MLI,1438.0,Gao,143.0,Mali,104113.0,Gao,-0.25,16.25,MLI,1438.0,Gao,143.0,Mali,104113.0,Gao,both,identical +153001,0.25,16.25,MLI,1438.0,Gao,143.0,Mali,104113.0,Gao,0.25,16.25,MLI,1438.0,Gao,143.0,Mali,104113.0,Gao,both,identical +153002,0.75,16.25,MLI,1438.0,Gao,143.0,Mali,104113.0,Gao,0.75,16.25,MLI,1438.0,Gao,143.0,Mali,104113.0,Gao,both,identical +153003,1.25,16.25,MLI,1438.0,Gao,143.0,Mali,104111.0,Ansongo,1.25,16.25,MLI,1438.0,Gao,143.0,Mali,104111.0,Ansongo,both,identical +153004,1.75,16.25,MLI,1438.0,Gao,143.0,Mali,104114.0,Ménaka,1.75,16.25,MLI,1438.0,Gao,143.0,Mali,104114.0,Ménaka,both,identical +153005,2.25,16.25,MLI,1438.0,Gao,143.0,Mali,104114.0,Ménaka,2.25,16.25,MLI,1438.0,Gao,143.0,Mali,104114.0,Ménaka,both,identical +153006,2.75,16.25,MLI,1438.0,Gao,143.0,Mali,104114.0,Ménaka,2.75,16.25,MLI,1438.0,Gao,143.0,Mali,104114.0,Ménaka,both,identical +153007,3.25,16.25,MLI,1438.0,Gao,143.0,Mali,104114.0,Ménaka,3.25,16.25,MLI,1438.0,Gao,143.0,Mali,104114.0,Ménaka,both,identical +153008,3.75,16.25,MLI,1438.0,Gao,143.0,Mali,104114.0,Ménaka,3.75,16.25,MLI,1438.0,Gao,143.0,Mali,104114.0,Ménaka,both,identical +153009,4.25,16.25,NER,1514.0,Tahoua,150.0,Niger,104607.0,Tillia,4.25,16.25,NER,1514.0,Tahoua,150.0,Niger,104607.0,Tillia,both,identical +153010,4.75,16.25,NER,1514.0,Tahoua,150.0,Niger,104607.0,Tillia,4.75,16.25,NER,1514.0,Tahoua,150.0,Niger,104607.0,Tillia,both,identical +153011,5.25,16.25,NER,1514.0,Tahoua,150.0,Niger,104607.0,Tillia,5.25,16.25,NER,1514.0,Tahoua,150.0,Niger,104607.0,Tillia,both,identical +153012,5.75,16.25,NER,1514.0,Tahoua,150.0,Niger,104606.0,Tchintabaraden,5.75,16.25,NER,1514.0,Tahoua,150.0,Niger,104606.0,Tchintabaraden,both,identical +153013,6.25,16.25,NER,1514.0,Tahoua,150.0,Niger,104606.0,Tchintabaraden,6.25,16.25,NER,1514.0,Tahoua,150.0,Niger,104606.0,Tchintabaraden,both,identical +153014,6.75,16.25,NER,1509.0,Agadez,150.0,Niger,104571.0,Ingall,6.75,16.25,NER,1509.0,Agadez,150.0,Niger,104571.0,Ingall,both,identical +153015,7.25,16.25,NER,1509.0,Agadez,150.0,Niger,104571.0,Ingall,7.25,16.25,NER,1509.0,Agadez,150.0,Niger,104571.0,Ingall,both,identical +153016,7.75,16.25,NER,1509.0,Agadez,150.0,Niger,104567.0,Aderbissinat,7.75,16.25,NER,1509.0,Agadez,150.0,Niger,104567.0,Aderbissinat,both,identical +153017,8.25,16.25,NER,1509.0,Agadez,150.0,Niger,104567.0,Aderbissinat,8.25,16.25,NER,1509.0,Agadez,150.0,Niger,104567.0,Aderbissinat,both,identical +153018,8.75,16.25,NER,1509.0,Agadez,150.0,Niger,104567.0,Aderbissinat,8.75,16.25,NER,1509.0,Agadez,150.0,Niger,104567.0,Aderbissinat,both,identical +153019,9.25,16.25,NER,1509.0,Agadez,150.0,Niger,104567.0,Aderbissinat,9.25,16.25,NER,1509.0,Agadez,150.0,Niger,104567.0,Aderbissinat,both,identical +153020,9.75,16.25,NER,1516.0,Zinder,150.0,Niger,104567.0,Aderbissinat,9.75,16.25,NER,1509.0,Agadez,150.0,Niger,104567.0,Aderbissinat,both,admin_reallocation +153021,10.25,16.25,NER,1516.0,Zinder,150.0,Niger,104630.0,Tesker,10.25,16.25,NER,1516.0,Zinder,150.0,Niger,104630.0,Tesker,both,identical +153022,10.75,16.25,NER,1516.0,Zinder,150.0,Niger,104630.0,Tesker,10.75,16.25,NER,1516.0,Zinder,150.0,Niger,104630.0,Tesker,both,identical +153023,11.25,16.25,NER,1516.0,Zinder,150.0,Niger,104630.0,Tesker,11.25,16.25,NER,1516.0,Zinder,150.0,Niger,104630.0,Tesker,both,identical +153024,11.75,16.25,NER,1516.0,Zinder,150.0,Niger,104630.0,Tesker,11.75,16.25,NER,1516.0,Zinder,150.0,Niger,104630.0,Tesker,both,identical +153025,12.25,16.25,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,12.25,16.25,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,both,identical +153026,12.75,16.25,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,12.75,16.25,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,both,identical +153027,13.25,16.25,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,13.25,16.25,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,both,identical +153028,13.75,16.25,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,13.75,16.25,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,both,identical +153029,14.25,16.25,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,14.25,16.25,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,both,identical +153030,14.75,16.25,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,14.75,16.25,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,both,identical +153031,15.25,16.25,TCD,1168.0,Kanem,114.0,Chad,102105.0,Nord Kanem,15.25,16.25,TCD,1168.0,Kanem,114.0,Chad,102105.0,Nord Kanem,both,identical +153032,15.75,16.25,TCD,1168.0,Kanem,114.0,Chad,102105.0,Nord Kanem,15.75,16.25,TCD,1168.0,Kanem,114.0,Chad,102105.0,Nord Kanem,both,identical +153033,16.25,16.25,TCD,1168.0,Kanem,114.0,Chad,102105.0,Nord Kanem,16.25,16.25,TCD,1168.0,Kanem,114.0,Chad,102105.0,Nord Kanem,both,identical +153034,16.75,16.25,TCD,1161.0,Borkou,114.0,Chad,102089.0,Borkou Yala,16.75,16.25,TCD,1161.0,Borkou,114.0,Chad,102089.0,Borkou Yala,both,identical +153035,17.25,16.25,TCD,1161.0,Borkou,114.0,Chad,102088.0,Borkou,17.25,16.25,TCD,1161.0,Borkou,114.0,Chad,102088.0,Borkou,both,identical +153036,17.75,16.25,TCD,1161.0,Borkou,114.0,Chad,102088.0,Borkou,17.75,16.25,TCD,1161.0,Borkou,114.0,Chad,102088.0,Borkou,both,identical +153037,18.25,16.25,TCD,1161.0,Borkou,114.0,Chad,102088.0,Borkou,18.25,16.25,TCD,1161.0,Borkou,114.0,Chad,102088.0,Borkou,both,identical +153038,18.75,16.25,TCD,1161.0,Borkou,114.0,Chad,102088.0,Borkou,18.75,16.25,TCD,1161.0,Borkou,114.0,Chad,102088.0,Borkou,both,identical +153039,19.25,16.25,TCD,1161.0,Borkou,114.0,Chad,102088.0,Borkou,19.25,16.25,TCD,1161.0,Borkou,114.0,Chad,102088.0,Borkou,both,identical +153040,19.75,16.25,TCD,1161.0,Borkou,114.0,Chad,102088.0,Borkou,19.75,16.25,TCD,1161.0,Borkou,114.0,Chad,102088.0,Borkou,both,identical +153041,20.25,16.25,TCD,1161.0,Borkou,114.0,Chad,102088.0,Borkou,20.25,16.25,TCD,1161.0,Borkou,114.0,Chad,102088.0,Borkou,both,identical +153042,20.75,16.25,TCD,1164.0,Ennedi Ouest,114.0,Chad,102096.0,Mourtcha,20.75,16.25,TCD,1164.0,Ennedi Ouest,114.0,Chad,102096.0,Mourtcha,both,identical +153043,21.25,16.25,TCD,1164.0,Ennedi Ouest,114.0,Chad,102096.0,Mourtcha,21.25,16.25,TCD,1164.0,Ennedi Ouest,114.0,Chad,102096.0,Mourtcha,both,identical +153044,21.75,16.25,TCD,1164.0,Ennedi Ouest,114.0,Chad,102096.0,Mourtcha,21.75,16.25,TCD,1164.0,Ennedi Ouest,114.0,Chad,102096.0,Mourtcha,both,identical +153045,22.25,16.25,TCD,1163.0,Ennedi Est,114.0,Chad,102094.0,Wadi Hawar,22.25,16.25,TCD,1163.0,Ennedi Est,114.0,Chad,102094.0,Wadi Hawar,both,identical +153046,22.75,16.25,TCD,1163.0,Ennedi Est,114.0,Chad,102093.0,Am-Djarass,22.75,16.25,TCD,1163.0,Ennedi Est,114.0,Chad,102093.0,Am-Djarass,both,identical +153047,23.25,16.25,TCD,1163.0,Ennedi Est,114.0,Chad,102093.0,Am-Djarass,23.25,16.25,TCD,1163.0,Ennedi Est,114.0,Chad,102093.0,Am-Djarass,both,identical +153048,23.75,16.25,TCD,1163.0,Ennedi Est,114.0,Chad,102094.0,Wadi Hawar,23.75,16.25,TCD,1163.0,Ennedi Est,114.0,Chad,102094.0,Wadi Hawar,both,identical +153049,24.25,16.25,SDN,1634.0,North Darfur,161.0,Sudan,105817.0,Um Baru,24.25,16.25,SDN,1634.0,North Darfur,161.0,Sudan,105817.0,Um Baru,both,identical +153050,24.75,16.25,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,24.75,16.25,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +153051,25.25,16.25,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,25.25,16.25,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +153052,25.75,16.25,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,25.75,16.25,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +153053,26.25,16.25,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,26.25,16.25,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +153054,26.75,16.25,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,26.75,16.25,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +153055,27.25,16.25,SDN,1635.0,North Kordofan,161.0,Sudan,105824.0,Soudari,27.25,16.25,SDN,1635.0,North Kordofan,161.0,Sudan,105824.0,Soudari,both,identical +153056,27.75,16.25,SDN,1635.0,North Kordofan,161.0,Sudan,105824.0,Soudari,27.75,16.25,SDN,1635.0,North Kordofan,161.0,Sudan,105824.0,Soudari,both,identical +153057,28.25,16.25,SDN,1635.0,North Kordofan,161.0,Sudan,105824.0,Soudari,28.25,16.25,SDN,1635.0,North Kordofan,161.0,Sudan,105824.0,Soudari,both,identical +153058,28.75,16.25,SDN,1635.0,North Kordofan,161.0,Sudan,105824.0,Soudari,28.75,16.25,SDN,1635.0,North Kordofan,161.0,Sudan,105824.0,Soudari,both,identical +153059,29.25,16.25,SDN,1635.0,North Kordofan,161.0,Sudan,105824.0,Soudari,29.25,16.25,SDN,1635.0,North Kordofan,161.0,Sudan,105824.0,Soudari,both,identical +153060,29.75,16.25,SDN,1635.0,North Kordofan,161.0,Sudan,105824.0,Soudari,29.75,16.25,SDN,1635.0,North Kordofan,161.0,Sudan,105824.0,Soudari,both,identical +153061,30.25,16.25,SDN,1635.0,North Kordofan,161.0,Sudan,105824.0,Soudari,30.25,16.25,SDN,1635.0,North Kordofan,161.0,Sudan,105824.0,Soudari,both,identical +153062,30.75,16.25,SDN,1635.0,North Kordofan,161.0,Sudan,105821.0,Gebrat Al Sheikh,30.75,16.25,SDN,1635.0,North Kordofan,161.0,Sudan,105821.0,Gebrat Al Sheikh,both,identical +153063,31.25,16.25,SDN,1635.0,North Kordofan,161.0,Sudan,105821.0,Gebrat Al Sheikh,31.25,16.25,SDN,1635.0,North Kordofan,161.0,Sudan,105821.0,Gebrat Al Sheikh,both,identical +153064,31.75,16.25,SDN,1635.0,North Kordofan,161.0,Sudan,105821.0,Gebrat Al Sheikh,31.75,16.25,SDN,1635.0,North Kordofan,161.0,Sudan,105821.0,Gebrat Al Sheikh,both,identical +153065,32.25,16.25,SDN,1633.0,Khartoum,161.0,Sudan,105797.0,Karrari,32.25,16.25,SDN,1633.0,Khartoum,161.0,Sudan,105797.0,Karrari,both,identical +153066,32.75,16.25,SDN,1633.0,Khartoum,161.0,Sudan,105795.0,Bahri,32.75,16.25,SDN,1633.0,Khartoum,161.0,Sudan,105795.0,Bahri,both,identical +153067,33.25,16.25,SDN,1638.0,River Nile,161.0,Sudan,105850.0,Shendi,33.25,16.25,SDN,1638.0,River Nile,161.0,Sudan,105850.0,Shendi,both,identical +153068,33.75,16.25,SDN,1638.0,River Nile,161.0,Sudan,105850.0,Shendi,33.75,16.25,SDN,1638.0,River Nile,161.0,Sudan,105850.0,Shendi,both,identical +153069,34.25,16.25,SDN,1638.0,River Nile,161.0,Sudan,105850.0,Shendi,34.25,16.25,SDN,1638.0,River Nile,161.0,Sudan,105850.0,Shendi,both,identical +153070,34.75,16.25,SDN,1632.0,Kassala,161.0,Sudan,105790.0,Reifi Khashm Elgirba,34.75,16.25,SDN,1632.0,Kassala,161.0,Sudan,105790.0,Reifi Khashm Elgirba,both,identical +153071,35.25,16.25,SDN,1632.0,Kassala,161.0,Sudan,105790.0,Reifi Khashm Elgirba,35.25,16.25,SDN,1632.0,Kassala,161.0,Sudan,105790.0,Reifi Khashm Elgirba,both,identical +153072,35.75,16.25,SDN,1632.0,Kassala,161.0,Sudan,105792.0,Reifi Shamal Ad Delta,35.75,16.25,SDN,1632.0,Kassala,161.0,Sudan,105792.0,Reifi Shamal Ad Delta,both,identical +153073,36.25,16.25,SDN,1632.0,Kassala,161.0,Sudan,105792.0,Reifi Shamal Ad Delta,36.25,16.25,SDN,1632.0,Kassala,161.0,Sudan,105792.0,Reifi Shamal Ad Delta,both,identical +153074,36.75,16.25,SDN,1632.0,Kassala,161.0,Sudan,105793.0,Reifi Telkok,36.75,16.25,SDN,1632.0,Kassala,161.0,Sudan,105793.0,Reifi Telkok,both,identical +153075,37.25,16.25,ERI,1279.0,Anseba,122.0,Eritrea,102935.0,Kerkebet,37.25,16.25,ERI,1279.0,Anseba,122.0,Eritrea,102935.0,Kerkebet,both,identical +153076,37.75,16.25,ERI,1279.0,Anseba,122.0,Eritrea,102935.0,Kerkebet,37.75,16.25,ERI,1279.0,Anseba,122.0,Eritrea,102935.0,Kerkebet,both,identical +153077,38.25,16.25,ERI,1279.0,Anseba,122.0,Eritrea,102930.0,Habero,38.25,16.25,ERI,1279.0,Anseba,122.0,Eritrea,102930.0,Habero,both,identical +153078,38.75,16.25,ERI,1284.0,Semienawi Keih Bahri,122.0,Eritrea,102975.0,Afabet,38.75,16.25,ERI,1284.0,Semienawi Keih Bahri,122.0,Eritrea,102975.0,Afabet,both,identical +153079,39.25,16.25,ERI,1284.0,Semienawi Keih Bahri,122.0,Eritrea,102975.0,Afabet,39.25,16.25,ERI,1284.0,Semienawi Keih Bahri,122.0,Eritrea,102975.0,Afabet,both,identical +153086,42.75,16.25,YEM,3279.0,Hajjah,282.0,Yemen,133821.0,Midi,42.75,16.25,YEM,3279.0,Hajjah,282.0,Yemen,133821.0,Midi,both,identical +153087,43.25,16.25,YEM,3279.0,Hajjah,282.0,Yemen,133813.0,Haradh,43.25,16.25,YEM,3279.0,Hajjah,282.0,Yemen,133813.0,Haradh,both,identical +153088,43.75,16.25,YEM,3276.0,Amran,282.0,Yemen,133740.0,Al Qaflah,43.75,16.25,YEM,3276.0,Amran,282.0,Yemen,133740.0,Al Qaflah,both,identical +153089,44.25,16.25,YEM,3276.0,Amran,282.0,Yemen,133747.0,Harf Sufyan,44.25,16.25,YEM,3276.0,Amran,282.0,Yemen,133747.0,Harf Sufyan,both,identical +153090,44.75,16.25,YEM,3273.0,Al Jawf,282.0,Yemen,133709.0,Al Hazm,44.75,16.25,YEM,3273.0,Al Jawf,282.0,Yemen,133709.0,Al Hazm,both,identical +153091,45.25,16.25,YEM,3273.0,Al Jawf,282.0,Yemen,133717.0,Khabb Wa Ash Sha'Af,45.25,16.25,YEM,3273.0,Al Jawf,282.0,Yemen,133717.0,Khabb Wa Ash Sha'Af,both,identical +153092,45.75,16.25,YEM,3273.0,Al Jawf,282.0,Yemen,133717.0,Khabb Wa Ash Sha'Af,45.75,16.25,YEM,3273.0,Al Jawf,282.0,Yemen,133717.0,Khabb Wa Ash Sha'Af,both,identical +153093,46.25,16.25,YEM,3273.0,Al Jawf,282.0,Yemen,133717.0,Khabb Wa Ash Sha'Af,46.25,16.25,YEM,3273.0,Al Jawf,282.0,Yemen,133717.0,Khabb Wa Ash Sha'Af,both,identical +153094,46.75,16.25,YEM,3273.0,Al Jawf,282.0,Yemen,133717.0,Khabb Wa Ash Sha'Af,46.75,16.25,YEM,3273.0,Al Jawf,282.0,Yemen,133717.0,Khabb Wa Ash Sha'Af,both,identical +153095,47.25,16.25,YEM,3278.0,Hadramawt,282.0,Yemen,133797.0,Zamakh Wa Manwakh,47.25,16.25,YEM,3278.0,Hadramawt,282.0,Yemen,133797.0,Zamakh Wa Manwakh,both,identical +153096,47.75,16.25,YEM,3278.0,Hadramawt,282.0,Yemen,133785.0,Hagr As Sai'Ar,47.75,16.25,YEM,3278.0,Hadramawt,282.0,Yemen,133785.0,Hagr As Sai'Ar,both,identical +153097,48.25,16.25,YEM,3278.0,Hadramawt,282.0,Yemen,133785.0,Hagr As Sai'Ar,48.25,16.25,YEM,3278.0,Hadramawt,282.0,Yemen,133785.0,Hagr As Sai'Ar,both,identical +153098,48.75,16.25,YEM,3278.0,Hadramawt,282.0,Yemen,133775.0,Al Qaf,48.75,16.25,YEM,3278.0,Hadramawt,282.0,Yemen,133775.0,Al Qaf,both,identical +153099,49.25,16.25,YEM,3278.0,Hadramawt,282.0,Yemen,133779.0,As Sawm,49.25,16.25,YEM,3278.0,Hadramawt,282.0,Yemen,133779.0,As Sawm,both,identical +153100,49.75,16.25,YEM,3278.0,Hadramawt,282.0,Yemen,133779.0,As Sawm,49.75,16.25,YEM,3278.0,Hadramawt,282.0,Yemen,133779.0,As Sawm,both,identical +153101,50.25,16.25,YEM,3274.0,Al Maharah,282.0,Yemen,133725.0,Man'Ar,50.25,16.25,YEM,3274.0,Al Maharah,282.0,Yemen,133725.0,Man'Ar,both,identical +153102,50.75,16.25,YEM,3274.0,Al Maharah,282.0,Yemen,133725.0,Man'Ar,50.75,16.25,YEM,3274.0,Al Maharah,282.0,Yemen,133725.0,Man'Ar,both,identical +153103,51.25,16.25,YEM,3274.0,Al Maharah,282.0,Yemen,133725.0,Man'Ar,51.25,16.25,YEM,3274.0,Al Maharah,282.0,Yemen,133725.0,Man'Ar,both,identical +153104,51.75,16.25,YEM,3274.0,Al Maharah,282.0,Yemen,133720.0,Al Ghaydah,51.75,16.25,YEM,3274.0,Al Maharah,282.0,Yemen,133720.0,Al Ghaydah,both,identical +153105,52.25,16.25,YEM,3274.0,Al Maharah,282.0,Yemen,133720.0,Al Ghaydah,52.25,16.25,YEM,3274.0,Al Maharah,282.0,Yemen,133720.0,Al Ghaydah,both,identical +153106,52.75,16.25,YEM,3274.0,Al Maharah,282.0,Yemen,133720.0,Al Ghaydah,52.75,16.25,YEM,3274.0,Al Maharah,282.0,Yemen,133720.0,Al Ghaydah,both,identical +153670,-25.25,16.75,CPV,1139.0,Santo Antao,111.0,Cabo Verde,102002.0,Porto Novo,-25.25,16.75,CPV,1139.0,Santo Antao,111.0,Cabo Verde,102002.0,Porto Novo,both,identical +153671,-24.75,16.75,CPV,1141.0,Sao Vicente,111.0,Cabo Verde,102006.0,Sao Vicente,-24.75,16.75,CPV,1141.0,Sao Vicente,111.0,Cabo Verde,102006.0,Sao Vicente,both,identical +153672,-24.25,16.75,CPV,1140.0,Sao Nicolau,111.0,Cabo Verde,102004.0,Ribeira Brava,-24.25,16.75,CPV,1140.0,Sao Nicolau,111.0,Cabo Verde,102004.0,Ribeira Brava,both,identical +153675,-22.75,16.75,CPV,1137.0,Sal,111.0,Cabo Verde,101991.0,Sal,-22.75,16.75,CPV,1137.0,Sal,111.0,Cabo Verde,101991.0,Sal,both,identical +153688,-16.25,16.75,MRT,1460.0,Trarza,144.0,Mauritania,104217.0,Keur-Macene,-16.25,16.75,MRT,1460.0,Trarza,144.0,Mauritania,104217.0,Keur-Macene,both,identical +153689,-15.75,16.75,MRT,1460.0,Trarza,144.0,Mauritania,104218.0,Mederdra,-15.75,16.75,MRT,1460.0,Trarza,144.0,Mauritania,104218.0,Mederdra,both,identical +153690,-15.25,16.75,MRT,1460.0,Trarza,144.0,Mauritania,104222.0,Tékane,-15.25,16.75,MRT,1460.0,Trarza,144.0,Mauritania,104222.0,Tékane,both,identical +153691,-14.75,16.75,MRT,1460.0,Trarza,144.0,Mauritania,104171.0,Boghe,-14.75,16.75,SEN,1574.0,Saint Louis,155.0,Senegal,105497.0,Podor,both,country_reassignment +153692,-14.25,16.75,MRT,1448.0,Brakna,144.0,Mauritania,104169.0,Aleg,-14.25,16.75,MRT,1448.0,Brakna,144.0,Mauritania,104169.0,Aleg,both,identical +153693,-13.75,16.75,MRT,1448.0,Brakna,144.0,Mauritania,104173.0,Maal,-13.75,16.75,MRT,1448.0,Brakna,144.0,Mauritania,104173.0,Maal,both,identical +153694,-13.25,16.75,MRT,1448.0,Brakna,144.0,Mauritania,104173.0,Maal,-13.25,16.75,MRT,1448.0,Brakna,144.0,Mauritania,104173.0,Maal,both,identical +153695,-12.75,16.75,MRT,1447.0,Assaba,144.0,Mauritania,104164.0,Barkeol,-12.75,16.75,MRT,1447.0,Assaba,144.0,Mauritania,104164.0,Barkeol,both,identical +153696,-12.25,16.75,MRT,1447.0,Assaba,144.0,Mauritania,104164.0,Barkeol,-12.25,16.75,MRT,1447.0,Assaba,144.0,Mauritania,104164.0,Barkeol,both,identical +153697,-11.75,16.75,MRT,1447.0,Assaba,144.0,Mauritania,104168.0,Kiffa,-11.75,16.75,MRT,1447.0,Assaba,144.0,Mauritania,104168.0,Kiffa,both,identical +153698,-11.25,16.75,MRT,1447.0,Assaba,144.0,Mauritania,104168.0,Kiffa,-11.25,16.75,MRT,1447.0,Assaba,144.0,Mauritania,104168.0,Kiffa,both,identical +153699,-10.75,16.75,MRT,1453.0,Hodh El Gharbi,144.0,Mauritania,104196.0,Tamchekett,-10.75,16.75,MRT,1453.0,Hodh El Gharbi,144.0,Mauritania,104196.0,Tamchekett,both,identical +153700,-10.25,16.75,MRT,1453.0,Hodh El Gharbi,144.0,Mauritania,104196.0,Tamchekett,-10.25,16.75,MRT,1453.0,Hodh El Gharbi,144.0,Mauritania,104196.0,Tamchekett,both,identical +153701,-9.75,16.75,MRT,1453.0,Hodh El Gharbi,144.0,Mauritania,104194.0,Aioun,-9.75,16.75,MRT,1453.0,Hodh El Gharbi,144.0,Mauritania,104194.0,Aioun,both,identical +153702,-9.25,16.75,MRT,1453.0,Hodh El Gharbi,144.0,Mauritania,104194.0,Aioun,-9.25,16.75,MRT,1453.0,Hodh El Gharbi,144.0,Mauritania,104194.0,Aioun,both,identical +153703,-8.75,16.75,MRT,1453.0,Hodh El Gharbi,144.0,Mauritania,104194.0,Aioun,-8.75,16.75,MRT,1453.0,Hodh El Gharbi,144.0,Mauritania,104194.0,Aioun,both,identical +153704,-8.25,16.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104193.0,Timbedra,-8.25,16.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104193.0,Timbedra,both,identical +153705,-7.75,16.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,-7.75,16.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,both,identical +153706,-7.25,16.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104191.0,Nema,-7.25,16.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104191.0,Nema,both,identical +153707,-6.75,16.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104190.0,N'Beiket Lehwach,-6.75,16.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104190.0,N'Beiket Lehwach,both,identical +153708,-6.25,16.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104190.0,N'Beiket Lehwach,-6.25,16.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104190.0,N'Beiket Lehwach,both,identical +153709,-5.75,16.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104190.0,N'Beiket Lehwach,-5.75,16.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104190.0,N'Beiket Lehwach,both,identical +153710,-5.25,16.75,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,-5.25,16.75,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,both,identical +153711,-4.75,16.75,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,-4.75,16.75,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,both,identical +153712,-4.25,16.75,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,-4.25,16.75,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,both,identical +153713,-3.75,16.75,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,-3.75,16.75,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,both,identical +153714,-3.25,16.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-3.25,16.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +153715,-2.75,16.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-2.75,16.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +153716,-2.25,16.75,MLI,1445.0,Tombouctou,143.0,Mali,104157.0,Gourma-Rharous,-2.25,16.75,MLI,1445.0,Tombouctou,143.0,Mali,104157.0,Gourma-Rharous,both,identical +153717,-1.75,16.75,MLI,1445.0,Tombouctou,143.0,Mali,104157.0,Gourma-Rharous,-1.75,16.75,MLI,1445.0,Tombouctou,143.0,Mali,104157.0,Gourma-Rharous,both,identical +153718,-1.25,16.75,MLI,1445.0,Tombouctou,143.0,Mali,104157.0,Gourma-Rharous,-1.25,16.75,MLI,1445.0,Tombouctou,143.0,Mali,104157.0,Gourma-Rharous,both,identical +153719,-0.75,16.75,MLI,1438.0,Gao,143.0,Mali,104157.0,Gourma-Rharous,-0.75,16.75,MLI,1445.0,Tombouctou,143.0,Mali,104157.0,Gourma-Rharous,both,admin_reallocation +153720,-0.25,16.75,MLI,1438.0,Gao,143.0,Mali,104112.0,Bourem,-0.25,16.75,MLI,1438.0,Gao,143.0,Mali,104112.0,Bourem,both,identical +153721,0.25,16.75,MLI,1438.0,Gao,143.0,Mali,104113.0,Gao,0.25,16.75,MLI,1438.0,Gao,143.0,Mali,104113.0,Gao,both,identical +153722,0.75,16.75,MLI,1438.0,Gao,143.0,Mali,104113.0,Gao,0.75,16.75,MLI,1438.0,Gao,143.0,Mali,104113.0,Gao,both,identical +153723,1.25,16.75,MLI,1438.0,Gao,143.0,Mali,104111.0,Ansongo,1.25,16.75,MLI,1438.0,Gao,143.0,Mali,104111.0,Ansongo,both,identical +153724,1.75,16.75,MLI,1438.0,Gao,143.0,Mali,104114.0,Ménaka,1.75,16.75,MLI,1438.0,Gao,143.0,Mali,104114.0,Ménaka,both,identical +153725,2.25,16.75,MLI,1438.0,Gao,143.0,Mali,104114.0,Ménaka,2.25,16.75,MLI,1438.0,Gao,143.0,Mali,104114.0,Ménaka,both,identical +153726,2.75,16.75,MLI,1438.0,Gao,143.0,Mali,104114.0,Ménaka,2.75,16.75,MLI,1438.0,Gao,143.0,Mali,104114.0,Ménaka,both,identical +153727,3.25,16.75,MLI,1438.0,Gao,143.0,Mali,104114.0,Ménaka,3.25,16.75,MLI,1438.0,Gao,143.0,Mali,104114.0,Ménaka,both,identical +153728,3.75,16.75,MLI,1438.0,Gao,143.0,Mali,104114.0,Ménaka,3.75,16.75,MLI,1438.0,Gao,143.0,Mali,104114.0,Ménaka,both,identical +153729,4.25,16.75,NER,1514.0,Tahoua,150.0,Niger,104605.0,Tassara,4.25,16.75,NER,1514.0,Tahoua,150.0,Niger,104605.0,Tassara,both,identical +153730,4.75,16.75,NER,1514.0,Tahoua,150.0,Niger,104605.0,Tassara,4.75,16.75,NER,1514.0,Tahoua,150.0,Niger,104605.0,Tassara,both,identical +153731,5.25,16.75,NER,1514.0,Tahoua,150.0,Niger,104605.0,Tassara,5.25,16.75,NER,1514.0,Tahoua,150.0,Niger,104605.0,Tassara,both,identical +153732,5.75,16.75,NER,1514.0,Tahoua,150.0,Niger,104605.0,Tassara,5.75,16.75,NER,1514.0,Tahoua,150.0,Niger,104605.0,Tassara,both,identical +153733,6.25,16.75,NER,1509.0,Agadez,150.0,Niger,104571.0,Ingall,6.25,16.75,NER,1509.0,Agadez,150.0,Niger,104571.0,Ingall,both,identical +153734,6.75,16.75,NER,1509.0,Agadez,150.0,Niger,104571.0,Ingall,6.75,16.75,NER,1509.0,Agadez,150.0,Niger,104571.0,Ingall,both,identical +153735,7.25,16.75,NER,1509.0,Agadez,150.0,Niger,104571.0,Ingall,7.25,16.75,NER,1509.0,Agadez,150.0,Niger,104571.0,Ingall,both,identical +153736,7.75,16.75,NER,1509.0,Agadez,150.0,Niger,104567.0,Aderbissinat,7.75,16.75,NER,1509.0,Agadez,150.0,Niger,104567.0,Aderbissinat,both,identical +153737,8.25,16.75,NER,1509.0,Agadez,150.0,Niger,104567.0,Aderbissinat,8.25,16.75,NER,1509.0,Agadez,150.0,Niger,104567.0,Aderbissinat,both,identical +153738,8.75,16.75,NER,1509.0,Agadez,150.0,Niger,104567.0,Aderbissinat,8.75,16.75,NER,1509.0,Agadez,150.0,Niger,104567.0,Aderbissinat,both,identical +153739,9.25,16.75,NER,1509.0,Agadez,150.0,Niger,104567.0,Aderbissinat,9.25,16.75,NER,1509.0,Agadez,150.0,Niger,104567.0,Aderbissinat,both,identical +153740,9.75,16.75,NER,1509.0,Agadez,150.0,Niger,104567.0,Aderbissinat,9.75,16.75,NER,1509.0,Agadez,150.0,Niger,104567.0,Aderbissinat,both,identical +153741,10.25,16.75,NER,1509.0,Agadez,150.0,Niger,104567.0,Aderbissinat,10.25,16.75,NER,1509.0,Agadez,150.0,Niger,104567.0,Aderbissinat,both,identical +153742,10.75,16.75,NER,1516.0,Zinder,150.0,Niger,104630.0,Tesker,10.75,16.75,NER,1516.0,Zinder,150.0,Niger,104630.0,Tesker,both,identical +153743,11.25,16.75,NER,1516.0,Zinder,150.0,Niger,104630.0,Tesker,11.25,16.75,NER,1516.0,Zinder,150.0,Niger,104630.0,Tesker,both,identical +153744,11.75,16.75,NER,1516.0,Zinder,150.0,Niger,104630.0,Tesker,11.75,16.75,NER,1516.0,Zinder,150.0,Niger,104630.0,Tesker,both,identical +153745,12.25,16.75,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,12.25,16.75,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,both,identical +153746,12.75,16.75,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,12.75,16.75,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,both,identical +153747,13.25,16.75,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,13.25,16.75,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,both,identical +153748,13.75,16.75,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,13.75,16.75,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,both,identical +153749,14.25,16.75,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,14.25,16.75,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,both,identical +153750,14.75,16.75,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,14.75,16.75,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,both,identical +153751,15.25,16.75,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,15.25,16.75,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,both,identical +153752,15.75,16.75,TCD,1161.0,Borkou,114.0,Chad,102089.0,Borkou Yala,15.75,16.75,TCD,1161.0,Borkou,114.0,Chad,102089.0,Borkou Yala,both,identical +153753,16.25,16.75,TCD,1161.0,Borkou,114.0,Chad,102089.0,Borkou Yala,16.25,16.75,TCD,1161.0,Borkou,114.0,Chad,102089.0,Borkou Yala,both,identical +153754,16.75,16.75,TCD,1161.0,Borkou,114.0,Chad,102089.0,Borkou Yala,16.75,16.75,TCD,1161.0,Borkou,114.0,Chad,102089.0,Borkou Yala,both,identical +153755,17.25,16.75,TCD,1161.0,Borkou,114.0,Chad,102089.0,Borkou Yala,17.25,16.75,TCD,1161.0,Borkou,114.0,Chad,102089.0,Borkou Yala,both,identical +153756,17.75,16.75,TCD,1161.0,Borkou,114.0,Chad,102088.0,Borkou,17.75,16.75,TCD,1161.0,Borkou,114.0,Chad,102088.0,Borkou,both,identical +153757,18.25,16.75,TCD,1161.0,Borkou,114.0,Chad,102088.0,Borkou,18.25,16.75,TCD,1161.0,Borkou,114.0,Chad,102088.0,Borkou,both,identical +153758,18.75,16.75,TCD,1161.0,Borkou,114.0,Chad,102088.0,Borkou,18.75,16.75,TCD,1161.0,Borkou,114.0,Chad,102088.0,Borkou,both,identical +153759,19.25,16.75,TCD,1161.0,Borkou,114.0,Chad,102088.0,Borkou,19.25,16.75,TCD,1161.0,Borkou,114.0,Chad,102088.0,Borkou,both,identical +153760,19.75,16.75,TCD,1161.0,Borkou,114.0,Chad,102088.0,Borkou,19.75,16.75,TCD,1161.0,Borkou,114.0,Chad,102088.0,Borkou,both,identical +153761,20.25,16.75,TCD,1161.0,Borkou,114.0,Chad,102088.0,Borkou,20.25,16.75,TCD,1161.0,Borkou,114.0,Chad,102088.0,Borkou,both,identical +153762,20.75,16.75,TCD,1164.0,Ennedi Ouest,114.0,Chad,102096.0,Mourtcha,20.75,16.75,TCD,1164.0,Ennedi Ouest,114.0,Chad,102096.0,Mourtcha,both,identical +153763,21.25,16.75,TCD,1164.0,Ennedi Ouest,114.0,Chad,102096.0,Mourtcha,21.25,16.75,TCD,1164.0,Ennedi Ouest,114.0,Chad,102096.0,Mourtcha,both,identical +153764,21.75,16.75,TCD,1164.0,Ennedi Ouest,114.0,Chad,102096.0,Mourtcha,21.75,16.75,TCD,1164.0,Ennedi Ouest,114.0,Chad,102096.0,Mourtcha,both,identical +153765,22.25,16.75,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,22.25,16.75,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,both,identical +153766,22.75,16.75,TCD,1163.0,Ennedi Est,114.0,Chad,102093.0,Am-Djarass,22.75,16.75,TCD,1163.0,Ennedi Est,114.0,Chad,102093.0,Am-Djarass,both,identical +153767,23.25,16.75,TCD,1163.0,Ennedi Est,114.0,Chad,102093.0,Am-Djarass,23.25,16.75,TCD,1163.0,Ennedi Est,114.0,Chad,102093.0,Am-Djarass,both,identical +153768,23.75,16.75,TCD,1163.0,Ennedi Est,114.0,Chad,102093.0,Am-Djarass,23.75,16.75,TCD,1163.0,Ennedi Est,114.0,Chad,102093.0,Am-Djarass,both,identical +153769,24.25,16.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,24.25,16.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +153770,24.75,16.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,24.75,16.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +153771,25.25,16.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,25.25,16.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +153772,25.75,16.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,25.75,16.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +153773,26.25,16.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,26.25,16.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +153774,26.75,16.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,26.75,16.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +153775,27.25,16.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,27.25,16.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +153776,27.75,16.75,SDN,1636.0,Northern,161.0,Sudan,105829.0,Al Golid,27.75,16.75,SDN,1636.0,Northern,161.0,Sudan,105829.0,Al Golid,both,identical +153777,28.25,16.75,SDN,1636.0,Northern,161.0,Sudan,105829.0,Al Golid,28.25,16.75,SDN,1636.0,Northern,161.0,Sudan,105829.0,Al Golid,both,identical +153778,28.75,16.75,SDN,1636.0,Northern,161.0,Sudan,105829.0,Al Golid,28.75,16.75,SDN,1636.0,Northern,161.0,Sudan,105829.0,Al Golid,both,identical +153779,29.25,16.75,SDN,1636.0,Northern,161.0,Sudan,105827.0,Ad Dabbah,29.25,16.75,SDN,1636.0,Northern,161.0,Sudan,105827.0,Ad Dabbah,both,identical +153780,29.75,16.75,SDN,1636.0,Northern,161.0,Sudan,105827.0,Ad Dabbah,29.75,16.75,SDN,1636.0,Northern,161.0,Sudan,105827.0,Ad Dabbah,both,identical +153781,30.25,16.75,SDN,1636.0,Northern,161.0,Sudan,105827.0,Ad Dabbah,30.25,16.75,SDN,1636.0,Northern,161.0,Sudan,105827.0,Ad Dabbah,both,identical +153782,30.75,16.75,SDN,1636.0,Northern,161.0,Sudan,105827.0,Ad Dabbah,30.75,16.75,SDN,1636.0,Northern,161.0,Sudan,105827.0,Ad Dabbah,both,identical +153783,31.25,16.75,SDN,1636.0,Northern,161.0,Sudan,105827.0,Ad Dabbah,31.25,16.75,SDN,1636.0,Northern,161.0,Sudan,105827.0,Ad Dabbah,both,identical +153784,31.75,16.75,SDN,1636.0,Northern,161.0,Sudan,105827.0,Ad Dabbah,31.75,16.75,SDN,1636.0,Northern,161.0,Sudan,105827.0,Ad Dabbah,both,identical +153785,32.25,16.75,SDN,1638.0,River Nile,161.0,Sudan,105847.0,Al Matama,32.25,16.75,SDN,1638.0,River Nile,161.0,Sudan,105847.0,Al Matama,both,identical +153786,32.75,16.75,SDN,1638.0,River Nile,161.0,Sudan,105847.0,Al Matama,32.75,16.75,SDN,1638.0,River Nile,161.0,Sudan,105847.0,Al Matama,both,identical +153787,33.25,16.75,SDN,1638.0,River Nile,161.0,Sudan,105847.0,Al Matama,33.25,16.75,SDN,1638.0,River Nile,161.0,Sudan,105847.0,Al Matama,both,identical +153788,33.75,16.75,SDN,1638.0,River Nile,161.0,Sudan,105850.0,Shendi,33.75,16.75,SDN,1638.0,River Nile,161.0,Sudan,105850.0,Shendi,both,identical +153789,34.25,16.75,SDN,1638.0,River Nile,161.0,Sudan,105845.0,Ad Damar,34.25,16.75,SDN,1638.0,River Nile,161.0,Sudan,105845.0,Ad Damar,both,identical +153790,34.75,16.75,SDN,1638.0,River Nile,161.0,Sudan,105845.0,Ad Damar,34.75,16.75,SDN,1638.0,River Nile,161.0,Sudan,105845.0,Ad Damar,both,identical +153791,35.25,16.75,SDN,1638.0,River Nile,161.0,Sudan,105845.0,Ad Damar,35.25,16.75,SDN,1638.0,River Nile,161.0,Sudan,105845.0,Ad Damar,both,identical +153792,35.75,16.75,SDN,1632.0,Kassala,161.0,Sudan,105792.0,Reifi Shamal Ad Delta,35.75,16.75,SDN,1632.0,Kassala,161.0,Sudan,105792.0,Reifi Shamal Ad Delta,both,identical +153793,36.25,16.75,SDN,1632.0,Kassala,161.0,Sudan,105788.0,Reifi Hamashkureib,36.25,16.75,SDN,1632.0,Kassala,161.0,Sudan,105788.0,Reifi Hamashkureib,both,identical +153794,36.75,16.75,SDN,1632.0,Kassala,161.0,Sudan,105788.0,Reifi Hamashkureib,36.75,16.75,SDN,1632.0,Kassala,161.0,Sudan,105788.0,Reifi Hamashkureib,both,identical +153795,37.25,16.75,ERI,1279.0,Anseba,122.0,Eritrea,102936.0,Sela,37.25,16.75,ERI,1279.0,Anseba,122.0,Eritrea,102936.0,Sela,both,identical +153796,37.75,16.75,ERI,1279.0,Anseba,122.0,Eritrea,102936.0,Sela,37.75,16.75,ERI,1279.0,Anseba,122.0,Eritrea,102936.0,Sela,both,identical +153797,38.25,16.75,ERI,1284.0,Semienawi Keih Bahri,122.0,Eritrea,102982.0,Nakfa,38.25,16.75,ERI,1284.0,Semienawi Keih Bahri,122.0,Eritrea,102982.0,Nakfa,both,identical +153798,38.75,16.75,ERI,1284.0,Semienawi Keih Bahri,122.0,Eritrea,102975.0,Afabet,38.75,16.75,ERI,1284.0,Semienawi Keih Bahri,122.0,Eritrea,102975.0,Afabet,both,identical +153799,39.25,16.75,ERI,1284.0,Semienawi Keih Bahri,122.0,Eritrea,102975.0,Afabet,39.25,16.75,ERI,1284.0,Semienawi Keih Bahri,122.0,Eritrea,102975.0,Afabet,both,identical +153804,41.75,16.75,SAU,2961.0,Jazan,266.0,Saudi Arabia,130546.0,Farasan,41.75,16.75,SAU,2961.0,Jazan,266.0,Saudi Arabia,130546.0,Farasan,both,identical +153805,42.25,16.75,SAU,2961.0,Jazan,266.0,Saudi Arabia,130546.0,Farasan,42.25,16.75,SAU,2961.0,Jazan,266.0,Saudi Arabia,130546.0,Farasan,both,identical +153806,42.75,16.75,SAU,2961.0,Jazan,266.0,Saudi Arabia,130538.0,Ahad Al Masarihah,42.75,16.75,SAU,2961.0,Jazan,266.0,Saudi Arabia,130538.0,Ahad Al Masarihah,both,identical +153807,43.25,16.75,YEM,3284.0,Sa'Dah,282.0,Yemen,133889.0,Haydan,43.25,16.75,YEM,3284.0,Sa'Dah,282.0,Yemen,133889.0,Haydan,both,identical +153808,43.75,16.75,YEM,3284.0,Sa'Dah,282.0,Yemen,133747.0,Harf Sufyan,43.75,16.75,YEM,3276.0,Amran,282.0,Yemen,133747.0,Harf Sufyan,both,admin_reallocation +153809,44.25,16.75,YEM,3273.0,Al Jawf,282.0,Yemen,133716.0,Bart Al Anan,44.25,16.75,YEM,3273.0,Al Jawf,282.0,Yemen,133716.0,Bart Al Anan,both,identical +153810,44.75,16.75,YEM,3273.0,Al Jawf,282.0,Yemen,133717.0,Khabb Wa Ash Sha'Af,44.75,16.75,YEM,3273.0,Al Jawf,282.0,Yemen,133717.0,Khabb Wa Ash Sha'Af,both,identical +153811,45.25,16.75,YEM,3273.0,Al Jawf,282.0,Yemen,133717.0,Khabb Wa Ash Sha'Af,45.25,16.75,YEM,3273.0,Al Jawf,282.0,Yemen,133717.0,Khabb Wa Ash Sha'Af,both,identical +153812,45.75,16.75,YEM,3273.0,Al Jawf,282.0,Yemen,133717.0,Khabb Wa Ash Sha'Af,45.75,16.75,YEM,3273.0,Al Jawf,282.0,Yemen,133717.0,Khabb Wa Ash Sha'Af,both,identical +153813,46.25,16.75,YEM,3273.0,Al Jawf,282.0,Yemen,133717.0,Khabb Wa Ash Sha'Af,46.25,16.75,YEM,3273.0,Al Jawf,282.0,Yemen,133717.0,Khabb Wa Ash Sha'Af,both,identical +153814,46.75,16.75,YEM,3273.0,Al Jawf,282.0,Yemen,133717.0,Khabb Wa Ash Sha'Af,46.75,16.75,YEM,3273.0,Al Jawf,282.0,Yemen,133717.0,Khabb Wa Ash Sha'Af,both,identical +153815,47.25,16.75,YEM,3278.0,Hadramawt,282.0,Yemen,133797.0,Zamakh Wa Manwakh,47.25,16.75,YEM,3278.0,Hadramawt,282.0,Yemen,133797.0,Zamakh Wa Manwakh,both,identical +153816,47.75,16.75,YEM,3278.0,Hadramawt,282.0,Yemen,133797.0,Zamakh Wa Manwakh,47.75,16.75,YEM,3278.0,Hadramawt,282.0,Yemen,133797.0,Zamakh Wa Manwakh,both,identical +153817,48.25,16.75,YEM,3278.0,Hadramawt,282.0,Yemen,133797.0,Zamakh Wa Manwakh,48.25,16.75,YEM,3278.0,Hadramawt,282.0,Yemen,133797.0,Zamakh Wa Manwakh,both,identical +153818,48.75,16.75,YEM,3278.0,Hadramawt,282.0,Yemen,133775.0,Al Qaf,48.75,16.75,YEM,3278.0,Hadramawt,282.0,Yemen,133775.0,Al Qaf,both,identical +153819,49.25,16.75,YEM,3278.0,Hadramawt,282.0,Yemen,133775.0,Al Qaf,49.25,16.75,YEM,3278.0,Hadramawt,282.0,Yemen,133775.0,Al Qaf,both,identical +153820,49.75,16.75,YEM,3278.0,Hadramawt,282.0,Yemen,133794.0,Thamud,49.75,16.75,YEM,3278.0,Hadramawt,282.0,Yemen,133794.0,Thamud,both,identical +153821,50.25,16.75,YEM,3278.0,Hadramawt,282.0,Yemen,133789.0,Rumah,50.25,16.75,YEM,3278.0,Hadramawt,282.0,Yemen,133789.0,Rumah,both,identical +153822,50.75,16.75,YEM,3274.0,Al Maharah,282.0,Yemen,133725.0,Man'Ar,50.75,16.75,YEM,3274.0,Al Maharah,282.0,Yemen,133725.0,Man'Ar,both,identical +153823,51.25,16.75,YEM,3274.0,Al Maharah,282.0,Yemen,133725.0,Man'Ar,51.25,16.75,YEM,3274.0,Al Maharah,282.0,Yemen,133725.0,Man'Ar,both,identical +153824,51.75,16.75,YEM,3274.0,Al Maharah,282.0,Yemen,133722.0,Hat,51.75,16.75,YEM,3274.0,Al Maharah,282.0,Yemen,133722.0,Hat,both,identical +153825,52.25,16.75,YEM,3274.0,Al Maharah,282.0,Yemen,133720.0,Al Ghaydah,52.25,16.75,YEM,3274.0,Al Maharah,282.0,Yemen,133720.0,Al Ghaydah,both,identical +153826,52.75,16.75,YEM,3274.0,Al Maharah,282.0,Yemen,133723.0,Hawf,52.75,16.75,YEM,3274.0,Al Maharah,282.0,Yemen,133723.0,Hawf,both,identical +153827,53.25,16.75,OMN,2902.0,Dhofar,259.0,Oman,130083.0,Salalah,53.25,16.75,OMN,2902.0,Dhofar,259.0,Oman,130083.0,Salalah,both,identical +153828,53.75,16.75,OMN,2902.0,Dhofar,259.0,Oman,130083.0,Salalah,53.75,16.75,OMN,2902.0,Dhofar,259.0,Oman,130083.0,Salalah,both,identical +153829,54.25,16.75,OMN,2902.0,Dhofar,259.0,Oman,130083.0,Salalah,54.25,16.75,OMN,2902.0,Dhofar,259.0,Oman,130083.0,Salalah,both,identical +153830,54.75,16.75,OMN,2902.0,Dhofar,259.0,Oman,130081.0,Marbat,54.75,16.75,OMN,2902.0,Dhofar,259.0,Oman,130081.0,Marbat,both,identical +154390,-25.25,17.25,CPV,1139.0,Santo Antao,111.0,Cabo Verde,102002.0,Porto Novo,-25.25,17.25,CPV,1139.0,Santo Antao,111.0,Cabo Verde,102002.0,Porto Novo,both,identical +154391,-24.75,17.25,CPV,1139.0,Santo Antao,111.0,Cabo Verde,102001.0,Paul,-24.75,17.25,CPV,1139.0,Santo Antao,111.0,Cabo Verde,102001.0,Paul,both,identical +154408,-16.25,17.25,MRT,1460.0,Trarza,144.0,Mauritania,104218.0,Mederdra,-16.25,17.25,MRT,1460.0,Trarza,144.0,Mauritania,104218.0,Mederdra,both,identical +154409,-15.75,17.25,MRT,1460.0,Trarza,144.0,Mauritania,104218.0,Mederdra,-15.75,17.25,MRT,1460.0,Trarza,144.0,Mauritania,104218.0,Mederdra,both,identical +154410,-15.25,17.25,MRT,1460.0,Trarza,144.0,Mauritania,104220.0,R'Kiz,-15.25,17.25,MRT,1460.0,Trarza,144.0,Mauritania,104220.0,R'Kiz,both,identical +154411,-14.75,17.25,MRT,1460.0,Trarza,144.0,Mauritania,104216.0,Boutilimit,-14.75,17.25,MRT,1460.0,Trarza,144.0,Mauritania,104216.0,Boutilimit,both,identical +154412,-14.25,17.25,MRT,1460.0,Trarza,144.0,Mauritania,104216.0,Boutilimit,-14.25,17.25,MRT,1460.0,Trarza,144.0,Mauritania,104216.0,Boutilimit,both,identical +154413,-13.75,17.25,MRT,1448.0,Brakna,144.0,Mauritania,104169.0,Aleg,-13.75,17.25,MRT,1448.0,Brakna,144.0,Mauritania,104169.0,Aleg,both,identical +154414,-13.25,17.25,MRT,1448.0,Brakna,144.0,Mauritania,104173.0,Maal,-13.25,17.25,MRT,1448.0,Brakna,144.0,Mauritania,104173.0,Maal,both,identical +154415,-12.75,17.25,MRT,1448.0,Brakna,144.0,Mauritania,104174.0,Maghta Lahjar,-12.75,17.25,MRT,1448.0,Brakna,144.0,Mauritania,104174.0,Maghta Lahjar,both,identical +154416,-12.25,17.25,MRT,1458.0,Tagant,144.0,Mauritania,104210.0,Moudjeria,-12.25,17.25,MRT,1458.0,Tagant,144.0,Mauritania,104210.0,Moudjeria,both,identical +154417,-11.75,17.25,MRT,1458.0,Tagant,144.0,Mauritania,104210.0,Moudjeria,-11.75,17.25,MRT,1458.0,Tagant,144.0,Mauritania,104210.0,Moudjeria,both,identical +154418,-11.25,17.25,MRT,1447.0,Assaba,144.0,Mauritania,104168.0,Kiffa,-11.25,17.25,MRT,1447.0,Assaba,144.0,Mauritania,104168.0,Kiffa,both,identical +154419,-10.75,17.25,MRT,1453.0,Hodh El Gharbi,144.0,Mauritania,104196.0,Tamchekett,-10.75,17.25,MRT,1453.0,Hodh El Gharbi,144.0,Mauritania,104196.0,Tamchekett,both,identical +154420,-10.25,17.25,MRT,1453.0,Hodh El Gharbi,144.0,Mauritania,104196.0,Tamchekett,-10.25,17.25,MRT,1453.0,Hodh El Gharbi,144.0,Mauritania,104196.0,Tamchekett,both,identical +154421,-9.75,17.25,MRT,1453.0,Hodh El Gharbi,144.0,Mauritania,104194.0,Aioun,-9.75,17.25,MRT,1453.0,Hodh El Gharbi,144.0,Mauritania,104194.0,Aioun,both,identical +154422,-9.25,17.25,MRT,1453.0,Hodh El Gharbi,144.0,Mauritania,104194.0,Aioun,-9.25,17.25,MRT,1453.0,Hodh El Gharbi,144.0,Mauritania,104194.0,Aioun,both,identical +154423,-8.75,17.25,MRT,1453.0,Hodh El Gharbi,144.0,Mauritania,104194.0,Aioun,-8.75,17.25,MRT,1453.0,Hodh El Gharbi,144.0,Mauritania,104194.0,Aioun,both,identical +154424,-8.25,17.25,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,-8.25,17.25,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,both,identical +154425,-7.75,17.25,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,-7.75,17.25,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,both,identical +154426,-7.25,17.25,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,-7.25,17.25,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,both,identical +154427,-6.75,17.25,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,-6.75,17.25,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,both,identical +154428,-6.25,17.25,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104190.0,N'Beiket Lehwach,-6.25,17.25,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104190.0,N'Beiket Lehwach,both,identical +154429,-5.75,17.25,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104190.0,N'Beiket Lehwach,-5.75,17.25,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104190.0,N'Beiket Lehwach,both,identical +154430,-5.25,17.25,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,-5.25,17.25,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,both,identical +154431,-4.75,17.25,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,-4.75,17.25,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,both,identical +154432,-4.25,17.25,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,-4.25,17.25,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,both,identical +154433,-3.75,17.25,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,-3.75,17.25,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,both,identical +154434,-3.25,17.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-3.25,17.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +154435,-2.75,17.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-2.75,17.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +154436,-2.25,17.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-2.25,17.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +154437,-1.75,17.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-1.75,17.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +154438,-1.25,17.25,MLI,1438.0,Gao,143.0,Mali,104112.0,Bourem,-1.25,17.25,MLI,1438.0,Gao,143.0,Mali,104112.0,Bourem,both,identical +154439,-0.75,17.25,MLI,1438.0,Gao,143.0,Mali,104112.0,Bourem,-0.75,17.25,MLI,1438.0,Gao,143.0,Mali,104112.0,Bourem,both,identical +154440,-0.25,17.25,MLI,1438.0,Gao,143.0,Mali,104112.0,Bourem,-0.25,17.25,MLI,1438.0,Gao,143.0,Mali,104112.0,Bourem,both,identical +154441,0.25,17.25,MLI,1438.0,Gao,143.0,Mali,104112.0,Bourem,0.25,17.25,MLI,1438.0,Gao,143.0,Mali,104112.0,Bourem,both,identical +154442,0.75,17.25,MLI,1438.0,Gao,143.0,Mali,104113.0,Gao,0.75,17.25,MLI,1438.0,Gao,143.0,Mali,104113.0,Gao,both,identical +154443,1.25,17.25,MLI,1438.0,Gao,143.0,Mali,104113.0,Gao,1.25,17.25,MLI,1438.0,Gao,143.0,Mali,104113.0,Gao,both,identical +154444,1.75,17.25,MLI,1438.0,Gao,143.0,Mali,104114.0,Ménaka,1.75,17.25,MLI,1438.0,Gao,143.0,Mali,104114.0,Ménaka,both,identical +154445,2.25,17.25,MLI,1438.0,Gao,143.0,Mali,104114.0,Ménaka,2.25,17.25,MLI,1438.0,Gao,143.0,Mali,104114.0,Ménaka,both,identical +154446,2.75,17.25,MLI,1438.0,Gao,143.0,Mali,104114.0,Ménaka,2.75,17.25,MLI,1438.0,Gao,143.0,Mali,104114.0,Ménaka,both,identical +154447,3.25,17.25,MLI,1438.0,Gao,143.0,Mali,104114.0,Ménaka,3.25,17.25,MLI,1438.0,Gao,143.0,Mali,104114.0,Ménaka,both,identical +154448,3.75,17.25,MLI,1438.0,Gao,143.0,Mali,104114.0,Ménaka,3.75,17.25,MLI,1438.0,Gao,143.0,Mali,104114.0,Ménaka,both,identical +154449,4.25,17.25,NER,1514.0,Tahoua,150.0,Niger,104605.0,Tassara,4.25,17.25,NER,1514.0,Tahoua,150.0,Niger,104605.0,Tassara,both,identical +154450,4.75,17.25,NER,1514.0,Tahoua,150.0,Niger,104605.0,Tassara,4.75,17.25,NER,1514.0,Tahoua,150.0,Niger,104605.0,Tassara,both,identical +154451,5.25,17.25,NER,1514.0,Tahoua,150.0,Niger,104605.0,Tassara,5.25,17.25,NER,1514.0,Tahoua,150.0,Niger,104605.0,Tassara,both,identical +154452,5.75,17.25,NER,1509.0,Agadez,150.0,Niger,104571.0,Ingall,5.75,17.25,NER,1509.0,Agadez,150.0,Niger,104571.0,Ingall,both,identical +154453,6.25,17.25,NER,1509.0,Agadez,150.0,Niger,104571.0,Ingall,6.25,17.25,NER,1509.0,Agadez,150.0,Niger,104571.0,Ingall,both,identical +154454,6.75,17.25,NER,1509.0,Agadez,150.0,Niger,104571.0,Ingall,6.75,17.25,NER,1509.0,Agadez,150.0,Niger,104571.0,Ingall,both,identical +154455,7.25,17.25,NER,1509.0,Agadez,150.0,Niger,104571.0,Ingall,7.25,17.25,NER,1509.0,Agadez,150.0,Niger,104571.0,Ingall,both,identical +154456,7.75,17.25,NER,1509.0,Agadez,150.0,Niger,104572.0,Tchirozérine,7.75,17.25,NER,1509.0,Agadez,150.0,Niger,104572.0,Tchirozérine,both,identical +154457,8.25,17.25,NER,1509.0,Agadez,150.0,Niger,104572.0,Tchirozérine,8.25,17.25,NER,1509.0,Agadez,150.0,Niger,104572.0,Tchirozérine,both,identical +154458,8.75,17.25,NER,1509.0,Agadez,150.0,Niger,104572.0,Tchirozérine,8.75,17.25,NER,1509.0,Agadez,150.0,Niger,104572.0,Tchirozérine,both,identical +154459,9.25,17.25,NER,1509.0,Agadez,150.0,Niger,104567.0,Aderbissinat,9.25,17.25,NER,1509.0,Agadez,150.0,Niger,104567.0,Aderbissinat,both,identical +154460,9.75,17.25,NER,1509.0,Agadez,150.0,Niger,104567.0,Aderbissinat,9.75,17.25,NER,1509.0,Agadez,150.0,Niger,104567.0,Aderbissinat,both,identical +154461,10.25,17.25,NER,1509.0,Agadez,150.0,Niger,104567.0,Aderbissinat,10.25,17.25,NER,1509.0,Agadez,150.0,Niger,104567.0,Aderbissinat,both,identical +154462,10.75,17.25,NER,1509.0,Agadez,150.0,Niger,104567.0,Aderbissinat,10.75,17.25,NER,1509.0,Agadez,150.0,Niger,104567.0,Aderbissinat,both,identical +154463,11.25,17.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,11.25,17.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +154464,11.75,17.25,NER,1516.0,Zinder,150.0,Niger,104630.0,Tesker,11.75,17.25,NER,1516.0,Zinder,150.0,Niger,104630.0,Tesker,both,identical +154465,12.25,17.25,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,12.25,17.25,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,both,identical +154466,12.75,17.25,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,12.75,17.25,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,both,identical +154467,13.25,17.25,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,13.25,17.25,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,both,identical +154468,13.75,17.25,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,13.75,17.25,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,both,identical +154469,14.25,17.25,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,14.25,17.25,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,both,identical +154470,14.75,17.25,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,14.75,17.25,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,both,identical +154471,15.25,17.25,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,15.25,17.25,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,both,identical +154472,15.75,17.25,TCD,1161.0,Borkou,114.0,Chad,102089.0,Borkou Yala,15.75,17.25,TCD,1161.0,Borkou,114.0,Chad,102089.0,Borkou Yala,both,identical +154473,16.25,17.25,TCD,1161.0,Borkou,114.0,Chad,102089.0,Borkou Yala,16.25,17.25,TCD,1161.0,Borkou,114.0,Chad,102089.0,Borkou Yala,both,identical +154474,16.75,17.25,TCD,1161.0,Borkou,114.0,Chad,102089.0,Borkou Yala,16.75,17.25,TCD,1161.0,Borkou,114.0,Chad,102089.0,Borkou Yala,both,identical +154475,17.25,17.25,TCD,1161.0,Borkou,114.0,Chad,102089.0,Borkou Yala,17.25,17.25,TCD,1161.0,Borkou,114.0,Chad,102089.0,Borkou Yala,both,identical +154476,17.75,17.25,TCD,1161.0,Borkou,114.0,Chad,102089.0,Borkou Yala,17.75,17.25,TCD,1161.0,Borkou,114.0,Chad,102089.0,Borkou Yala,both,identical +154477,18.25,17.25,TCD,1161.0,Borkou,114.0,Chad,102089.0,Borkou Yala,18.25,17.25,TCD,1161.0,Borkou,114.0,Chad,102089.0,Borkou Yala,both,identical +154478,18.75,17.25,TCD,1161.0,Borkou,114.0,Chad,102088.0,Borkou,18.75,17.25,TCD,1161.0,Borkou,114.0,Chad,102088.0,Borkou,both,identical +154479,19.25,17.25,TCD,1161.0,Borkou,114.0,Chad,102088.0,Borkou,19.25,17.25,TCD,1161.0,Borkou,114.0,Chad,102088.0,Borkou,both,identical +154480,19.75,17.25,TCD,1161.0,Borkou,114.0,Chad,102088.0,Borkou,19.75,17.25,TCD,1161.0,Borkou,114.0,Chad,102088.0,Borkou,both,identical +154481,20.25,17.25,TCD,1161.0,Borkou,114.0,Chad,102088.0,Borkou,20.25,17.25,TCD,1161.0,Borkou,114.0,Chad,102088.0,Borkou,both,identical +154482,20.75,17.25,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,20.75,17.25,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,both,identical +154483,21.25,17.25,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,21.25,17.25,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,both,identical +154484,21.75,17.25,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,21.75,17.25,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,both,identical +154485,22.25,17.25,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,22.25,17.25,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,both,identical +154486,22.75,17.25,TCD,1163.0,Ennedi Est,114.0,Chad,102093.0,Am-Djarass,22.75,17.25,TCD,1163.0,Ennedi Est,114.0,Chad,102093.0,Am-Djarass,both,identical +154487,23.25,17.25,TCD,1163.0,Ennedi Est,114.0,Chad,102093.0,Am-Djarass,23.25,17.25,TCD,1163.0,Ennedi Est,114.0,Chad,102093.0,Am-Djarass,both,identical +154488,23.75,17.25,TCD,1163.0,Ennedi Est,114.0,Chad,102093.0,Am-Djarass,23.75,17.25,TCD,1163.0,Ennedi Est,114.0,Chad,102093.0,Am-Djarass,both,identical +154489,24.25,17.25,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,24.25,17.25,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +154490,24.75,17.25,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,24.75,17.25,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +154491,25.25,17.25,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,25.25,17.25,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +154492,25.75,17.25,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,25.75,17.25,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +154493,26.25,17.25,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,26.25,17.25,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +154494,26.75,17.25,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,26.75,17.25,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +154495,27.25,17.25,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,27.25,17.25,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +154496,27.75,17.25,SDN,1636.0,Northern,161.0,Sudan,105829.0,Al Golid,27.75,17.25,SDN,1636.0,Northern,161.0,Sudan,105829.0,Al Golid,both,identical +154497,28.25,17.25,SDN,1636.0,Northern,161.0,Sudan,105829.0,Al Golid,28.25,17.25,SDN,1636.0,Northern,161.0,Sudan,105829.0,Al Golid,both,identical +154498,28.75,17.25,SDN,1636.0,Northern,161.0,Sudan,105829.0,Al Golid,28.75,17.25,SDN,1636.0,Northern,161.0,Sudan,105829.0,Al Golid,both,identical +154499,29.25,17.25,SDN,1636.0,Northern,161.0,Sudan,105829.0,Al Golid,29.25,17.25,SDN,1636.0,Northern,161.0,Sudan,105829.0,Al Golid,both,identical +154500,29.75,17.25,SDN,1636.0,Northern,161.0,Sudan,105827.0,Ad Dabbah,29.75,17.25,SDN,1636.0,Northern,161.0,Sudan,105827.0,Ad Dabbah,both,identical +154501,30.25,17.25,SDN,1636.0,Northern,161.0,Sudan,105827.0,Ad Dabbah,30.25,17.25,SDN,1636.0,Northern,161.0,Sudan,105827.0,Ad Dabbah,both,identical +154502,30.75,17.25,SDN,1636.0,Northern,161.0,Sudan,105827.0,Ad Dabbah,30.75,17.25,SDN,1636.0,Northern,161.0,Sudan,105827.0,Ad Dabbah,both,identical +154503,31.25,17.25,SDN,1636.0,Northern,161.0,Sudan,105827.0,Ad Dabbah,31.25,17.25,SDN,1636.0,Northern,161.0,Sudan,105827.0,Ad Dabbah,both,identical +154504,31.75,17.25,SDN,1636.0,Northern,161.0,Sudan,105827.0,Ad Dabbah,31.75,17.25,SDN,1636.0,Northern,161.0,Sudan,105827.0,Ad Dabbah,both,identical +154505,32.25,17.25,SDN,1636.0,Northern,161.0,Sudan,105845.0,Ad Damar,32.25,17.25,SDN,1638.0,River Nile,161.0,Sudan,105845.0,Ad Damar,both,admin_reallocation +154506,32.75,17.25,SDN,1638.0,River Nile,161.0,Sudan,105845.0,Ad Damar,32.75,17.25,SDN,1638.0,River Nile,161.0,Sudan,105845.0,Ad Damar,both,identical +154507,33.25,17.25,SDN,1638.0,River Nile,161.0,Sudan,105845.0,Ad Damar,33.25,17.25,SDN,1638.0,River Nile,161.0,Sudan,105845.0,Ad Damar,both,identical +154508,33.75,17.25,SDN,1638.0,River Nile,161.0,Sudan,105845.0,Ad Damar,33.75,17.25,SDN,1638.0,River Nile,161.0,Sudan,105845.0,Ad Damar,both,identical +154509,34.25,17.25,SDN,1638.0,River Nile,161.0,Sudan,105845.0,Ad Damar,34.25,17.25,SDN,1638.0,River Nile,161.0,Sudan,105845.0,Ad Damar,both,identical +154510,34.75,17.25,SDN,1638.0,River Nile,161.0,Sudan,105845.0,Ad Damar,34.75,17.25,SDN,1638.0,River Nile,161.0,Sudan,105845.0,Ad Damar,both,identical +154511,35.25,17.25,SDN,1638.0,River Nile,161.0,Sudan,105845.0,Ad Damar,35.25,17.25,SDN,1638.0,River Nile,161.0,Sudan,105845.0,Ad Damar,both,identical +154512,35.75,17.25,SDN,1637.0,Red Sea,161.0,Sudan,105836.0,Dordieb,35.75,17.25,SDN,1637.0,Red Sea,161.0,Sudan,105836.0,Dordieb,both,identical +154513,36.25,17.25,SDN,1637.0,Red Sea,161.0,Sudan,105836.0,Dordieb,36.25,17.25,SDN,1637.0,Red Sea,161.0,Sudan,105836.0,Dordieb,both,identical +154514,36.75,17.25,SDN,1637.0,Red Sea,161.0,Sudan,105838.0,Haya,36.75,17.25,SDN,1637.0,Red Sea,161.0,Sudan,105838.0,Haya,both,identical +154515,37.25,17.25,SDN,1637.0,Red Sea,161.0,Sudan,105843.0,Tawkar,37.25,17.25,SDN,1637.0,Red Sea,161.0,Sudan,105843.0,Tawkar,both,identical +154516,37.75,17.25,ERI,1279.0,Anseba,122.0,Eritrea,102936.0,Sela,37.75,17.25,ERI,1279.0,Anseba,122.0,Eritrea,102936.0,Sela,both,identical +154517,38.25,17.25,ERI,1284.0,Semienawi Keih Bahri,122.0,Eritrea,102974.0,Adobha,38.25,17.25,ERI,1284.0,Semienawi Keih Bahri,122.0,Eritrea,102974.0,Adobha,both,identical +154518,38.75,17.25,ERI,1284.0,Semienawi Keih Bahri,122.0,Eritrea,102980.0,Karura,38.75,17.25,ERI,1284.0,Semienawi Keih Bahri,122.0,Eritrea,102980.0,Karura,both,identical +154519,39.25,17.25,ERI,1284.0,Semienawi Keih Bahri,122.0,Eritrea,102980.0,Karura,39.25,17.25,ERI,1284.0,Semienawi Keih Bahri,122.0,Eritrea,102980.0,Karura,both,identical +154524,41.75,17.25,SAU,2961.0,Jazan,266.0,Saudi Arabia,130546.0,Farasan,41.75,17.25,SAU,2961.0,Jazan,266.0,Saudi Arabia,130546.0,Farasan,both,identical +154525,42.25,17.25,SAU,2961.0,Jazan,266.0,Saudi Arabia,130544.0,Baysh,42.25,17.25,SAU,2961.0,Jazan,266.0,Saudi Arabia,130544.0,Baysh,both,identical +154526,42.75,17.25,SAU,2961.0,Jazan,266.0,Saudi Arabia,130549.0,Sabya,42.75,17.25,SAU,2961.0,Jazan,266.0,Saudi Arabia,130549.0,Sabya,both,identical +154527,43.25,17.25,YEM,3284.0,Sa'Dah,282.0,Yemen,133887.0,Baqim,43.25,17.25,SAU,2961.0,Jazan,266.0,Saudi Arabia,130536.0,Ad Dair,both,country_reassignment +154528,43.75,17.25,YEM,3284.0,Sa'Dah,282.0,Yemen,133886.0,As Safra,43.75,17.25,YEM,3284.0,Sa'Dah,282.0,Yemen,133886.0,As Safra,both,identical +154529,44.25,17.25,YEM,3284.0,Sa'Dah,282.0,Yemen,133890.0,Kitaf Wa Al Boqe'E,44.25,17.25,YEM,3284.0,Sa'Dah,282.0,Yemen,133890.0,Kitaf Wa Al Boqe'E,both,identical +154530,44.75,17.25,YEM,3284.0,Sa'Dah,282.0,Yemen,133890.0,Kitaf Wa Al Boqe'E,44.75,17.25,YEM,3284.0,Sa'Dah,282.0,Yemen,133890.0,Kitaf Wa Al Boqe'E,both,identical +154531,45.25,17.25,YEM,3273.0,Al Jawf,282.0,Yemen,133717.0,Khabb Wa Ash Sha'Af,45.25,17.25,YEM,3273.0,Al Jawf,282.0,Yemen,133717.0,Khabb Wa Ash Sha'Af,both,identical +154532,45.75,17.25,YEM,3273.0,Al Jawf,282.0,Yemen,133717.0,Khabb Wa Ash Sha'Af,45.75,17.25,YEM,3273.0,Al Jawf,282.0,Yemen,133717.0,Khabb Wa Ash Sha'Af,both,identical +154533,46.25,17.25,SAU,2963.0,Najran,266.0,Saudi Arabia,130569.0,Khubash,46.25,17.25,YEM,3273.0,Al Jawf,282.0,Yemen,133717.0,Khabb Wa Ash Sha'Af,both,country_reassignment +154534,46.75,17.25,SAU,2963.0,Najran,266.0,Saudi Arabia,130571.0,Sharurah,46.75,17.25,SAU,2963.0,Najran,266.0,Saudi Arabia,130571.0,Sharurah,both,identical +154535,47.25,17.25,SAU,2963.0,Najran,266.0,Saudi Arabia,130571.0,Sharurah,47.25,17.25,SAU,2963.0,Najran,266.0,Saudi Arabia,130571.0,Sharurah,both,identical +154536,47.75,17.25,YEM,3278.0,Hadramawt,282.0,Yemen,133797.0,Zamakh Wa Manwakh,47.75,17.25,YEM,3278.0,Hadramawt,282.0,Yemen,133797.0,Zamakh Wa Manwakh,both,identical +154537,48.25,17.25,YEM,3278.0,Hadramawt,282.0,Yemen,133797.0,Zamakh Wa Manwakh,48.25,17.25,YEM,3278.0,Hadramawt,282.0,Yemen,133797.0,Zamakh Wa Manwakh,both,identical +154538,48.75,17.25,YEM,3278.0,Hadramawt,282.0,Yemen,133775.0,Al Qaf,48.75,17.25,YEM,3278.0,Hadramawt,282.0,Yemen,133775.0,Al Qaf,both,identical +154539,49.25,17.25,YEM,3278.0,Hadramawt,282.0,Yemen,133775.0,Al Qaf,49.25,17.25,YEM,3278.0,Hadramawt,282.0,Yemen,133775.0,Al Qaf,both,identical +154540,49.75,17.25,YEM,3278.0,Hadramawt,282.0,Yemen,133794.0,Thamud,49.75,17.25,YEM,3278.0,Hadramawt,282.0,Yemen,133794.0,Thamud,both,identical +154541,50.25,17.25,YEM,3278.0,Hadramawt,282.0,Yemen,133789.0,Rumah,50.25,17.25,YEM,3278.0,Hadramawt,282.0,Yemen,133789.0,Rumah,both,identical +154542,50.75,17.25,YEM,3278.0,Hadramawt,282.0,Yemen,133789.0,Rumah,50.75,17.25,YEM,3278.0,Hadramawt,282.0,Yemen,133789.0,Rumah,both,identical +154543,51.25,17.25,YEM,3274.0,Al Maharah,282.0,Yemen,133722.0,Hat,51.25,17.25,YEM,3274.0,Al Maharah,282.0,Yemen,133722.0,Hat,both,identical +154544,51.75,17.25,YEM,3274.0,Al Maharah,282.0,Yemen,133722.0,Hat,51.75,17.25,YEM,3274.0,Al Maharah,282.0,Yemen,133722.0,Hat,both,identical +154545,52.25,17.25,YEM,3274.0,Al Maharah,282.0,Yemen,133728.0,Shahan,52.25,17.25,YEM,3274.0,Al Maharah,282.0,Yemen,133728.0,Shahan,both,identical +154546,52.75,17.25,YEM,3274.0,Al Maharah,282.0,Yemen,133728.0,Shahan,52.75,17.25,YEM,3274.0,Al Maharah,282.0,Yemen,133728.0,Shahan,both,identical +154547,53.25,17.25,OMN,2902.0,Dhofar,259.0,Oman,130083.0,Salalah,53.25,17.25,OMN,2902.0,Dhofar,259.0,Oman,130083.0,Salalah,both,identical +154548,53.75,17.25,OMN,2902.0,Dhofar,259.0,Oman,130083.0,Salalah,53.75,17.25,OMN,2902.0,Dhofar,259.0,Oman,130083.0,Salalah,both,identical +154549,54.25,17.25,OMN,2902.0,Dhofar,259.0,Oman,130085.0,Taqah,54.25,17.25,OMN,2902.0,Dhofar,259.0,Oman,130085.0,Taqah,both,identical +154550,54.75,17.25,OMN,2902.0,Dhofar,259.0,Oman,130081.0,Marbat,54.75,17.25,OMN,2902.0,Dhofar,259.0,Oman,130081.0,Marbat,both,identical +154551,55.25,17.25,OMN,2902.0,Dhofar,259.0,Oman,130084.0,Sudh,55.25,17.25,OMN,2902.0,Dhofar,259.0,Oman,130084.0,Sudh,both,identical +155128,-16.25,17.75,MRT,1460.0,Trarza,144.0,Mauritania,104219.0,Ouad Naga,-16.25,17.75,MRT,1460.0,Trarza,144.0,Mauritania,104219.0,Ouad Naga,both,identical +155129,-15.75,17.75,MRT,1460.0,Trarza,144.0,Mauritania,104219.0,Ouad Naga,-15.75,17.75,MRT,1460.0,Trarza,144.0,Mauritania,104219.0,Ouad Naga,both,identical +155130,-15.25,17.75,MRT,1460.0,Trarza,144.0,Mauritania,104219.0,Ouad Naga,-15.25,17.75,MRT,1460.0,Trarza,144.0,Mauritania,104219.0,Ouad Naga,both,identical +155131,-14.75,17.75,MRT,1460.0,Trarza,144.0,Mauritania,104216.0,Boutilimit,-14.75,17.75,MRT,1460.0,Trarza,144.0,Mauritania,104216.0,Boutilimit,both,identical +155132,-14.25,17.75,MRT,1460.0,Trarza,144.0,Mauritania,104216.0,Boutilimit,-14.25,17.75,MRT,1460.0,Trarza,144.0,Mauritania,104216.0,Boutilimit,both,identical +155133,-13.75,17.75,MRT,1448.0,Brakna,144.0,Mauritania,104216.0,Boutilimit,-13.75,17.75,MRT,1460.0,Trarza,144.0,Mauritania,104216.0,Boutilimit,both,admin_reallocation +155134,-13.25,17.75,MRT,1448.0,Brakna,144.0,Mauritania,104174.0,Maghta Lahjar,-13.25,17.75,MRT,1448.0,Brakna,144.0,Mauritania,104174.0,Maghta Lahjar,both,identical +155135,-12.75,17.75,MRT,1448.0,Brakna,144.0,Mauritania,104174.0,Maghta Lahjar,-12.75,17.75,MRT,1448.0,Brakna,144.0,Mauritania,104174.0,Maghta Lahjar,both,identical +155136,-12.25,17.75,MRT,1458.0,Tagant,144.0,Mauritania,104210.0,Moudjeria,-12.25,17.75,MRT,1458.0,Tagant,144.0,Mauritania,104210.0,Moudjeria,both,identical +155137,-11.75,17.75,MRT,1458.0,Tagant,144.0,Mauritania,104212.0,Tidjikja,-11.75,17.75,MRT,1458.0,Tagant,144.0,Mauritania,104212.0,Tidjikja,both,identical +155138,-11.25,17.75,MRT,1447.0,Assaba,144.0,Mauritania,104165.0,Boumdeid,-11.25,17.75,MRT,1447.0,Assaba,144.0,Mauritania,104165.0,Boumdeid,both,identical +155139,-10.75,17.75,MRT,1458.0,Tagant,144.0,Mauritania,104211.0,Tichitt,-10.75,17.75,MRT,1458.0,Tagant,144.0,Mauritania,104211.0,Tichitt,both,identical +155140,-10.25,17.75,MRT,1458.0,Tagant,144.0,Mauritania,104211.0,Tichitt,-10.25,17.75,MRT,1458.0,Tagant,144.0,Mauritania,104211.0,Tichitt,both,identical +155141,-9.75,17.75,MRT,1458.0,Tagant,144.0,Mauritania,104211.0,Tichitt,-9.75,17.75,MRT,1458.0,Tagant,144.0,Mauritania,104211.0,Tichitt,both,identical +155142,-9.25,17.75,MRT,1458.0,Tagant,144.0,Mauritania,104211.0,Tichitt,-9.25,17.75,MRT,1458.0,Tagant,144.0,Mauritania,104211.0,Tichitt,both,identical +155143,-8.75,17.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,-8.75,17.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,both,identical +155144,-8.25,17.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,-8.25,17.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,both,identical +155145,-7.75,17.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,-7.75,17.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,both,identical +155146,-7.25,17.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,-7.25,17.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,both,identical +155147,-6.75,17.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,-6.75,17.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,both,identical +155148,-6.25,17.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104190.0,N'Beiket Lehwach,-6.25,17.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104190.0,N'Beiket Lehwach,both,identical +155149,-5.75,17.75,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,-5.75,17.75,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,both,identical +155150,-5.25,17.75,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,-5.25,17.75,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,both,identical +155151,-4.75,17.75,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,-4.75,17.75,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,both,identical +155152,-4.25,17.75,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,-4.25,17.75,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,both,identical +155153,-3.75,17.75,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,-3.75,17.75,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,both,identical +155154,-3.25,17.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-3.25,17.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +155155,-2.75,17.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-2.75,17.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +155156,-2.25,17.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-2.25,17.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +155157,-1.75,17.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-1.75,17.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +155158,-1.25,17.75,MLI,1438.0,Gao,143.0,Mali,104112.0,Bourem,-1.25,17.75,MLI,1438.0,Gao,143.0,Mali,104112.0,Bourem,both,identical +155159,-0.75,17.75,MLI,1438.0,Gao,143.0,Mali,104112.0,Bourem,-0.75,17.75,MLI,1438.0,Gao,143.0,Mali,104112.0,Bourem,both,identical +155160,-0.25,17.75,MLI,1438.0,Gao,143.0,Mali,104112.0,Bourem,-0.25,17.75,MLI,1438.0,Gao,143.0,Mali,104112.0,Bourem,both,identical +155161,0.25,17.75,MLI,1438.0,Gao,143.0,Mali,104112.0,Bourem,0.25,17.75,MLI,1438.0,Gao,143.0,Mali,104112.0,Bourem,both,identical +155162,0.75,17.75,MLI,1438.0,Gao,143.0,Mali,104112.0,Bourem,0.75,17.75,MLI,1438.0,Gao,143.0,Mali,104112.0,Bourem,both,identical +155163,1.25,17.75,MLI,1440.0,Kidal,143.0,Mali,104123.0,Kidal,1.25,17.75,MLI,1440.0,Kidal,143.0,Mali,104123.0,Kidal,both,identical +155164,1.75,17.75,MLI,1438.0,Gao,143.0,Mali,104123.0,Kidal,1.75,17.75,MLI,1440.0,Kidal,143.0,Mali,104123.0,Kidal,both,admin_reallocation +155165,2.25,17.75,MLI,1438.0,Gao,143.0,Mali,104114.0,Ménaka,2.25,17.75,MLI,1438.0,Gao,143.0,Mali,104114.0,Ménaka,both,identical +155166,2.75,17.75,MLI,1438.0,Gao,143.0,Mali,104114.0,Ménaka,2.75,17.75,MLI,1438.0,Gao,143.0,Mali,104114.0,Ménaka,both,identical +155167,3.25,17.75,MLI,1438.0,Gao,143.0,Mali,104114.0,Ménaka,3.25,17.75,MLI,1438.0,Gao,143.0,Mali,104114.0,Ménaka,both,identical +155168,3.75,17.75,MLI,1438.0,Gao,143.0,Mali,104114.0,Ménaka,3.75,17.75,MLI,1438.0,Gao,143.0,Mali,104114.0,Ménaka,both,identical +155169,4.25,17.75,NER,1514.0,Tahoua,150.0,Niger,104605.0,Tassara,4.25,17.75,NER,1514.0,Tahoua,150.0,Niger,104605.0,Tassara,both,identical +155170,4.75,17.75,NER,1514.0,Tahoua,150.0,Niger,104605.0,Tassara,4.75,17.75,NER,1514.0,Tahoua,150.0,Niger,104605.0,Tassara,both,identical +155171,5.25,17.75,NER,1509.0,Agadez,150.0,Niger,104571.0,Ingall,5.25,17.75,NER,1509.0,Agadez,150.0,Niger,104571.0,Ingall,both,identical +155172,5.75,17.75,NER,1509.0,Agadez,150.0,Niger,104571.0,Ingall,5.75,17.75,NER,1509.0,Agadez,150.0,Niger,104571.0,Ingall,both,identical +155173,6.25,17.75,NER,1509.0,Agadez,150.0,Niger,104571.0,Ingall,6.25,17.75,NER,1509.0,Agadez,150.0,Niger,104571.0,Ingall,both,identical +155174,6.75,17.75,NER,1509.0,Agadez,150.0,Niger,104571.0,Ingall,6.75,17.75,NER,1509.0,Agadez,150.0,Niger,104571.0,Ingall,both,identical +155175,7.25,17.75,NER,1509.0,Agadez,150.0,Niger,104571.0,Ingall,7.25,17.75,NER,1509.0,Agadez,150.0,Niger,104571.0,Ingall,both,identical +155176,7.75,17.75,NER,1509.0,Agadez,150.0,Niger,104572.0,Tchirozérine,7.75,17.75,NER,1509.0,Agadez,150.0,Niger,104572.0,Tchirozérine,both,identical +155177,8.25,17.75,NER,1509.0,Agadez,150.0,Niger,104572.0,Tchirozérine,8.25,17.75,NER,1509.0,Agadez,150.0,Niger,104572.0,Tchirozérine,both,identical +155178,8.75,17.75,NER,1509.0,Agadez,150.0,Niger,104572.0,Tchirozérine,8.75,17.75,NER,1509.0,Agadez,150.0,Niger,104572.0,Tchirozérine,both,identical +155179,9.25,17.75,NER,1509.0,Agadez,150.0,Niger,104572.0,Tchirozérine,9.25,17.75,NER,1509.0,Agadez,150.0,Niger,104572.0,Tchirozérine,both,identical +155180,9.75,17.75,NER,1509.0,Agadez,150.0,Niger,104572.0,Tchirozérine,9.75,17.75,NER,1509.0,Agadez,150.0,Niger,104572.0,Tchirozérine,both,identical +155181,10.25,17.75,NER,1509.0,Agadez,150.0,Niger,104572.0,Tchirozérine,10.25,17.75,NER,1509.0,Agadez,150.0,Niger,104572.0,Tchirozérine,both,identical +155182,10.75,17.75,NER,1509.0,Agadez,150.0,Niger,104572.0,Tchirozérine,10.75,17.75,NER,1509.0,Agadez,150.0,Niger,104572.0,Tchirozérine,both,identical +155183,11.25,17.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,11.25,17.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +155184,11.75,17.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,11.75,17.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +155185,12.25,17.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,12.25,17.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +155186,12.75,17.75,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,12.75,17.75,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,both,identical +155187,13.25,17.75,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,13.25,17.75,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,both,identical +155188,13.75,17.75,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,13.75,17.75,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,both,identical +155189,14.25,17.75,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,14.25,17.75,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,both,identical +155190,14.75,17.75,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,14.75,17.75,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,both,identical +155191,15.25,17.75,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,15.25,17.75,NER,1511.0,Diffa,150.0,Niger,104578.0,N'Gourti,both,identical +155192,15.75,17.75,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,15.75,17.75,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,both,identical +155193,16.25,17.75,TCD,1161.0,Borkou,114.0,Chad,102089.0,Borkou Yala,16.25,17.75,TCD,1161.0,Borkou,114.0,Chad,102089.0,Borkou Yala,both,identical +155194,16.75,17.75,TCD,1161.0,Borkou,114.0,Chad,102089.0,Borkou Yala,16.75,17.75,TCD,1161.0,Borkou,114.0,Chad,102089.0,Borkou Yala,both,identical +155195,17.25,17.75,TCD,1161.0,Borkou,114.0,Chad,102089.0,Borkou Yala,17.25,17.75,TCD,1161.0,Borkou,114.0,Chad,102089.0,Borkou Yala,both,identical +155196,17.75,17.75,TCD,1161.0,Borkou,114.0,Chad,102089.0,Borkou Yala,17.75,17.75,TCD,1161.0,Borkou,114.0,Chad,102089.0,Borkou Yala,both,identical +155197,18.25,17.75,TCD,1161.0,Borkou,114.0,Chad,102089.0,Borkou Yala,18.25,17.75,TCD,1161.0,Borkou,114.0,Chad,102089.0,Borkou Yala,both,identical +155198,18.75,17.75,TCD,1161.0,Borkou,114.0,Chad,102089.0,Borkou Yala,18.75,17.75,TCD,1161.0,Borkou,114.0,Chad,102089.0,Borkou Yala,both,identical +155199,19.25,17.75,TCD,1161.0,Borkou,114.0,Chad,102088.0,Borkou,19.25,17.75,TCD,1161.0,Borkou,114.0,Chad,102088.0,Borkou,both,identical +155200,19.75,17.75,TCD,1161.0,Borkou,114.0,Chad,102088.0,Borkou,19.75,17.75,TCD,1161.0,Borkou,114.0,Chad,102088.0,Borkou,both,identical +155201,20.25,17.75,TCD,1161.0,Borkou,114.0,Chad,102088.0,Borkou,20.25,17.75,TCD,1161.0,Borkou,114.0,Chad,102088.0,Borkou,both,identical +155202,20.75,17.75,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,20.75,17.75,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,both,identical +155203,21.25,17.75,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,21.25,17.75,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,both,identical +155204,21.75,17.75,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,21.75,17.75,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,both,identical +155205,22.25,17.75,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,22.25,17.75,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,both,identical +155206,22.75,17.75,TCD,1163.0,Ennedi Est,114.0,Chad,102093.0,Am-Djarass,22.75,17.75,TCD,1163.0,Ennedi Est,114.0,Chad,102093.0,Am-Djarass,both,identical +155207,23.25,17.75,TCD,1163.0,Ennedi Est,114.0,Chad,102093.0,Am-Djarass,23.25,17.75,TCD,1163.0,Ennedi Est,114.0,Chad,102093.0,Am-Djarass,both,identical +155208,23.75,17.75,TCD,1163.0,Ennedi Est,114.0,Chad,102093.0,Am-Djarass,23.75,17.75,TCD,1163.0,Ennedi Est,114.0,Chad,102093.0,Am-Djarass,both,identical +155209,24.25,17.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,24.25,17.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +155210,24.75,17.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,24.75,17.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +155211,25.25,17.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,25.25,17.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +155212,25.75,17.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,25.75,17.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +155213,26.25,17.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,26.25,17.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +155214,26.75,17.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,26.75,17.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +155215,27.25,17.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,27.25,17.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +155216,27.75,17.75,SDN,1636.0,Northern,161.0,Sudan,105829.0,Al Golid,27.75,17.75,SDN,1636.0,Northern,161.0,Sudan,105829.0,Al Golid,both,identical +155217,28.25,17.75,SDN,1636.0,Northern,161.0,Sudan,105829.0,Al Golid,28.25,17.75,SDN,1636.0,Northern,161.0,Sudan,105829.0,Al Golid,both,identical +155218,28.75,17.75,SDN,1636.0,Northern,161.0,Sudan,105829.0,Al Golid,28.75,17.75,SDN,1636.0,Northern,161.0,Sudan,105829.0,Al Golid,both,identical +155219,29.25,17.75,SDN,1636.0,Northern,161.0,Sudan,105829.0,Al Golid,29.25,17.75,SDN,1636.0,Northern,161.0,Sudan,105829.0,Al Golid,both,identical +155220,29.75,17.75,SDN,1636.0,Northern,161.0,Sudan,105829.0,Al Golid,29.75,17.75,SDN,1636.0,Northern,161.0,Sudan,105829.0,Al Golid,both,identical +155221,30.25,17.75,SDN,1636.0,Northern,161.0,Sudan,105827.0,Ad Dabbah,30.25,17.75,SDN,1636.0,Northern,161.0,Sudan,105827.0,Ad Dabbah,both,identical +155222,30.75,17.75,SDN,1636.0,Northern,161.0,Sudan,105827.0,Ad Dabbah,30.75,17.75,SDN,1636.0,Northern,161.0,Sudan,105827.0,Ad Dabbah,both,identical +155223,31.25,17.75,SDN,1636.0,Northern,161.0,Sudan,105827.0,Ad Dabbah,31.25,17.75,SDN,1636.0,Northern,161.0,Sudan,105827.0,Ad Dabbah,both,identical +155224,31.75,17.75,SDN,1636.0,Northern,161.0,Sudan,105833.0,Merwoe,31.75,17.75,SDN,1636.0,Northern,161.0,Sudan,105833.0,Merwoe,both,identical +155225,32.25,17.75,SDN,1638.0,River Nile,161.0,Sudan,105833.0,Merwoe,32.25,17.75,SDN,1636.0,Northern,161.0,Sudan,105833.0,Merwoe,both,admin_reallocation +155226,32.75,17.75,SDN,1638.0,River Nile,161.0,Sudan,105848.0,Atbara,32.75,17.75,SDN,1638.0,River Nile,161.0,Sudan,105848.0,Atbara,both,identical +155227,33.25,17.75,SDN,1638.0,River Nile,161.0,Sudan,105848.0,Atbara,33.25,17.75,SDN,1638.0,River Nile,161.0,Sudan,105848.0,Atbara,both,identical +155228,33.75,17.75,SDN,1638.0,River Nile,161.0,Sudan,105849.0,Barbar,33.75,17.75,SDN,1638.0,River Nile,161.0,Sudan,105849.0,Barbar,both,identical +155229,34.25,17.75,SDN,1638.0,River Nile,161.0,Sudan,105849.0,Barbar,34.25,17.75,SDN,1638.0,River Nile,161.0,Sudan,105849.0,Barbar,both,identical +155230,34.75,17.75,SDN,1638.0,River Nile,161.0,Sudan,105845.0,Ad Damar,34.75,17.75,SDN,1638.0,River Nile,161.0,Sudan,105845.0,Ad Damar,both,identical +155231,35.25,17.75,SDN,1637.0,Red Sea,161.0,Sudan,105836.0,Dordieb,35.25,17.75,SDN,1637.0,Red Sea,161.0,Sudan,105836.0,Dordieb,both,identical +155232,35.75,17.75,SDN,1637.0,Red Sea,161.0,Sudan,105836.0,Dordieb,35.75,17.75,SDN,1637.0,Red Sea,161.0,Sudan,105836.0,Dordieb,both,identical +155233,36.25,17.75,SDN,1637.0,Red Sea,161.0,Sudan,105836.0,Dordieb,36.25,17.75,SDN,1637.0,Red Sea,161.0,Sudan,105836.0,Dordieb,both,identical +155234,36.75,17.75,SDN,1637.0,Red Sea,161.0,Sudan,105838.0,Haya,36.75,17.75,SDN,1637.0,Red Sea,161.0,Sudan,105838.0,Haya,both,identical +155235,37.25,17.75,SDN,1637.0,Red Sea,161.0,Sudan,105843.0,Tawkar,37.25,17.75,SDN,1637.0,Red Sea,161.0,Sudan,105843.0,Tawkar,both,identical +155236,37.75,17.75,SDN,1637.0,Red Sea,161.0,Sudan,105834.0,Agig,37.75,17.75,SDN,1637.0,Red Sea,161.0,Sudan,105834.0,Agig,both,identical +155237,38.25,17.75,SDN,1637.0,Red Sea,161.0,Sudan,105834.0,Agig,38.25,17.75,SDN,1637.0,Red Sea,161.0,Sudan,105834.0,Agig,both,identical +155238,38.75,17.75,ERI,1284.0,Semienawi Keih Bahri,122.0,Eritrea,102980.0,Karura,38.75,17.75,ERI,1284.0,Semienawi Keih Bahri,122.0,Eritrea,102980.0,Karura,both,identical +155244,41.75,17.75,SAU,2958.0,Aseer,266.0,Saudi Arabia,130508.0,Rijal Al Ma,41.75,17.75,SAU,2958.0,Aseer,266.0,Saudi Arabia,130508.0,Rijal Al Ma,both,identical +155245,42.25,17.75,SAU,2961.0,Jazan,266.0,Saudi Arabia,130537.0,Ad Darb,42.25,17.75,SAU,2961.0,Jazan,266.0,Saudi Arabia,130537.0,Ad Darb,both,identical +155246,42.75,17.75,SAU,2961.0,Jazan,266.0,Saudi Arabia,130497.0,Abha,42.75,17.75,SAU,2958.0,Aseer,266.0,Saudi Arabia,130497.0,Abha,both,admin_reallocation +155247,43.25,17.75,SAU,2958.0,Aseer,266.0,Saudi Arabia,130509.0,Sarat Abidah,43.25,17.75,SAU,2958.0,Aseer,266.0,Saudi Arabia,130509.0,Sarat Abidah,both,identical +155248,43.75,17.75,SAU,2963.0,Najran,266.0,Saudi Arabia,130567.0,Badr Al Janub,43.75,17.75,SAU,2963.0,Najran,266.0,Saudi Arabia,130567.0,Badr Al Janub,both,identical +155249,44.25,17.75,SAU,2963.0,Najran,266.0,Saudi Arabia,130570.0,Najran,44.25,17.75,SAU,2963.0,Najran,266.0,Saudi Arabia,130570.0,Najran,both,identical +155250,44.75,17.75,SAU,2963.0,Najran,266.0,Saudi Arabia,130569.0,Khubash,44.75,17.75,SAU,2963.0,Najran,266.0,Saudi Arabia,130569.0,Khubash,both,identical +155251,45.25,17.75,SAU,2963.0,Najran,266.0,Saudi Arabia,130569.0,Khubash,45.25,17.75,SAU,2963.0,Najran,266.0,Saudi Arabia,130569.0,Khubash,both,identical +155252,45.75,17.75,SAU,2963.0,Najran,266.0,Saudi Arabia,130569.0,Khubash,45.75,17.75,SAU,2963.0,Najran,266.0,Saudi Arabia,130569.0,Khubash,both,identical +155253,46.25,17.75,SAU,2963.0,Najran,266.0,Saudi Arabia,130571.0,Sharurah,46.25,17.75,SAU,2963.0,Najran,266.0,Saudi Arabia,130571.0,Sharurah,both,identical +155254,46.75,17.75,SAU,2963.0,Najran,266.0,Saudi Arabia,130571.0,Sharurah,46.75,17.75,SAU,2963.0,Najran,266.0,Saudi Arabia,130571.0,Sharurah,both,identical +155255,47.25,17.75,SAU,2963.0,Najran,266.0,Saudi Arabia,130571.0,Sharurah,47.25,17.75,SAU,2963.0,Najran,266.0,Saudi Arabia,130571.0,Sharurah,both,identical +155256,47.75,17.75,SAU,2963.0,Najran,266.0,Saudi Arabia,130571.0,Sharurah,47.75,17.75,SAU,2963.0,Najran,266.0,Saudi Arabia,130571.0,Sharurah,both,identical +155257,48.25,17.75,YEM,3278.0,Hadramawt,282.0,Yemen,133797.0,Zamakh Wa Manwakh,48.25,17.75,YEM,3278.0,Hadramawt,282.0,Yemen,133797.0,Zamakh Wa Manwakh,both,identical +155258,48.75,17.75,YEM,3278.0,Hadramawt,282.0,Yemen,133775.0,Al Qaf,48.75,17.75,YEM,3278.0,Hadramawt,282.0,Yemen,133775.0,Al Qaf,both,identical +155259,49.25,17.75,YEM,3278.0,Hadramawt,282.0,Yemen,133775.0,Al Qaf,49.25,17.75,YEM,3278.0,Hadramawt,282.0,Yemen,133775.0,Al Qaf,both,identical +155260,49.75,17.75,YEM,3278.0,Hadramawt,282.0,Yemen,133794.0,Thamud,49.75,17.75,YEM,3278.0,Hadramawt,282.0,Yemen,133794.0,Thamud,both,identical +155261,50.25,17.75,YEM,3278.0,Hadramawt,282.0,Yemen,133794.0,Thamud,50.25,17.75,YEM,3278.0,Hadramawt,282.0,Yemen,133794.0,Thamud,both,identical +155262,50.75,17.75,YEM,3278.0,Hadramawt,282.0,Yemen,133789.0,Rumah,50.75,17.75,YEM,3278.0,Hadramawt,282.0,Yemen,133789.0,Rumah,both,identical +155263,51.25,17.75,YEM,3278.0,Hadramawt,282.0,Yemen,133789.0,Rumah,51.25,17.75,YEM,3278.0,Hadramawt,282.0,Yemen,133789.0,Rumah,both,identical +155264,51.75,17.75,YEM,3274.0,Al Maharah,282.0,Yemen,133722.0,Hat,51.75,17.75,YEM,3274.0,Al Maharah,282.0,Yemen,133722.0,Hat,both,identical +155265,52.25,17.75,YEM,3274.0,Al Maharah,282.0,Yemen,133728.0,Shahan,52.25,17.75,YEM,3274.0,Al Maharah,282.0,Yemen,133728.0,Shahan,both,identical +155266,52.75,17.75,OMN,2902.0,Dhofar,259.0,Oman,130086.0,Thumrait,52.75,17.75,OMN,2902.0,Dhofar,259.0,Oman,130086.0,Thumrait,both,identical +155267,53.25,17.75,OMN,2902.0,Dhofar,259.0,Oman,130086.0,Thumrait,53.25,17.75,OMN,2902.0,Dhofar,259.0,Oman,130086.0,Thumrait,both,identical +155268,53.75,17.75,OMN,2902.0,Dhofar,259.0,Oman,130086.0,Thumrait,53.75,17.75,OMN,2902.0,Dhofar,259.0,Oman,130086.0,Thumrait,both,identical +155269,54.25,17.75,OMN,2902.0,Dhofar,259.0,Oman,130086.0,Thumrait,54.25,17.75,OMN,2902.0,Dhofar,259.0,Oman,130086.0,Thumrait,both,identical +155270,54.75,17.75,OMN,2902.0,Dhofar,259.0,Oman,130084.0,Sudh,54.75,17.75,OMN,2902.0,Dhofar,259.0,Oman,130084.0,Sudh,both,identical +155271,55.25,17.75,OMN,2902.0,Dhofar,259.0,Oman,130084.0,Sudh,55.25,17.75,OMN,2902.0,Dhofar,259.0,Oman,130084.0,Sudh,both,identical +155272,55.75,17.75,OMN,2902.0,Dhofar,259.0,Oman,130082.0,Muqshin,55.75,17.75,OMN,2902.0,Dhofar,259.0,Oman,130082.0,Muqshin,both,identical +155273,56.25,17.75,OMN,2902.0,Dhofar,259.0,Oman,130082.0,Muqshin,56.25,17.75,OMN,2902.0,Dhofar,259.0,Oman,130082.0,Muqshin,both,identical +155848,-16.25,18.25,MRT,1456.0,Nouakchott-Ouest,144.0,Mauritania,104206.0,Tevragh Zeina,-16.25,18.25,MRT,1456.0,Nouakchott-Ouest,144.0,Mauritania,104206.0,Tevragh Zeina,both,identical +155849,-15.75,18.25,MRT,1460.0,Trarza,144.0,Mauritania,104219.0,Ouad Naga,-15.75,18.25,MRT,1460.0,Trarza,144.0,Mauritania,104219.0,Ouad Naga,both,identical +155850,-15.25,18.25,MRT,1460.0,Trarza,144.0,Mauritania,104219.0,Ouad Naga,-15.25,18.25,MRT,1460.0,Trarza,144.0,Mauritania,104219.0,Ouad Naga,both,identical +155851,-14.75,18.25,MRT,1460.0,Trarza,144.0,Mauritania,104216.0,Boutilimit,-14.75,18.25,MRT,1460.0,Trarza,144.0,Mauritania,104216.0,Boutilimit,both,identical +155852,-14.25,18.25,MRT,1460.0,Trarza,144.0,Mauritania,104216.0,Boutilimit,-14.25,18.25,MRT,1460.0,Trarza,144.0,Mauritania,104216.0,Boutilimit,both,identical +155853,-13.75,18.25,MRT,1460.0,Trarza,144.0,Mauritania,104216.0,Boutilimit,-13.75,18.25,MRT,1460.0,Trarza,144.0,Mauritania,104216.0,Boutilimit,both,identical +155854,-13.25,18.25,MRT,1460.0,Trarza,144.0,Mauritania,104216.0,Boutilimit,-13.25,18.25,MRT,1460.0,Trarza,144.0,Mauritania,104216.0,Boutilimit,both,identical +155855,-12.75,18.25,MRT,1448.0,Brakna,144.0,Mauritania,104174.0,Maghta Lahjar,-12.75,18.25,MRT,1448.0,Brakna,144.0,Mauritania,104174.0,Maghta Lahjar,both,identical +155856,-12.25,18.25,MRT,1458.0,Tagant,144.0,Mauritania,104210.0,Moudjeria,-12.25,18.25,MRT,1458.0,Tagant,144.0,Mauritania,104210.0,Moudjeria,both,identical +155857,-11.75,18.25,MRT,1458.0,Tagant,144.0,Mauritania,104212.0,Tidjikja,-11.75,18.25,MRT,1458.0,Tagant,144.0,Mauritania,104212.0,Tidjikja,both,identical +155858,-11.25,18.25,MRT,1458.0,Tagant,144.0,Mauritania,104212.0,Tidjikja,-11.25,18.25,MRT,1458.0,Tagant,144.0,Mauritania,104212.0,Tidjikja,both,identical +155859,-10.75,18.25,MRT,1458.0,Tagant,144.0,Mauritania,104211.0,Tichitt,-10.75,18.25,MRT,1458.0,Tagant,144.0,Mauritania,104211.0,Tichitt,both,identical +155860,-10.25,18.25,MRT,1458.0,Tagant,144.0,Mauritania,104211.0,Tichitt,-10.25,18.25,MRT,1458.0,Tagant,144.0,Mauritania,104211.0,Tichitt,both,identical +155861,-9.75,18.25,MRT,1458.0,Tagant,144.0,Mauritania,104211.0,Tichitt,-9.75,18.25,MRT,1458.0,Tagant,144.0,Mauritania,104211.0,Tichitt,both,identical +155862,-9.25,18.25,MRT,1458.0,Tagant,144.0,Mauritania,104211.0,Tichitt,-9.25,18.25,MRT,1458.0,Tagant,144.0,Mauritania,104211.0,Tichitt,both,identical +155863,-8.75,18.25,MRT,1458.0,Tagant,144.0,Mauritania,104211.0,Tichitt,-8.75,18.25,MRT,1458.0,Tagant,144.0,Mauritania,104211.0,Tichitt,both,identical +155864,-8.25,18.25,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,-8.25,18.25,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,both,identical +155865,-7.75,18.25,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,-7.75,18.25,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,both,identical +155866,-7.25,18.25,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,-7.25,18.25,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,both,identical +155867,-6.75,18.25,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,-6.75,18.25,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,both,identical +155868,-6.25,18.25,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104190.0,N'Beiket Lehwach,-6.25,18.25,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104190.0,N'Beiket Lehwach,both,identical +155869,-5.75,18.25,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,-5.75,18.25,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,both,identical +155870,-5.25,18.25,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,-5.25,18.25,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,both,identical +155871,-4.75,18.25,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,-4.75,18.25,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,both,identical +155872,-4.25,18.25,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,-4.25,18.25,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,both,identical +155873,-3.75,18.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-3.75,18.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +155874,-3.25,18.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-3.25,18.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +155875,-2.75,18.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-2.75,18.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +155876,-2.25,18.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-2.25,18.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +155877,-1.75,18.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-1.75,18.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +155878,-1.25,18.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-1.25,18.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +155879,-0.75,18.25,MLI,1438.0,Gao,143.0,Mali,104112.0,Bourem,-0.75,18.25,MLI,1438.0,Gao,143.0,Mali,104112.0,Bourem,both,identical +155880,-0.25,18.25,MLI,1438.0,Gao,143.0,Mali,104112.0,Bourem,-0.25,18.25,MLI,1438.0,Gao,143.0,Mali,104112.0,Bourem,both,identical +155881,0.25,18.25,MLI,1438.0,Gao,143.0,Mali,104112.0,Bourem,0.25,18.25,MLI,1438.0,Gao,143.0,Mali,104112.0,Bourem,both,identical +155882,0.75,18.25,MLI,1440.0,Kidal,143.0,Mali,104123.0,Kidal,0.75,18.25,MLI,1440.0,Kidal,143.0,Mali,104123.0,Kidal,both,identical +155883,1.25,18.25,MLI,1440.0,Kidal,143.0,Mali,104123.0,Kidal,1.25,18.25,MLI,1440.0,Kidal,143.0,Mali,104123.0,Kidal,both,identical +155884,1.75,18.25,MLI,1440.0,Kidal,143.0,Mali,104123.0,Kidal,1.75,18.25,MLI,1440.0,Kidal,143.0,Mali,104123.0,Kidal,both,identical +155885,2.25,18.25,MLI,1440.0,Kidal,143.0,Mali,104125.0,Tin-Essako,2.25,18.25,MLI,1440.0,Kidal,143.0,Mali,104125.0,Tin-Essako,both,identical +155886,2.75,18.25,MLI,1440.0,Kidal,143.0,Mali,104125.0,Tin-Essako,2.75,18.25,MLI,1440.0,Kidal,143.0,Mali,104125.0,Tin-Essako,both,identical +155887,3.25,18.25,MLI,1440.0,Kidal,143.0,Mali,104125.0,Tin-Essako,3.25,18.25,MLI,1440.0,Kidal,143.0,Mali,104125.0,Tin-Essako,both,identical +155888,3.75,18.25,MLI,1440.0,Kidal,143.0,Mali,104125.0,Tin-Essako,3.75,18.25,MLI,1440.0,Kidal,143.0,Mali,104125.0,Tin-Essako,both,identical +155889,4.25,18.25,NER,1514.0,Tahoua,150.0,Niger,104605.0,Tassara,4.25,18.25,NER,1514.0,Tahoua,150.0,Niger,104605.0,Tassara,both,identical +155890,4.75,18.25,NER,1514.0,Tahoua,150.0,Niger,104605.0,Tassara,4.75,18.25,NER,1514.0,Tahoua,150.0,Niger,104605.0,Tassara,both,identical +155891,5.25,18.25,NER,1509.0,Agadez,150.0,Niger,104571.0,Ingall,5.25,18.25,NER,1509.0,Agadez,150.0,Niger,104571.0,Ingall,both,identical +155892,5.75,18.25,NER,1509.0,Agadez,150.0,Niger,104571.0,Ingall,5.75,18.25,NER,1509.0,Agadez,150.0,Niger,104571.0,Ingall,both,identical +155893,6.25,18.25,NER,1509.0,Agadez,150.0,Niger,104568.0,Arlit,6.25,18.25,NER,1509.0,Agadez,150.0,Niger,104568.0,Arlit,both,identical +155894,6.75,18.25,NER,1509.0,Agadez,150.0,Niger,104568.0,Arlit,6.75,18.25,NER,1509.0,Agadez,150.0,Niger,104568.0,Arlit,both,identical +155895,7.25,18.25,NER,1509.0,Agadez,150.0,Niger,104568.0,Arlit,7.25,18.25,NER,1509.0,Agadez,150.0,Niger,104568.0,Arlit,both,identical +155896,7.75,18.25,NER,1509.0,Agadez,150.0,Niger,104568.0,Arlit,7.75,18.25,NER,1509.0,Agadez,150.0,Niger,104568.0,Arlit,both,identical +155897,8.25,18.25,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,8.25,18.25,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,both,identical +155898,8.75,18.25,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,8.75,18.25,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,both,identical +155899,9.25,18.25,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,9.25,18.25,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,both,identical +155900,9.75,18.25,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,9.75,18.25,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,both,identical +155901,10.25,18.25,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,10.25,18.25,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,both,identical +155902,10.75,18.25,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,10.75,18.25,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,both,identical +155903,11.25,18.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,11.25,18.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +155904,11.75,18.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,11.75,18.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +155905,12.25,18.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,12.25,18.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +155906,12.75,18.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,12.75,18.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +155907,13.25,18.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,13.25,18.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +155908,13.75,18.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,13.75,18.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +155909,14.25,18.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,14.25,18.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +155910,14.75,18.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,14.75,18.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +155911,15.25,18.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,15.25,18.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +155912,15.75,18.25,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,15.75,18.25,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,both,identical +155913,16.25,18.25,TCD,1161.0,Borkou,114.0,Chad,102089.0,Borkou Yala,16.25,18.25,TCD,1161.0,Borkou,114.0,Chad,102089.0,Borkou Yala,both,identical +155914,16.75,18.25,TCD,1161.0,Borkou,114.0,Chad,102089.0,Borkou Yala,16.75,18.25,TCD,1161.0,Borkou,114.0,Chad,102089.0,Borkou Yala,both,identical +155915,17.25,18.25,TCD,1161.0,Borkou,114.0,Chad,102089.0,Borkou Yala,17.25,18.25,TCD,1161.0,Borkou,114.0,Chad,102089.0,Borkou Yala,both,identical +155916,17.75,18.25,TCD,1161.0,Borkou,114.0,Chad,102089.0,Borkou Yala,17.75,18.25,TCD,1161.0,Borkou,114.0,Chad,102089.0,Borkou Yala,both,identical +155917,18.25,18.25,TCD,1161.0,Borkou,114.0,Chad,102089.0,Borkou Yala,18.25,18.25,TCD,1161.0,Borkou,114.0,Chad,102089.0,Borkou Yala,both,identical +155918,18.75,18.25,TCD,1161.0,Borkou,114.0,Chad,102089.0,Borkou Yala,18.75,18.25,TCD,1161.0,Borkou,114.0,Chad,102089.0,Borkou Yala,both,identical +155919,19.25,18.25,TCD,1161.0,Borkou,114.0,Chad,102089.0,Borkou Yala,19.25,18.25,TCD,1161.0,Borkou,114.0,Chad,102089.0,Borkou Yala,both,identical +155920,19.75,18.25,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,19.75,18.25,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,both,identical +155921,20.25,18.25,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,20.25,18.25,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,both,identical +155922,20.75,18.25,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,20.75,18.25,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,both,identical +155923,21.25,18.25,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,21.25,18.25,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,both,identical +155924,21.75,18.25,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,21.75,18.25,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,both,identical +155925,22.25,18.25,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,22.25,18.25,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,both,identical +155926,22.75,18.25,TCD,1163.0,Ennedi Est,114.0,Chad,102093.0,Am-Djarass,22.75,18.25,TCD,1163.0,Ennedi Est,114.0,Chad,102093.0,Am-Djarass,both,identical +155927,23.25,18.25,TCD,1163.0,Ennedi Est,114.0,Chad,102093.0,Am-Djarass,23.25,18.25,TCD,1163.0,Ennedi Est,114.0,Chad,102093.0,Am-Djarass,both,identical +155928,23.75,18.25,TCD,1163.0,Ennedi Est,114.0,Chad,102093.0,Am-Djarass,23.75,18.25,TCD,1163.0,Ennedi Est,114.0,Chad,102093.0,Am-Djarass,both,identical +155929,24.25,18.25,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,24.25,18.25,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +155930,24.75,18.25,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,24.75,18.25,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +155931,25.25,18.25,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,25.25,18.25,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +155932,25.75,18.25,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,25.75,18.25,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +155933,26.25,18.25,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,26.25,18.25,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +155934,26.75,18.25,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,26.75,18.25,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +155935,27.25,18.25,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,27.25,18.25,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +155936,27.75,18.25,SDN,1636.0,Northern,161.0,Sudan,105829.0,Al Golid,27.75,18.25,SDN,1636.0,Northern,161.0,Sudan,105829.0,Al Golid,both,identical +155937,28.25,18.25,SDN,1636.0,Northern,161.0,Sudan,105829.0,Al Golid,28.25,18.25,SDN,1636.0,Northern,161.0,Sudan,105829.0,Al Golid,both,identical +155938,28.75,18.25,SDN,1636.0,Northern,161.0,Sudan,105829.0,Al Golid,28.75,18.25,SDN,1636.0,Northern,161.0,Sudan,105829.0,Al Golid,both,identical +155939,29.25,18.25,SDN,1636.0,Northern,161.0,Sudan,105829.0,Al Golid,29.25,18.25,SDN,1636.0,Northern,161.0,Sudan,105829.0,Al Golid,both,identical +155940,29.75,18.25,SDN,1636.0,Northern,161.0,Sudan,105829.0,Al Golid,29.75,18.25,SDN,1636.0,Northern,161.0,Sudan,105829.0,Al Golid,both,identical +155941,30.25,18.25,SDN,1636.0,Northern,161.0,Sudan,105829.0,Al Golid,30.25,18.25,SDN,1636.0,Northern,161.0,Sudan,105829.0,Al Golid,both,identical +155942,30.75,18.25,SDN,1636.0,Northern,161.0,Sudan,105827.0,Ad Dabbah,30.75,18.25,SDN,1636.0,Northern,161.0,Sudan,105827.0,Ad Dabbah,both,identical +155943,31.25,18.25,SDN,1636.0,Northern,161.0,Sudan,105827.0,Ad Dabbah,31.25,18.25,SDN,1636.0,Northern,161.0,Sudan,105827.0,Ad Dabbah,both,identical +155944,31.75,18.25,SDN,1636.0,Northern,161.0,Sudan,105833.0,Merwoe,31.75,18.25,SDN,1636.0,Northern,161.0,Sudan,105833.0,Merwoe,both,identical +155945,32.25,18.25,SDN,1636.0,Northern,161.0,Sudan,105833.0,Merwoe,32.25,18.25,SDN,1636.0,Northern,161.0,Sudan,105833.0,Merwoe,both,identical +155946,32.75,18.25,SDN,1638.0,River Nile,161.0,Sudan,105849.0,Barbar,32.75,18.25,SDN,1638.0,River Nile,161.0,Sudan,105849.0,Barbar,both,identical +155947,33.25,18.25,SDN,1638.0,River Nile,161.0,Sudan,105849.0,Barbar,33.25,18.25,SDN,1638.0,River Nile,161.0,Sudan,105849.0,Barbar,both,identical +155948,33.75,18.25,SDN,1638.0,River Nile,161.0,Sudan,105849.0,Barbar,33.75,18.25,SDN,1638.0,River Nile,161.0,Sudan,105849.0,Barbar,both,identical +155949,34.25,18.25,SDN,1638.0,River Nile,161.0,Sudan,105849.0,Barbar,34.25,18.25,SDN,1638.0,River Nile,161.0,Sudan,105849.0,Barbar,both,identical +155950,34.75,18.25,SDN,1637.0,Red Sea,161.0,Sudan,105835.0,Al Ganab,34.75,18.25,SDN,1637.0,Red Sea,161.0,Sudan,105835.0,Al Ganab,both,identical +155951,35.25,18.25,SDN,1637.0,Red Sea,161.0,Sudan,105838.0,Haya,35.25,18.25,SDN,1637.0,Red Sea,161.0,Sudan,105838.0,Haya,both,identical +155952,35.75,18.25,SDN,1637.0,Red Sea,161.0,Sudan,105838.0,Haya,35.75,18.25,SDN,1637.0,Red Sea,161.0,Sudan,105838.0,Haya,both,identical +155953,36.25,18.25,SDN,1637.0,Red Sea,161.0,Sudan,105838.0,Haya,36.25,18.25,SDN,1637.0,Red Sea,161.0,Sudan,105838.0,Haya,both,identical +155954,36.75,18.25,SDN,1637.0,Red Sea,161.0,Sudan,105838.0,Haya,36.75,18.25,SDN,1637.0,Red Sea,161.0,Sudan,105838.0,Haya,both,identical +155955,37.25,18.25,SDN,1637.0,Red Sea,161.0,Sudan,105843.0,Tawkar,37.25,18.25,SDN,1637.0,Red Sea,161.0,Sudan,105843.0,Tawkar,both,identical +155956,37.75,18.25,SDN,1637.0,Red Sea,161.0,Sudan,105843.0,Tawkar,37.75,18.25,SDN,1637.0,Red Sea,161.0,Sudan,105843.0,Tawkar,both,identical +155957,38.25,18.25,SDN,1637.0,Red Sea,161.0,Sudan,105834.0,Agig,38.25,18.25,SDN,1637.0,Red Sea,161.0,Sudan,105834.0,Agig,both,identical +155958,38.75,18.25,SDN,1637.0,Red Sea,161.0,Sudan,105834.0,Agig,38.75,18.25,SDN,1637.0,Red Sea,161.0,Sudan,105834.0,Agig,both,identical +155963,41.25,18.25,SAU,2958.0,Aseer,266.0,Saudi Arabia,130499.0,Al Birk,41.25,18.25,SAU,2958.0,Aseer,266.0,Saudi Arabia,130499.0,Al Birk,both,identical +155964,41.75,18.25,SAU,2958.0,Aseer,266.0,Saudi Arabia,130507.0,Muhayil,41.75,18.25,SAU,2958.0,Aseer,266.0,Saudi Arabia,130507.0,Muhayil,both,identical +155965,42.25,18.25,SAU,2958.0,Aseer,266.0,Saudi Arabia,130508.0,Rijal Al Ma,42.25,18.25,SAU,2958.0,Aseer,266.0,Saudi Arabia,130508.0,Rijal Al Ma,both,identical +155966,42.75,18.25,SAU,2958.0,Aseer,266.0,Saudi Arabia,130506.0,Khamis Mushayt,42.75,18.25,SAU,2958.0,Aseer,266.0,Saudi Arabia,130506.0,Khamis Mushayt,both,identical +155967,43.25,18.25,SAU,2958.0,Aseer,266.0,Saudi Arabia,130509.0,Sarat Abidah,43.25,18.25,SAU,2958.0,Aseer,266.0,Saudi Arabia,130509.0,Sarat Abidah,both,identical +155968,43.75,18.25,SAU,2958.0,Aseer,266.0,Saudi Arabia,130572.0,Thar,43.75,18.25,SAU,2963.0,Najran,266.0,Saudi Arabia,130572.0,Thar,both,admin_reallocation +155969,44.25,18.25,SAU,2963.0,Najran,266.0,Saudi Arabia,130572.0,Thar,44.25,18.25,SAU,2963.0,Najran,266.0,Saudi Arabia,130572.0,Thar,both,identical +155970,44.75,18.25,SAU,2963.0,Najran,266.0,Saudi Arabia,130572.0,Thar,44.75,18.25,SAU,2963.0,Najran,266.0,Saudi Arabia,130572.0,Thar,both,identical +155971,45.25,18.25,SAU,2963.0,Najran,266.0,Saudi Arabia,130572.0,Thar,45.25,18.25,SAU,2963.0,Najran,266.0,Saudi Arabia,130572.0,Thar,both,identical +155972,45.75,18.25,SAU,2963.0,Najran,266.0,Saudi Arabia,130571.0,Sharurah,45.75,18.25,SAU,2963.0,Najran,266.0,Saudi Arabia,130571.0,Sharurah,both,identical +155973,46.25,18.25,SAU,2963.0,Najran,266.0,Saudi Arabia,130571.0,Sharurah,46.25,18.25,SAU,2963.0,Najran,266.0,Saudi Arabia,130571.0,Sharurah,both,identical +155974,46.75,18.25,SAU,2963.0,Najran,266.0,Saudi Arabia,130571.0,Sharurah,46.75,18.25,SAU,2963.0,Najran,266.0,Saudi Arabia,130571.0,Sharurah,both,identical +155975,47.25,18.25,SAU,2963.0,Najran,266.0,Saudi Arabia,130571.0,Sharurah,47.25,18.25,SAU,2963.0,Najran,266.0,Saudi Arabia,130571.0,Sharurah,both,identical +155976,47.75,18.25,SAU,2963.0,Najran,266.0,Saudi Arabia,130571.0,Sharurah,47.75,18.25,SAU,2963.0,Najran,266.0,Saudi Arabia,130571.0,Sharurah,both,identical +155977,48.25,18.25,SAU,2963.0,Najran,266.0,Saudi Arabia,130571.0,Sharurah,48.25,18.25,SAU,2963.0,Najran,266.0,Saudi Arabia,130571.0,Sharurah,both,identical +155978,48.75,18.25,YEM,3278.0,Hadramawt,282.0,Yemen,133775.0,Al Qaf,48.75,18.25,YEM,3278.0,Hadramawt,282.0,Yemen,133775.0,Al Qaf,both,identical +155979,49.25,18.25,YEM,3278.0,Hadramawt,282.0,Yemen,133775.0,Al Qaf,49.25,18.25,YEM,3278.0,Hadramawt,282.0,Yemen,133775.0,Al Qaf,both,identical +155980,49.75,18.25,YEM,3278.0,Hadramawt,282.0,Yemen,133794.0,Thamud,49.75,18.25,YEM,3278.0,Hadramawt,282.0,Yemen,133794.0,Thamud,both,identical +155981,50.25,18.25,YEM,3278.0,Hadramawt,282.0,Yemen,133794.0,Thamud,50.25,18.25,YEM,3278.0,Hadramawt,282.0,Yemen,133794.0,Thamud,both,identical +155982,50.75,18.25,YEM,3278.0,Hadramawt,282.0,Yemen,133789.0,Rumah,50.75,18.25,YEM,3278.0,Hadramawt,282.0,Yemen,133789.0,Rumah,both,identical +155983,51.25,18.25,YEM,3278.0,Hadramawt,282.0,Yemen,133789.0,Rumah,51.25,18.25,YEM,3278.0,Hadramawt,282.0,Yemen,133789.0,Rumah,both,identical +155984,51.75,18.25,YEM,3274.0,Al Maharah,282.0,Yemen,133728.0,Shahan,51.75,18.25,YEM,3274.0,Al Maharah,282.0,Yemen,133728.0,Shahan,both,identical +155985,52.25,18.25,YEM,3274.0,Al Maharah,282.0,Yemen,133728.0,Shahan,52.25,18.25,YEM,3274.0,Al Maharah,282.0,Yemen,133728.0,Shahan,both,identical +155986,52.75,18.25,OMN,2902.0,Dhofar,259.0,Oman,130086.0,Thumrait,52.75,18.25,OMN,2902.0,Dhofar,259.0,Oman,130086.0,Thumrait,both,identical +155987,53.25,18.25,OMN,2902.0,Dhofar,259.0,Oman,130086.0,Thumrait,53.25,18.25,OMN,2902.0,Dhofar,259.0,Oman,130086.0,Thumrait,both,identical +155988,53.75,18.25,OMN,2902.0,Dhofar,259.0,Oman,130086.0,Thumrait,53.75,18.25,OMN,2902.0,Dhofar,259.0,Oman,130086.0,Thumrait,both,identical +155989,54.25,18.25,OMN,2902.0,Dhofar,259.0,Oman,130086.0,Thumrait,54.25,18.25,OMN,2902.0,Dhofar,259.0,Oman,130086.0,Thumrait,both,identical +155990,54.75,18.25,OMN,2902.0,Dhofar,259.0,Oman,130086.0,Thumrait,54.75,18.25,OMN,2902.0,Dhofar,259.0,Oman,130086.0,Thumrait,both,identical +155991,55.25,18.25,OMN,2902.0,Dhofar,259.0,Oman,130084.0,Sudh,55.25,18.25,OMN,2902.0,Dhofar,259.0,Oman,130084.0,Sudh,both,identical +155992,55.75,18.25,OMN,2902.0,Dhofar,259.0,Oman,130082.0,Muqshin,55.75,18.25,OMN,2902.0,Dhofar,259.0,Oman,130082.0,Muqshin,both,identical +155993,56.25,18.25,OMN,2902.0,Dhofar,259.0,Oman,130082.0,Muqshin,56.25,18.25,OMN,2902.0,Dhofar,259.0,Oman,130082.0,Muqshin,both,identical +155994,56.75,18.25,OMN,2902.0,Dhofar,259.0,Oman,130082.0,Muqshin,56.75,18.25,OMN,2902.0,Dhofar,259.0,Oman,130082.0,Muqshin,both,identical +156568,-16.25,18.75,MRT,1454.0,Inchiri,144.0,Mauritania,104200.0,Benechab,-16.25,18.75,MRT,1454.0,Inchiri,144.0,Mauritania,104200.0,Benechab,both,identical +156569,-15.75,18.75,MRT,1454.0,Inchiri,144.0,Mauritania,104200.0,Benechab,-15.75,18.75,MRT,1454.0,Inchiri,144.0,Mauritania,104200.0,Benechab,both,identical +156570,-15.25,18.75,MRT,1460.0,Trarza,144.0,Mauritania,104219.0,Ouad Naga,-15.25,18.75,MRT,1460.0,Trarza,144.0,Mauritania,104219.0,Ouad Naga,both,identical +156571,-14.75,18.75,MRT,1460.0,Trarza,144.0,Mauritania,104219.0,Ouad Naga,-14.75,18.75,MRT,1460.0,Trarza,144.0,Mauritania,104219.0,Ouad Naga,both,identical +156572,-14.25,18.75,MRT,1460.0,Trarza,144.0,Mauritania,104216.0,Boutilimit,-14.25,18.75,MRT,1460.0,Trarza,144.0,Mauritania,104216.0,Boutilimit,both,identical +156573,-13.75,18.75,MRT,1460.0,Trarza,144.0,Mauritania,104216.0,Boutilimit,-13.75,18.75,MRT,1460.0,Trarza,144.0,Mauritania,104216.0,Boutilimit,both,identical +156574,-13.25,18.75,MRT,1460.0,Trarza,144.0,Mauritania,104216.0,Boutilimit,-13.25,18.75,MRT,1460.0,Trarza,144.0,Mauritania,104216.0,Boutilimit,both,identical +156575,-12.75,18.75,MRT,1446.0,Adrar,144.0,Mauritania,104160.0,Aoujeft,-12.75,18.75,MRT,1446.0,Adrar,144.0,Mauritania,104160.0,Aoujeft,both,identical +156576,-12.25,18.75,MRT,1458.0,Tagant,144.0,Mauritania,104212.0,Tidjikja,-12.25,18.75,MRT,1458.0,Tagant,144.0,Mauritania,104212.0,Tidjikja,both,identical +156577,-11.75,18.75,MRT,1458.0,Tagant,144.0,Mauritania,104212.0,Tidjikja,-11.75,18.75,MRT,1458.0,Tagant,144.0,Mauritania,104212.0,Tidjikja,both,identical +156578,-11.25,18.75,MRT,1458.0,Tagant,144.0,Mauritania,104212.0,Tidjikja,-11.25,18.75,MRT,1458.0,Tagant,144.0,Mauritania,104212.0,Tidjikja,both,identical +156579,-10.75,18.75,MRT,1458.0,Tagant,144.0,Mauritania,104211.0,Tichitt,-10.75,18.75,MRT,1458.0,Tagant,144.0,Mauritania,104211.0,Tichitt,both,identical +156580,-10.25,18.75,MRT,1458.0,Tagant,144.0,Mauritania,104211.0,Tichitt,-10.25,18.75,MRT,1458.0,Tagant,144.0,Mauritania,104211.0,Tichitt,both,identical +156581,-9.75,18.75,MRT,1458.0,Tagant,144.0,Mauritania,104211.0,Tichitt,-9.75,18.75,MRT,1458.0,Tagant,144.0,Mauritania,104211.0,Tichitt,both,identical +156582,-9.25,18.75,MRT,1458.0,Tagant,144.0,Mauritania,104211.0,Tichitt,-9.25,18.75,MRT,1458.0,Tagant,144.0,Mauritania,104211.0,Tichitt,both,identical +156583,-8.75,18.75,MRT,1458.0,Tagant,144.0,Mauritania,104211.0,Tichitt,-8.75,18.75,MRT,1458.0,Tagant,144.0,Mauritania,104211.0,Tichitt,both,identical +156584,-8.25,18.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,-8.25,18.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,both,identical +156585,-7.75,18.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,-7.75,18.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,both,identical +156586,-7.25,18.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,-7.25,18.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,both,identical +156587,-6.75,18.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,-6.75,18.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,both,identical +156588,-6.25,18.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104190.0,N'Beiket Lehwach,-6.25,18.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104190.0,N'Beiket Lehwach,both,identical +156589,-5.75,18.75,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,-5.75,18.75,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,both,identical +156590,-5.25,18.75,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,-5.25,18.75,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,both,identical +156591,-4.75,18.75,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,-4.75,18.75,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,both,identical +156592,-4.25,18.75,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,-4.25,18.75,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,both,identical +156593,-3.75,18.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-3.75,18.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +156594,-3.25,18.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-3.25,18.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +156595,-2.75,18.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-2.75,18.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +156596,-2.25,18.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-2.25,18.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +156597,-1.75,18.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-1.75,18.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +156598,-1.25,18.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-1.25,18.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +156599,-0.75,18.75,MLI,1438.0,Gao,143.0,Mali,104112.0,Bourem,-0.75,18.75,MLI,1438.0,Gao,143.0,Mali,104112.0,Bourem,both,identical +156600,-0.25,18.75,MLI,1438.0,Gao,143.0,Mali,104112.0,Bourem,-0.25,18.75,MLI,1438.0,Gao,143.0,Mali,104112.0,Bourem,both,identical +156601,0.25,18.75,MLI,1440.0,Kidal,143.0,Mali,104124.0,Tessalit,0.25,18.75,MLI,1440.0,Kidal,143.0,Mali,104124.0,Tessalit,both,identical +156602,0.75,18.75,MLI,1440.0,Kidal,143.0,Mali,104124.0,Tessalit,0.75,18.75,MLI,1440.0,Kidal,143.0,Mali,104124.0,Tessalit,both,identical +156603,1.25,18.75,MLI,1440.0,Kidal,143.0,Mali,104123.0,Kidal,1.25,18.75,MLI,1440.0,Kidal,143.0,Mali,104123.0,Kidal,both,identical +156604,1.75,18.75,MLI,1440.0,Kidal,143.0,Mali,104123.0,Kidal,1.75,18.75,MLI,1440.0,Kidal,143.0,Mali,104123.0,Kidal,both,identical +156605,2.25,18.75,MLI,1440.0,Kidal,143.0,Mali,104125.0,Tin-Essako,2.25,18.75,MLI,1440.0,Kidal,143.0,Mali,104125.0,Tin-Essako,both,identical +156606,2.75,18.75,MLI,1440.0,Kidal,143.0,Mali,104125.0,Tin-Essako,2.75,18.75,MLI,1440.0,Kidal,143.0,Mali,104125.0,Tin-Essako,both,identical +156607,3.25,18.75,MLI,1440.0,Kidal,143.0,Mali,104125.0,Tin-Essako,3.25,18.75,MLI,1440.0,Kidal,143.0,Mali,104125.0,Tin-Essako,both,identical +156608,3.75,18.75,MLI,1440.0,Kidal,143.0,Mali,104125.0,Tin-Essako,3.75,18.75,MLI,1440.0,Kidal,143.0,Mali,104125.0,Tin-Essako,both,identical +156609,4.25,18.75,NER,1509.0,Agadez,150.0,Niger,104571.0,Ingall,4.25,18.75,MLI,1440.0,Kidal,143.0,Mali,104125.0,Tin-Essako,both,country_reassignment +156610,4.75,18.75,NER,1509.0,Agadez,150.0,Niger,104571.0,Ingall,4.75,18.75,NER,1509.0,Agadez,150.0,Niger,104571.0,Ingall,both,identical +156611,5.25,18.75,NER,1509.0,Agadez,150.0,Niger,104571.0,Ingall,5.25,18.75,NER,1509.0,Agadez,150.0,Niger,104571.0,Ingall,both,identical +156612,5.75,18.75,NER,1509.0,Agadez,150.0,Niger,104571.0,Ingall,5.75,18.75,NER,1509.0,Agadez,150.0,Niger,104571.0,Ingall,both,identical +156613,6.25,18.75,NER,1509.0,Agadez,150.0,Niger,104568.0,Arlit,6.25,18.75,NER,1509.0,Agadez,150.0,Niger,104568.0,Arlit,both,identical +156614,6.75,18.75,NER,1509.0,Agadez,150.0,Niger,104568.0,Arlit,6.75,18.75,NER,1509.0,Agadez,150.0,Niger,104568.0,Arlit,both,identical +156615,7.25,18.75,NER,1509.0,Agadez,150.0,Niger,104568.0,Arlit,7.25,18.75,NER,1509.0,Agadez,150.0,Niger,104568.0,Arlit,both,identical +156616,7.75,18.75,NER,1509.0,Agadez,150.0,Niger,104568.0,Arlit,7.75,18.75,NER,1509.0,Agadez,150.0,Niger,104568.0,Arlit,both,identical +156617,8.25,18.75,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,8.25,18.75,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,both,identical +156618,8.75,18.75,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,8.75,18.75,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,both,identical +156619,9.25,18.75,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,9.25,18.75,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,both,identical +156620,9.75,18.75,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,9.75,18.75,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,both,identical +156621,10.25,18.75,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,10.25,18.75,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,both,identical +156622,10.75,18.75,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,10.75,18.75,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,both,identical +156623,11.25,18.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,11.25,18.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +156624,11.75,18.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,11.75,18.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +156625,12.25,18.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,12.25,18.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +156626,12.75,18.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,12.75,18.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +156627,13.25,18.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,13.25,18.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +156628,13.75,18.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,13.75,18.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +156629,14.25,18.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,14.25,18.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +156630,14.75,18.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,14.75,18.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +156631,15.25,18.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,15.25,18.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +156632,15.75,18.75,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,15.75,18.75,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,both,identical +156633,16.25,18.75,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,16.25,18.75,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,both,identical +156634,16.75,18.75,TCD,1161.0,Borkou,114.0,Chad,102089.0,Borkou Yala,16.75,18.75,TCD,1161.0,Borkou,114.0,Chad,102089.0,Borkou Yala,both,identical +156635,17.25,18.75,TCD,1161.0,Borkou,114.0,Chad,102089.0,Borkou Yala,17.25,18.75,TCD,1161.0,Borkou,114.0,Chad,102089.0,Borkou Yala,both,identical +156636,17.75,18.75,TCD,1161.0,Borkou,114.0,Chad,102089.0,Borkou Yala,17.75,18.75,TCD,1161.0,Borkou,114.0,Chad,102089.0,Borkou Yala,both,identical +156637,18.25,18.75,TCD,1161.0,Borkou,114.0,Chad,102089.0,Borkou Yala,18.25,18.75,TCD,1161.0,Borkou,114.0,Chad,102089.0,Borkou Yala,both,identical +156638,18.75,18.75,TCD,1161.0,Borkou,114.0,Chad,102089.0,Borkou Yala,18.75,18.75,TCD,1161.0,Borkou,114.0,Chad,102089.0,Borkou Yala,both,identical +156639,19.25,18.75,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,19.25,18.75,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,both,identical +156640,19.75,18.75,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,19.75,18.75,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,both,identical +156641,20.25,18.75,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,20.25,18.75,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,both,identical +156642,20.75,18.75,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,20.75,18.75,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,both,identical +156643,21.25,18.75,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,21.25,18.75,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,both,identical +156644,21.75,18.75,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,21.75,18.75,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,both,identical +156645,22.25,18.75,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,22.25,18.75,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,both,identical +156646,22.75,18.75,TCD,1163.0,Ennedi Est,114.0,Chad,102093.0,Am-Djarass,22.75,18.75,TCD,1163.0,Ennedi Est,114.0,Chad,102093.0,Am-Djarass,both,identical +156647,23.25,18.75,TCD,1163.0,Ennedi Est,114.0,Chad,102093.0,Am-Djarass,23.25,18.75,TCD,1163.0,Ennedi Est,114.0,Chad,102093.0,Am-Djarass,both,identical +156648,23.75,18.75,TCD,1163.0,Ennedi Est,114.0,Chad,102093.0,Am-Djarass,23.75,18.75,TCD,1163.0,Ennedi Est,114.0,Chad,102093.0,Am-Djarass,both,identical +156649,24.25,18.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,24.25,18.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +156650,24.75,18.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,24.75,18.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +156651,25.25,18.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,25.25,18.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +156652,25.75,18.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,25.75,18.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +156653,26.25,18.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,26.25,18.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +156654,26.75,18.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,26.75,18.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +156655,27.25,18.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,27.25,18.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +156656,27.75,18.75,SDN,1636.0,Northern,161.0,Sudan,105831.0,Dongola,27.75,18.75,SDN,1636.0,Northern,161.0,Sudan,105831.0,Dongola,both,identical +156657,28.25,18.75,SDN,1636.0,Northern,161.0,Sudan,105831.0,Dongola,28.25,18.75,SDN,1636.0,Northern,161.0,Sudan,105831.0,Dongola,both,identical +156658,28.75,18.75,SDN,1636.0,Northern,161.0,Sudan,105831.0,Dongola,28.75,18.75,SDN,1636.0,Northern,161.0,Sudan,105831.0,Dongola,both,identical +156659,29.25,18.75,SDN,1636.0,Northern,161.0,Sudan,105831.0,Dongola,29.25,18.75,SDN,1636.0,Northern,161.0,Sudan,105831.0,Dongola,both,identical +156660,29.75,18.75,SDN,1636.0,Northern,161.0,Sudan,105831.0,Dongola,29.75,18.75,SDN,1636.0,Northern,161.0,Sudan,105831.0,Dongola,both,identical +156661,30.25,18.75,SDN,1636.0,Northern,161.0,Sudan,105829.0,Al Golid,30.25,18.75,SDN,1636.0,Northern,161.0,Sudan,105829.0,Al Golid,both,identical +156662,30.75,18.75,SDN,1636.0,Northern,161.0,Sudan,105831.0,Dongola,30.75,18.75,SDN,1636.0,Northern,161.0,Sudan,105831.0,Dongola,both,identical +156663,31.25,18.75,SDN,1636.0,Northern,161.0,Sudan,105829.0,Al Golid,31.25,18.75,SDN,1636.0,Northern,161.0,Sudan,105829.0,Al Golid,both,identical +156664,31.75,18.75,SDN,1636.0,Northern,161.0,Sudan,105833.0,Merwoe,31.75,18.75,SDN,1636.0,Northern,161.0,Sudan,105833.0,Merwoe,both,identical +156665,32.25,18.75,SDN,1636.0,Northern,161.0,Sudan,105833.0,Merwoe,32.25,18.75,SDN,1636.0,Northern,161.0,Sudan,105833.0,Merwoe,both,identical +156666,32.75,18.75,SDN,1638.0,River Nile,161.0,Sudan,105846.0,Al Buhaira,32.75,18.75,SDN,1638.0,River Nile,161.0,Sudan,105846.0,Al Buhaira,both,identical +156667,33.25,18.75,SDN,1638.0,River Nile,161.0,Sudan,105844.0,Abu Hamad,33.25,18.75,SDN,1638.0,River Nile,161.0,Sudan,105844.0,Abu Hamad,both,identical +156668,33.75,18.75,SDN,1638.0,River Nile,161.0,Sudan,105844.0,Abu Hamad,33.75,18.75,SDN,1638.0,River Nile,161.0,Sudan,105844.0,Abu Hamad,both,identical +156669,34.25,18.75,SDN,1637.0,Red Sea,161.0,Sudan,105835.0,Al Ganab,34.25,18.75,SDN,1637.0,Red Sea,161.0,Sudan,105835.0,Al Ganab,both,identical +156670,34.75,18.75,SDN,1637.0,Red Sea,161.0,Sudan,105835.0,Al Ganab,34.75,18.75,SDN,1637.0,Red Sea,161.0,Sudan,105835.0,Al Ganab,both,identical +156671,35.25,18.75,SDN,1637.0,Red Sea,161.0,Sudan,105835.0,Al Ganab,35.25,18.75,SDN,1637.0,Red Sea,161.0,Sudan,105835.0,Al Ganab,both,identical +156672,35.75,18.75,SDN,1637.0,Red Sea,161.0,Sudan,105838.0,Haya,35.75,18.75,SDN,1637.0,Red Sea,161.0,Sudan,105838.0,Haya,both,identical +156673,36.25,18.75,SDN,1637.0,Red Sea,161.0,Sudan,105838.0,Haya,36.25,18.75,SDN,1637.0,Red Sea,161.0,Sudan,105838.0,Haya,both,identical +156674,36.75,18.75,SDN,1637.0,Red Sea,161.0,Sudan,105842.0,Sinkat,36.75,18.75,SDN,1637.0,Red Sea,161.0,Sudan,105842.0,Sinkat,both,identical +156675,37.25,18.75,SDN,1637.0,Red Sea,161.0,Sudan,105841.0,Sawakin,37.25,18.75,SDN,1637.0,Red Sea,161.0,Sudan,105841.0,Sawakin,both,identical +156676,37.75,18.75,SDN,1637.0,Red Sea,161.0,Sudan,105843.0,Tawkar,37.75,18.75,SDN,1637.0,Red Sea,161.0,Sudan,105843.0,Tawkar,both,identical +156683,41.25,18.75,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130557.0,Al Qunfudhah,41.25,18.75,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130557.0,Al Qunfudhah,both,identical +156684,41.75,18.75,SAU,2958.0,Aseer,266.0,Saudi Arabia,130507.0,Muhayil,41.75,18.75,SAU,2958.0,Aseer,266.0,Saudi Arabia,130507.0,Muhayil,both,identical +156685,42.25,18.75,SAU,2958.0,Aseer,266.0,Saudi Arabia,130497.0,Abha,42.25,18.75,SAU,2958.0,Aseer,266.0,Saudi Arabia,130497.0,Abha,both,identical +156686,42.75,18.75,SAU,2958.0,Aseer,266.0,Saudi Arabia,130506.0,Khamis Mushayt,42.75,18.75,SAU,2958.0,Aseer,266.0,Saudi Arabia,130506.0,Khamis Mushayt,both,identical +156687,43.25,18.75,SAU,2958.0,Aseer,266.0,Saudi Arabia,130511.0,Tarib,43.25,18.75,SAU,2958.0,Aseer,266.0,Saudi Arabia,130511.0,Tarib,both,identical +156688,43.75,18.75,SAU,2958.0,Aseer,266.0,Saudi Arabia,130512.0,Tathlith,43.75,18.75,SAU,2958.0,Aseer,266.0,Saudi Arabia,130512.0,Tathlith,both,identical +156689,44.25,18.75,SAU,2963.0,Najran,266.0,Saudi Arabia,130573.0,Yadamah,44.25,18.75,SAU,2963.0,Najran,266.0,Saudi Arabia,130573.0,Yadamah,both,identical +156690,44.75,18.75,SAU,2963.0,Najran,266.0,Saudi Arabia,130573.0,Yadamah,44.75,18.75,SAU,2963.0,Najran,266.0,Saudi Arabia,130573.0,Yadamah,both,identical +156691,45.25,18.75,SAU,2963.0,Najran,266.0,Saudi Arabia,130573.0,Yadamah,45.25,18.75,SAU,2963.0,Najran,266.0,Saudi Arabia,130573.0,Yadamah,both,identical +156692,45.75,18.75,SAU,2963.0,Najran,266.0,Saudi Arabia,130573.0,Yadamah,45.75,18.75,SAU,2963.0,Najran,266.0,Saudi Arabia,130573.0,Yadamah,both,identical +156693,46.25,18.75,SAU,2963.0,Najran,266.0,Saudi Arabia,130571.0,Sharurah,46.25,18.75,SAU,2963.0,Najran,266.0,Saudi Arabia,130571.0,Sharurah,both,identical +156694,46.75,18.75,SAU,2963.0,Najran,266.0,Saudi Arabia,130571.0,Sharurah,46.75,18.75,SAU,2963.0,Najran,266.0,Saudi Arabia,130571.0,Sharurah,both,identical +156695,47.25,18.75,SAU,2963.0,Najran,266.0,Saudi Arabia,130571.0,Sharurah,47.25,18.75,SAU,2963.0,Najran,266.0,Saudi Arabia,130571.0,Sharurah,both,identical +156696,47.75,18.75,SAU,2963.0,Najran,266.0,Saudi Arabia,130571.0,Sharurah,47.75,18.75,SAU,2963.0,Najran,266.0,Saudi Arabia,130571.0,Sharurah,both,identical +156697,48.25,18.75,SAU,2963.0,Najran,266.0,Saudi Arabia,130571.0,Sharurah,48.25,18.75,SAU,2963.0,Najran,266.0,Saudi Arabia,130571.0,Sharurah,both,identical +156698,48.75,18.75,SAU,2963.0,Najran,266.0,Saudi Arabia,130571.0,Sharurah,48.75,18.75,SAU,2963.0,Najran,266.0,Saudi Arabia,130571.0,Sharurah,both,identical +156699,49.25,18.75,SAU,2963.0,Najran,266.0,Saudi Arabia,130571.0,Sharurah,49.25,18.75,SAU,2963.0,Najran,266.0,Saudi Arabia,130571.0,Sharurah,both,identical +156700,49.75,18.75,SAU,2963.0,Najran,266.0,Saudi Arabia,130571.0,Sharurah,49.75,18.75,SAU,2963.0,Najran,266.0,Saudi Arabia,130571.0,Sharurah,both,identical +156701,50.25,18.75,YEM,3278.0,Hadramawt,282.0,Yemen,133794.0,Thamud,50.25,18.75,SAU,2963.0,Najran,266.0,Saudi Arabia,130571.0,Sharurah,both,country_reassignment +156702,50.75,18.75,YEM,3278.0,Hadramawt,282.0,Yemen,133789.0,Rumah,50.75,18.75,YEM,3278.0,Hadramawt,282.0,Yemen,133789.0,Rumah,both,identical +156703,51.25,18.75,YEM,3278.0,Hadramawt,282.0,Yemen,133789.0,Rumah,51.25,18.75,YEM,3278.0,Hadramawt,282.0,Yemen,133789.0,Rumah,both,identical +156704,51.75,18.75,YEM,3274.0,Al Maharah,282.0,Yemen,133728.0,Shahan,51.75,18.75,YEM,3274.0,Al Maharah,282.0,Yemen,133728.0,Shahan,both,identical +156705,52.25,18.75,OMN,2902.0,Dhofar,259.0,Oman,130086.0,Thumrait,52.25,18.75,OMN,2902.0,Dhofar,259.0,Oman,130086.0,Thumrait,both,identical +156706,52.75,18.75,OMN,2902.0,Dhofar,259.0,Oman,130086.0,Thumrait,52.75,18.75,OMN,2902.0,Dhofar,259.0,Oman,130086.0,Thumrait,both,identical +156707,53.25,18.75,OMN,2902.0,Dhofar,259.0,Oman,130086.0,Thumrait,53.25,18.75,OMN,2902.0,Dhofar,259.0,Oman,130086.0,Thumrait,both,identical +156708,53.75,18.75,OMN,2902.0,Dhofar,259.0,Oman,130086.0,Thumrait,53.75,18.75,OMN,2902.0,Dhofar,259.0,Oman,130086.0,Thumrait,both,identical +156709,54.25,18.75,OMN,2902.0,Dhofar,259.0,Oman,130086.0,Thumrait,54.25,18.75,OMN,2902.0,Dhofar,259.0,Oman,130086.0,Thumrait,both,identical +156710,54.75,18.75,OMN,2902.0,Dhofar,259.0,Oman,130082.0,Muqshin,54.75,18.75,OMN,2902.0,Dhofar,259.0,Oman,130082.0,Muqshin,both,identical +156711,55.25,18.75,OMN,2902.0,Dhofar,259.0,Oman,130082.0,Muqshin,55.25,18.75,OMN,2902.0,Dhofar,259.0,Oman,130082.0,Muqshin,both,identical +156712,55.75,18.75,OMN,2902.0,Dhofar,259.0,Oman,130082.0,Muqshin,55.75,18.75,OMN,2902.0,Dhofar,259.0,Oman,130082.0,Muqshin,both,identical +156713,56.25,18.75,OMN,2902.0,Dhofar,259.0,Oman,130082.0,Muqshin,56.25,18.75,OMN,2902.0,Dhofar,259.0,Oman,130082.0,Muqshin,both,identical +156714,56.75,18.75,OMN,2902.0,Dhofar,259.0,Oman,130082.0,Muqshin,56.75,18.75,OMN,2902.0,Dhofar,259.0,Oman,130082.0,Muqshin,both,identical +156715,57.25,18.75,OMN,2902.0,Dhofar,259.0,Oman,130082.0,Muqshin,57.25,18.75,OMN,2902.0,Dhofar,259.0,Oman,130082.0,Muqshin,both,identical +156716,57.75,18.75,OMN,2899.0,Al Wusta,259.0,Oman,130071.0,Al Wusta,57.75,18.75,OMN,2899.0,Al Wusta,259.0,Oman,130071.0,Al Wusta,both,identical +157287,-16.75,19.25,MRT,1449.0,Dakhlet-Nouadhibou,144.0,Mauritania,104175.0,Chami,-16.75,19.25,MRT,1449.0,Dakhlet-Nouadhibou,144.0,Mauritania,104175.0,Chami,both,identical +157288,-16.25,19.25,MRT,1449.0,Dakhlet-Nouadhibou,144.0,Mauritania,104175.0,Chami,-16.25,19.25,MRT,1449.0,Dakhlet-Nouadhibou,144.0,Mauritania,104175.0,Chami,both,identical +157289,-15.75,19.25,MRT,1454.0,Inchiri,144.0,Mauritania,104200.0,Benechab,-15.75,19.25,MRT,1454.0,Inchiri,144.0,Mauritania,104200.0,Benechab,both,identical +157290,-15.25,19.25,MRT,1454.0,Inchiri,144.0,Mauritania,104200.0,Benechab,-15.25,19.25,MRT,1454.0,Inchiri,144.0,Mauritania,104200.0,Benechab,both,identical +157291,-14.75,19.25,MRT,1454.0,Inchiri,144.0,Mauritania,104199.0,Akjoujt,-14.75,19.25,MRT,1454.0,Inchiri,144.0,Mauritania,104199.0,Akjoujt,both,identical +157292,-14.25,19.25,MRT,1454.0,Inchiri,144.0,Mauritania,104199.0,Akjoujt,-14.25,19.25,MRT,1454.0,Inchiri,144.0,Mauritania,104199.0,Akjoujt,both,identical +157293,-13.75,19.25,MRT,1446.0,Adrar,144.0,Mauritania,104160.0,Aoujeft,-13.75,19.25,MRT,1446.0,Adrar,144.0,Mauritania,104160.0,Aoujeft,both,identical +157294,-13.25,19.25,MRT,1446.0,Adrar,144.0,Mauritania,104160.0,Aoujeft,-13.25,19.25,MRT,1446.0,Adrar,144.0,Mauritania,104160.0,Aoujeft,both,identical +157295,-12.75,19.25,MRT,1446.0,Adrar,144.0,Mauritania,104160.0,Aoujeft,-12.75,19.25,MRT,1446.0,Adrar,144.0,Mauritania,104160.0,Aoujeft,both,identical +157296,-12.25,19.25,MRT,1446.0,Adrar,144.0,Mauritania,104160.0,Aoujeft,-12.25,19.25,MRT,1446.0,Adrar,144.0,Mauritania,104160.0,Aoujeft,both,identical +157297,-11.75,19.25,MRT,1446.0,Adrar,144.0,Mauritania,104212.0,Tidjikja,-11.75,19.25,MRT,1458.0,Tagant,144.0,Mauritania,104212.0,Tidjikja,both,admin_reallocation +157298,-11.25,19.25,MRT,1458.0,Tagant,144.0,Mauritania,104212.0,Tidjikja,-11.25,19.25,MRT,1458.0,Tagant,144.0,Mauritania,104212.0,Tidjikja,both,identical +157299,-10.75,19.25,MRT,1458.0,Tagant,144.0,Mauritania,104211.0,Tichitt,-10.75,19.25,MRT,1458.0,Tagant,144.0,Mauritania,104211.0,Tichitt,both,identical +157300,-10.25,19.25,MRT,1458.0,Tagant,144.0,Mauritania,104211.0,Tichitt,-10.25,19.25,MRT,1458.0,Tagant,144.0,Mauritania,104211.0,Tichitt,both,identical +157301,-9.75,19.25,MRT,1458.0,Tagant,144.0,Mauritania,104211.0,Tichitt,-9.75,19.25,MRT,1458.0,Tagant,144.0,Mauritania,104211.0,Tichitt,both,identical +157302,-9.25,19.25,MRT,1458.0,Tagant,144.0,Mauritania,104211.0,Tichitt,-9.25,19.25,MRT,1458.0,Tagant,144.0,Mauritania,104211.0,Tichitt,both,identical +157303,-8.75,19.25,MRT,1458.0,Tagant,144.0,Mauritania,104211.0,Tichitt,-8.75,19.25,MRT,1458.0,Tagant,144.0,Mauritania,104211.0,Tichitt,both,identical +157304,-8.25,19.25,MRT,1458.0,Tagant,144.0,Mauritania,104211.0,Tichitt,-8.25,19.25,MRT,1458.0,Tagant,144.0,Mauritania,104211.0,Tichitt,both,identical +157305,-7.75,19.25,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,-7.75,19.25,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,both,identical +157306,-7.25,19.25,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,-7.25,19.25,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,both,identical +157307,-6.75,19.25,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,-6.75,19.25,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,both,identical +157308,-6.25,19.25,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,-6.25,19.25,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,both,identical +157309,-5.75,19.25,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,-5.75,19.25,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,both,identical +157310,-5.25,19.25,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,-5.25,19.25,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,both,identical +157311,-4.75,19.25,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,-4.75,19.25,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,both,identical +157312,-4.25,19.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-4.25,19.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +157313,-3.75,19.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-3.75,19.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +157314,-3.25,19.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-3.25,19.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +157315,-2.75,19.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-2.75,19.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +157316,-2.25,19.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-2.25,19.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +157317,-1.75,19.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-1.75,19.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +157318,-1.25,19.25,MLI,1440.0,Kidal,143.0,Mali,104124.0,Tessalit,-1.25,19.25,MLI,1440.0,Kidal,143.0,Mali,104124.0,Tessalit,both,identical +157319,-0.75,19.25,MLI,1440.0,Kidal,143.0,Mali,104124.0,Tessalit,-0.75,19.25,MLI,1440.0,Kidal,143.0,Mali,104124.0,Tessalit,both,identical +157320,-0.25,19.25,MLI,1440.0,Kidal,143.0,Mali,104124.0,Tessalit,-0.25,19.25,MLI,1440.0,Kidal,143.0,Mali,104124.0,Tessalit,both,identical +157321,0.25,19.25,MLI,1440.0,Kidal,143.0,Mali,104124.0,Tessalit,0.25,19.25,MLI,1440.0,Kidal,143.0,Mali,104124.0,Tessalit,both,identical +157322,0.75,19.25,MLI,1440.0,Kidal,143.0,Mali,104124.0,Tessalit,0.75,19.25,MLI,1440.0,Kidal,143.0,Mali,104124.0,Tessalit,both,identical +157323,1.25,19.25,MLI,1440.0,Kidal,143.0,Mali,104124.0,Tessalit,1.25,19.25,MLI,1440.0,Kidal,143.0,Mali,104124.0,Tessalit,both,identical +157324,1.75,19.25,MLI,1440.0,Kidal,143.0,Mali,104122.0,Abéïbara,1.75,19.25,MLI,1440.0,Kidal,143.0,Mali,104122.0,Abéïbara,both,identical +157325,2.25,19.25,MLI,1440.0,Kidal,143.0,Mali,104122.0,Abéïbara,2.25,19.25,MLI,1440.0,Kidal,143.0,Mali,104122.0,Abéïbara,both,identical +157326,2.75,19.25,MLI,1440.0,Kidal,143.0,Mali,104122.0,Abéïbara,2.75,19.25,MLI,1440.0,Kidal,143.0,Mali,104122.0,Abéïbara,both,identical +157327,3.25,19.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101299.0,Tin Zaouatine,3.25,19.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101299.0,Tin Zaouatine,both,identical +157328,3.75,19.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101299.0,Tin Zaouatine,3.75,19.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101299.0,Tin Zaouatine,both,identical +157329,4.25,19.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101299.0,Tin Zaouatine,4.25,19.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101299.0,Tin Zaouatine,both,identical +157330,4.75,19.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101295.0,In Guezzam,4.75,19.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101295.0,In Guezzam,both,identical +157331,5.25,19.25,NER,1509.0,Agadez,150.0,Niger,104571.0,Ingall,5.25,19.25,NER,1509.0,Agadez,150.0,Niger,104571.0,Ingall,both,identical +157332,5.75,19.25,NER,1509.0,Agadez,150.0,Niger,104571.0,Ingall,5.75,19.25,NER,1509.0,Agadez,150.0,Niger,104571.0,Ingall,both,identical +157333,6.25,19.25,NER,1509.0,Agadez,150.0,Niger,104568.0,Arlit,6.25,19.25,NER,1509.0,Agadez,150.0,Niger,104568.0,Arlit,both,identical +157334,6.75,19.25,NER,1509.0,Agadez,150.0,Niger,104568.0,Arlit,6.75,19.25,NER,1509.0,Agadez,150.0,Niger,104568.0,Arlit,both,identical +157335,7.25,19.25,NER,1509.0,Agadez,150.0,Niger,104568.0,Arlit,7.25,19.25,NER,1509.0,Agadez,150.0,Niger,104568.0,Arlit,both,identical +157336,7.75,19.25,NER,1509.0,Agadez,150.0,Niger,104568.0,Arlit,7.75,19.25,NER,1509.0,Agadez,150.0,Niger,104568.0,Arlit,both,identical +157337,8.25,19.25,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,8.25,19.25,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,both,identical +157338,8.75,19.25,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,8.75,19.25,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,both,identical +157339,9.25,19.25,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,9.25,19.25,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,both,identical +157340,9.75,19.25,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,9.75,19.25,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,both,identical +157341,10.25,19.25,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,10.25,19.25,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,both,identical +157342,10.75,19.25,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,10.75,19.25,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,both,identical +157343,11.25,19.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,11.25,19.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +157344,11.75,19.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,11.75,19.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +157345,12.25,19.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,12.25,19.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +157346,12.75,19.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,12.75,19.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +157347,13.25,19.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,13.25,19.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +157348,13.75,19.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,13.75,19.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +157349,14.25,19.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,14.25,19.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +157350,14.75,19.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,14.75,19.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +157351,15.25,19.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,15.25,19.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +157352,15.75,19.25,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,15.75,19.25,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,both,identical +157353,16.25,19.25,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,16.25,19.25,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,both,identical +157354,16.75,19.25,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,16.75,19.25,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,both,identical +157355,17.25,19.25,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,17.25,19.25,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,both,identical +157356,17.75,19.25,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,17.75,19.25,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,both,identical +157357,18.25,19.25,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,18.25,19.25,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,both,identical +157358,18.75,19.25,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,18.75,19.25,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,both,identical +157359,19.25,19.25,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,19.25,19.25,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,both,identical +157360,19.75,19.25,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,19.75,19.25,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,both,identical +157361,20.25,19.25,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,20.25,19.25,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,both,identical +157362,20.75,19.25,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,20.75,19.25,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,both,identical +157363,21.25,19.25,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,21.25,19.25,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,both,identical +157364,21.75,19.25,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,21.75,19.25,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,both,identical +157365,22.25,19.25,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,22.25,19.25,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,both,identical +157366,22.75,19.25,TCD,1163.0,Ennedi Est,114.0,Chad,102093.0,Am-Djarass,22.75,19.25,TCD,1163.0,Ennedi Est,114.0,Chad,102093.0,Am-Djarass,both,identical +157367,23.25,19.25,TCD,1163.0,Ennedi Est,114.0,Chad,102093.0,Am-Djarass,23.25,19.25,TCD,1163.0,Ennedi Est,114.0,Chad,102093.0,Am-Djarass,both,identical +157368,23.75,19.25,TCD,1163.0,Ennedi Est,114.0,Chad,102093.0,Am-Djarass,23.75,19.25,TCD,1163.0,Ennedi Est,114.0,Chad,102093.0,Am-Djarass,both,identical +157369,24.25,19.25,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,24.25,19.25,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +157370,24.75,19.25,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,24.75,19.25,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +157371,25.25,19.25,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,25.25,19.25,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +157372,25.75,19.25,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,25.75,19.25,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +157373,26.25,19.25,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,26.25,19.25,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +157374,26.75,19.25,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,26.75,19.25,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +157375,27.25,19.25,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,27.25,19.25,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +157376,27.75,19.25,SDN,1636.0,Northern,161.0,Sudan,105831.0,Dongola,27.75,19.25,SDN,1636.0,Northern,161.0,Sudan,105831.0,Dongola,both,identical +157377,28.25,19.25,SDN,1636.0,Northern,161.0,Sudan,105831.0,Dongola,28.25,19.25,SDN,1636.0,Northern,161.0,Sudan,105831.0,Dongola,both,identical +157378,28.75,19.25,SDN,1636.0,Northern,161.0,Sudan,105831.0,Dongola,28.75,19.25,SDN,1636.0,Northern,161.0,Sudan,105831.0,Dongola,both,identical +157379,29.25,19.25,SDN,1636.0,Northern,161.0,Sudan,105831.0,Dongola,29.25,19.25,SDN,1636.0,Northern,161.0,Sudan,105831.0,Dongola,both,identical +157380,29.75,19.25,SDN,1636.0,Northern,161.0,Sudan,105831.0,Dongola,29.75,19.25,SDN,1636.0,Northern,161.0,Sudan,105831.0,Dongola,both,identical +157381,30.25,19.25,SDN,1636.0,Northern,161.0,Sudan,105831.0,Dongola,30.25,19.25,SDN,1636.0,Northern,161.0,Sudan,105831.0,Dongola,both,identical +157382,30.75,19.25,SDN,1636.0,Northern,161.0,Sudan,105831.0,Dongola,30.75,19.25,SDN,1636.0,Northern,161.0,Sudan,105831.0,Dongola,both,identical +157383,31.25,19.25,SDN,1636.0,Northern,161.0,Sudan,105831.0,Dongola,31.25,19.25,SDN,1636.0,Northern,161.0,Sudan,105831.0,Dongola,both,identical +157384,31.75,19.25,SDN,1636.0,Northern,161.0,Sudan,105831.0,Dongola,31.75,19.25,SDN,1636.0,Northern,161.0,Sudan,105831.0,Dongola,both,identical +157385,32.25,19.25,SDN,1636.0,Northern,161.0,Sudan,105833.0,Merwoe,32.25,19.25,SDN,1636.0,Northern,161.0,Sudan,105833.0,Merwoe,both,identical +157386,32.75,19.25,SDN,1638.0,River Nile,161.0,Sudan,105846.0,Al Buhaira,32.75,19.25,SDN,1638.0,River Nile,161.0,Sudan,105846.0,Al Buhaira,both,identical +157387,33.25,19.25,SDN,1638.0,River Nile,161.0,Sudan,105844.0,Abu Hamad,33.25,19.25,SDN,1638.0,River Nile,161.0,Sudan,105844.0,Abu Hamad,both,identical +157388,33.75,19.25,SDN,1638.0,River Nile,161.0,Sudan,105844.0,Abu Hamad,33.75,19.25,SDN,1638.0,River Nile,161.0,Sudan,105844.0,Abu Hamad,both,identical +157389,34.25,19.25,SDN,1637.0,Red Sea,161.0,Sudan,105835.0,Al Ganab,34.25,19.25,SDN,1637.0,Red Sea,161.0,Sudan,105835.0,Al Ganab,both,identical +157390,34.75,19.25,SDN,1637.0,Red Sea,161.0,Sudan,105835.0,Al Ganab,34.75,19.25,SDN,1637.0,Red Sea,161.0,Sudan,105835.0,Al Ganab,both,identical +157391,35.25,19.25,SDN,1637.0,Red Sea,161.0,Sudan,105835.0,Al Ganab,35.25,19.25,SDN,1637.0,Red Sea,161.0,Sudan,105835.0,Al Ganab,both,identical +157392,35.75,19.25,SDN,1637.0,Red Sea,161.0,Sudan,105835.0,Al Ganab,35.75,19.25,SDN,1637.0,Red Sea,161.0,Sudan,105835.0,Al Ganab,both,identical +157393,36.25,19.25,SDN,1637.0,Red Sea,161.0,Sudan,105835.0,Al Ganab,36.25,19.25,SDN,1637.0,Red Sea,161.0,Sudan,105835.0,Al Ganab,both,identical +157394,36.75,19.25,SDN,1637.0,Red Sea,161.0,Sudan,105835.0,Al Ganab,36.75,19.25,SDN,1637.0,Red Sea,161.0,Sudan,105835.0,Al Ganab,both,identical +157395,37.25,19.25,SDN,1637.0,Red Sea,161.0,Sudan,105841.0,Sawakin,37.25,19.25,SDN,1637.0,Red Sea,161.0,Sudan,105841.0,Sawakin,both,identical +157402,40.75,19.25,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130557.0,Al Qunfudhah,40.75,19.25,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130557.0,Al Qunfudhah,both,identical +157403,41.25,19.25,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130557.0,Al Qunfudhah,41.25,19.25,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130557.0,Al Qunfudhah,both,identical +157404,41.75,19.25,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130552.0,Al Ardiyat,41.75,19.25,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130552.0,Al Ardiyat,both,identical +157405,42.25,19.25,SAU,2958.0,Aseer,266.0,Saudi Arabia,130502.0,An Namas,42.25,19.25,SAU,2958.0,Aseer,266.0,Saudi Arabia,130502.0,An Namas,both,identical +157406,42.75,19.25,SAU,2958.0,Aseer,266.0,Saudi Arabia,130505.0,Bishah,42.75,19.25,SAU,2958.0,Aseer,266.0,Saudi Arabia,130505.0,Bishah,both,identical +157407,43.25,19.25,SAU,2958.0,Aseer,266.0,Saudi Arabia,130511.0,Tarib,43.25,19.25,SAU,2958.0,Aseer,266.0,Saudi Arabia,130511.0,Tarib,both,identical +157408,43.75,19.25,SAU,2958.0,Aseer,266.0,Saudi Arabia,130512.0,Tathlith,43.75,19.25,SAU,2958.0,Aseer,266.0,Saudi Arabia,130512.0,Tathlith,both,identical +157409,44.25,19.25,SAU,2958.0,Aseer,266.0,Saudi Arabia,130512.0,Tathlith,44.25,19.25,SAU,2958.0,Aseer,266.0,Saudi Arabia,130512.0,Tathlith,both,identical +157410,44.75,19.25,SAU,2963.0,Najran,266.0,Saudi Arabia,130573.0,Yadamah,44.75,19.25,SAU,2963.0,Najran,266.0,Saudi Arabia,130573.0,Yadamah,both,identical +157411,45.25,19.25,SAU,2963.0,Najran,266.0,Saudi Arabia,130573.0,Yadamah,45.25,19.25,SAU,2963.0,Najran,266.0,Saudi Arabia,130573.0,Yadamah,both,identical +157412,45.75,19.25,SAU,2963.0,Najran,266.0,Saudi Arabia,130573.0,Yadamah,45.75,19.25,SAU,2963.0,Najran,266.0,Saudi Arabia,130573.0,Yadamah,both,identical +157413,46.25,19.25,SAU,2963.0,Najran,266.0,Saudi Arabia,130573.0,Yadamah,46.25,19.25,SAU,2963.0,Najran,266.0,Saudi Arabia,130573.0,Yadamah,both,identical +157414,46.75,19.25,SAU,2963.0,Najran,266.0,Saudi Arabia,130571.0,Sharurah,46.75,19.25,SAU,2963.0,Najran,266.0,Saudi Arabia,130571.0,Sharurah,both,identical +157415,47.25,19.25,SAU,2963.0,Najran,266.0,Saudi Arabia,130571.0,Sharurah,47.25,19.25,SAU,2963.0,Najran,266.0,Saudi Arabia,130571.0,Sharurah,both,identical +157416,47.75,19.25,SAU,2963.0,Najran,266.0,Saudi Arabia,130571.0,Sharurah,47.75,19.25,SAU,2963.0,Najran,266.0,Saudi Arabia,130571.0,Sharurah,both,identical +157417,48.25,19.25,SAU,2963.0,Najran,266.0,Saudi Arabia,130571.0,Sharurah,48.25,19.25,SAU,2963.0,Najran,266.0,Saudi Arabia,130571.0,Sharurah,both,identical +157418,48.75,19.25,SAU,2963.0,Najran,266.0,Saudi Arabia,130571.0,Sharurah,48.75,19.25,SAU,2963.0,Najran,266.0,Saudi Arabia,130571.0,Sharurah,both,identical +157419,49.25,19.25,SAU,2963.0,Najran,266.0,Saudi Arabia,130571.0,Sharurah,49.25,19.25,SAU,2963.0,Najran,266.0,Saudi Arabia,130571.0,Sharurah,both,identical +157420,49.75,19.25,SAU,2963.0,Najran,266.0,Saudi Arabia,130571.0,Sharurah,49.75,19.25,SAU,2963.0,Najran,266.0,Saudi Arabia,130571.0,Sharurah,both,identical +157421,50.25,19.25,SAU,2963.0,Najran,266.0,Saudi Arabia,130571.0,Sharurah,50.25,19.25,SAU,2963.0,Najran,266.0,Saudi Arabia,130571.0,Sharurah,both,identical +157422,50.75,19.25,SAU,2963.0,Najran,266.0,Saudi Arabia,130571.0,Sharurah,50.75,19.25,SAU,2963.0,Najran,266.0,Saudi Arabia,130571.0,Sharurah,both,identical +157423,51.25,19.25,SAU,2963.0,Najran,266.0,Saudi Arabia,130571.0,Sharurah,51.25,19.25,SAU,2963.0,Najran,266.0,Saudi Arabia,130571.0,Sharurah,both,identical +157424,51.75,19.25,SAU,2963.0,Najran,266.0,Saudi Arabia,130571.0,Sharurah,51.75,19.25,SAU,2963.0,Najran,266.0,Saudi Arabia,130571.0,Sharurah,both,identical +157425,52.25,19.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,52.25,19.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,both,identical +157426,52.75,19.25,OMN,2902.0,Dhofar,259.0,Oman,130086.0,Thumrait,52.75,19.25,OMN,2902.0,Dhofar,259.0,Oman,130086.0,Thumrait,both,identical +157427,53.25,19.25,OMN,2902.0,Dhofar,259.0,Oman,130086.0,Thumrait,53.25,19.25,OMN,2902.0,Dhofar,259.0,Oman,130086.0,Thumrait,both,identical +157428,53.75,19.25,OMN,2902.0,Dhofar,259.0,Oman,130082.0,Muqshin,53.75,19.25,OMN,2902.0,Dhofar,259.0,Oman,130082.0,Muqshin,both,identical +157429,54.25,19.25,OMN,2902.0,Dhofar,259.0,Oman,130082.0,Muqshin,54.25,19.25,OMN,2902.0,Dhofar,259.0,Oman,130082.0,Muqshin,both,identical +157430,54.75,19.25,OMN,2902.0,Dhofar,259.0,Oman,130082.0,Muqshin,54.75,19.25,OMN,2902.0,Dhofar,259.0,Oman,130082.0,Muqshin,both,identical +157431,55.25,19.25,OMN,2902.0,Dhofar,259.0,Oman,130082.0,Muqshin,55.25,19.25,OMN,2902.0,Dhofar,259.0,Oman,130082.0,Muqshin,both,identical +157432,55.75,19.25,OMN,2902.0,Dhofar,259.0,Oman,130082.0,Muqshin,55.75,19.25,OMN,2902.0,Dhofar,259.0,Oman,130082.0,Muqshin,both,identical +157433,56.25,19.25,OMN,2902.0,Dhofar,259.0,Oman,130082.0,Muqshin,56.25,19.25,OMN,2902.0,Dhofar,259.0,Oman,130082.0,Muqshin,both,identical +157434,56.75,19.25,OMN,2899.0,Al Wusta,259.0,Oman,130071.0,Al Wusta,56.75,19.25,OMN,2899.0,Al Wusta,259.0,Oman,130071.0,Al Wusta,both,identical +157435,57.25,19.25,OMN,2899.0,Al Wusta,259.0,Oman,130071.0,Al Wusta,57.25,19.25,OMN,2899.0,Al Wusta,259.0,Oman,130071.0,Al Wusta,both,identical +157436,57.75,19.25,OMN,2899.0,Al Wusta,259.0,Oman,130071.0,Al Wusta,57.75,19.25,OMN,2899.0,Al Wusta,259.0,Oman,130071.0,Al Wusta,both,identical +158008,-16.25,19.75,MRT,1449.0,Dakhlet-Nouadhibou,144.0,Mauritania,104175.0,Chami,-16.25,19.75,MRT,1449.0,Dakhlet-Nouadhibou,144.0,Mauritania,104175.0,Chami,both,identical +158009,-15.75,19.75,MRT,1449.0,Dakhlet-Nouadhibou,144.0,Mauritania,104175.0,Chami,-15.75,19.75,MRT,1449.0,Dakhlet-Nouadhibou,144.0,Mauritania,104175.0,Chami,both,identical +158010,-15.25,19.75,MRT,1454.0,Inchiri,144.0,Mauritania,104200.0,Benechab,-15.25,19.75,MRT,1454.0,Inchiri,144.0,Mauritania,104200.0,Benechab,both,identical +158011,-14.75,19.75,MRT,1454.0,Inchiri,144.0,Mauritania,104200.0,Benechab,-14.75,19.75,MRT,1454.0,Inchiri,144.0,Mauritania,104200.0,Benechab,both,identical +158012,-14.25,19.75,MRT,1454.0,Inchiri,144.0,Mauritania,104199.0,Akjoujt,-14.25,19.75,MRT,1454.0,Inchiri,144.0,Mauritania,104199.0,Akjoujt,both,identical +158013,-13.75,19.75,MRT,1446.0,Adrar,144.0,Mauritania,104160.0,Aoujeft,-13.75,19.75,MRT,1446.0,Adrar,144.0,Mauritania,104160.0,Aoujeft,both,identical +158014,-13.25,19.75,MRT,1446.0,Adrar,144.0,Mauritania,104160.0,Aoujeft,-13.25,19.75,MRT,1446.0,Adrar,144.0,Mauritania,104160.0,Aoujeft,both,identical +158015,-12.75,19.75,MRT,1446.0,Adrar,144.0,Mauritania,104160.0,Aoujeft,-12.75,19.75,MRT,1446.0,Adrar,144.0,Mauritania,104160.0,Aoujeft,both,identical +158016,-12.25,19.75,MRT,1446.0,Adrar,144.0,Mauritania,104162.0,Chinguity,-12.25,19.75,MRT,1446.0,Adrar,144.0,Mauritania,104162.0,Chinguity,both,identical +158017,-11.75,19.75,MRT,1446.0,Adrar,144.0,Mauritania,104162.0,Chinguity,-11.75,19.75,MRT,1446.0,Adrar,144.0,Mauritania,104162.0,Chinguity,both,identical +158018,-11.25,19.75,MRT,1446.0,Adrar,144.0,Mauritania,104162.0,Chinguity,-11.25,19.75,MRT,1446.0,Adrar,144.0,Mauritania,104162.0,Chinguity,both,identical +158019,-10.75,19.75,MRT,1458.0,Tagant,144.0,Mauritania,104211.0,Tichitt,-10.75,19.75,MRT,1458.0,Tagant,144.0,Mauritania,104211.0,Tichitt,both,identical +158020,-10.25,19.75,MRT,1458.0,Tagant,144.0,Mauritania,104211.0,Tichitt,-10.25,19.75,MRT,1458.0,Tagant,144.0,Mauritania,104211.0,Tichitt,both,identical +158021,-9.75,19.75,MRT,1458.0,Tagant,144.0,Mauritania,104211.0,Tichitt,-9.75,19.75,MRT,1458.0,Tagant,144.0,Mauritania,104211.0,Tichitt,both,identical +158022,-9.25,19.75,MRT,1458.0,Tagant,144.0,Mauritania,104211.0,Tichitt,-9.25,19.75,MRT,1458.0,Tagant,144.0,Mauritania,104211.0,Tichitt,both,identical +158023,-8.75,19.75,MRT,1458.0,Tagant,144.0,Mauritania,104211.0,Tichitt,-8.75,19.75,MRT,1458.0,Tagant,144.0,Mauritania,104211.0,Tichitt,both,identical +158024,-8.25,19.75,MRT,1458.0,Tagant,144.0,Mauritania,104211.0,Tichitt,-8.25,19.75,MRT,1458.0,Tagant,144.0,Mauritania,104211.0,Tichitt,both,identical +158025,-7.75,19.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,-7.75,19.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,both,identical +158026,-7.25,19.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,-7.25,19.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,both,identical +158027,-6.75,19.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,-6.75,19.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,both,identical +158028,-6.25,19.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,-6.25,19.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,both,identical +158029,-5.75,19.75,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,-5.75,19.75,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,both,identical +158030,-5.25,19.75,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,-5.25,19.75,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,both,identical +158031,-4.75,19.75,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,-4.75,19.75,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,both,identical +158032,-4.25,19.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-4.25,19.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +158033,-3.75,19.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-3.75,19.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +158034,-3.25,19.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-3.25,19.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +158035,-2.75,19.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-2.75,19.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +158036,-2.25,19.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-2.25,19.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +158037,-1.75,19.75,MLI,1440.0,Kidal,143.0,Mali,104124.0,Tessalit,-1.75,19.75,MLI,1440.0,Kidal,143.0,Mali,104124.0,Tessalit,both,identical +158038,-1.25,19.75,MLI,1440.0,Kidal,143.0,Mali,104124.0,Tessalit,-1.25,19.75,MLI,1440.0,Kidal,143.0,Mali,104124.0,Tessalit,both,identical +158039,-0.75,19.75,MLI,1440.0,Kidal,143.0,Mali,104124.0,Tessalit,-0.75,19.75,MLI,1440.0,Kidal,143.0,Mali,104124.0,Tessalit,both,identical +158040,-0.25,19.75,MLI,1440.0,Kidal,143.0,Mali,104124.0,Tessalit,-0.25,19.75,MLI,1440.0,Kidal,143.0,Mali,104124.0,Tessalit,both,identical +158041,0.25,19.75,MLI,1440.0,Kidal,143.0,Mali,104124.0,Tessalit,0.25,19.75,MLI,1440.0,Kidal,143.0,Mali,104124.0,Tessalit,both,identical +158042,0.75,19.75,MLI,1440.0,Kidal,143.0,Mali,104124.0,Tessalit,0.75,19.75,MLI,1440.0,Kidal,143.0,Mali,104124.0,Tessalit,both,identical +158043,1.25,19.75,MLI,1440.0,Kidal,143.0,Mali,104124.0,Tessalit,1.25,19.75,MLI,1440.0,Kidal,143.0,Mali,104124.0,Tessalit,both,identical +158044,1.75,19.75,MLI,1440.0,Kidal,143.0,Mali,104122.0,Abéïbara,1.75,19.75,MLI,1440.0,Kidal,143.0,Mali,104122.0,Abéïbara,both,identical +158045,2.25,19.75,MLI,1440.0,Kidal,143.0,Mali,104122.0,Abéïbara,2.25,19.75,MLI,1440.0,Kidal,143.0,Mali,104122.0,Abéïbara,both,identical +158046,2.75,19.75,MLI,1440.0,Kidal,143.0,Mali,104122.0,Abéïbara,2.75,19.75,MLI,1440.0,Kidal,143.0,Mali,104122.0,Abéïbara,both,identical +158047,3.25,19.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101299.0,Tin Zaouatine,3.25,19.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101299.0,Tin Zaouatine,both,identical +158048,3.75,19.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101299.0,Tin Zaouatine,3.75,19.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101299.0,Tin Zaouatine,both,identical +158049,4.25,19.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101295.0,In Guezzam,4.25,19.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101295.0,In Guezzam,both,identical +158050,4.75,19.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101295.0,In Guezzam,4.75,19.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101295.0,In Guezzam,both,identical +158051,5.25,19.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101295.0,In Guezzam,5.25,19.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101295.0,In Guezzam,both,identical +158052,5.75,19.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101295.0,In Guezzam,5.75,19.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101295.0,In Guezzam,both,identical +158053,6.25,19.75,NER,1509.0,Agadez,150.0,Niger,104568.0,Arlit,6.25,19.75,NER,1509.0,Agadez,150.0,Niger,104568.0,Arlit,both,identical +158054,6.75,19.75,NER,1509.0,Agadez,150.0,Niger,104568.0,Arlit,6.75,19.75,NER,1509.0,Agadez,150.0,Niger,104568.0,Arlit,both,identical +158055,7.25,19.75,NER,1509.0,Agadez,150.0,Niger,104568.0,Arlit,7.25,19.75,NER,1509.0,Agadez,150.0,Niger,104568.0,Arlit,both,identical +158056,7.75,19.75,NER,1509.0,Agadez,150.0,Niger,104568.0,Arlit,7.75,19.75,NER,1509.0,Agadez,150.0,Niger,104568.0,Arlit,both,identical +158057,8.25,19.75,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,8.25,19.75,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,both,identical +158058,8.75,19.75,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,8.75,19.75,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,both,identical +158059,9.25,19.75,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,9.25,19.75,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,both,identical +158060,9.75,19.75,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,9.75,19.75,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,both,identical +158061,10.25,19.75,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,10.25,19.75,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,both,identical +158062,10.75,19.75,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,10.75,19.75,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,both,identical +158063,11.25,19.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,11.25,19.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +158064,11.75,19.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,11.75,19.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +158065,12.25,19.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,12.25,19.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +158066,12.75,19.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,12.75,19.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +158067,13.25,19.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,13.25,19.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +158068,13.75,19.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,13.75,19.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +158069,14.25,19.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,14.25,19.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +158070,14.75,19.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,14.75,19.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +158071,15.25,19.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,15.25,19.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +158072,15.75,19.75,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,15.75,19.75,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,both,identical +158073,16.25,19.75,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,16.25,19.75,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,both,identical +158074,16.75,19.75,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,16.75,19.75,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,both,identical +158075,17.25,19.75,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,17.25,19.75,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,both,identical +158076,17.75,19.75,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,17.75,19.75,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,both,identical +158077,18.25,19.75,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,18.25,19.75,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,both,identical +158078,18.75,19.75,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,18.75,19.75,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,both,identical +158079,19.25,19.75,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,19.25,19.75,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,both,identical +158080,19.75,19.75,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,19.75,19.75,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,both,identical +158081,20.25,19.75,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,20.25,19.75,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,both,identical +158082,20.75,19.75,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,20.75,19.75,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,both,identical +158083,21.25,19.75,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,21.25,19.75,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,both,identical +158084,21.75,19.75,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,21.75,19.75,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,both,identical +158085,22.25,19.75,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,22.25,19.75,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,both,identical +158086,22.75,19.75,TCD,1163.0,Ennedi Est,114.0,Chad,102093.0,Am-Djarass,22.75,19.75,TCD,1163.0,Ennedi Est,114.0,Chad,102093.0,Am-Djarass,both,identical +158087,23.25,19.75,TCD,1163.0,Ennedi Est,114.0,Chad,102093.0,Am-Djarass,23.25,19.75,TCD,1163.0,Ennedi Est,114.0,Chad,102093.0,Am-Djarass,both,identical +158088,23.75,19.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,23.75,19.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +158089,24.25,19.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,24.25,19.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +158090,24.75,19.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,24.75,19.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +158091,25.25,19.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,25.25,19.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +158092,25.75,19.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,25.75,19.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +158093,26.25,19.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,26.25,19.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +158094,26.75,19.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,26.75,19.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +158095,27.25,19.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,27.25,19.75,SDN,1634.0,North Darfur,161.0,Sudan,105805.0,Al Malha,both,identical +158096,27.75,19.75,SDN,1636.0,Northern,161.0,Sudan,105830.0,Delgo,27.75,19.75,SDN,1636.0,Northern,161.0,Sudan,105830.0,Delgo,both,identical +158097,28.25,19.75,SDN,1636.0,Northern,161.0,Sudan,105830.0,Delgo,28.25,19.75,SDN,1636.0,Northern,161.0,Sudan,105830.0,Delgo,both,identical +158098,28.75,19.75,SDN,1636.0,Northern,161.0,Sudan,105830.0,Delgo,28.75,19.75,SDN,1636.0,Northern,161.0,Sudan,105830.0,Delgo,both,identical +158099,29.25,19.75,SDN,1636.0,Northern,161.0,Sudan,105830.0,Delgo,29.25,19.75,SDN,1636.0,Northern,161.0,Sudan,105830.0,Delgo,both,identical +158100,29.75,19.75,SDN,1636.0,Northern,161.0,Sudan,105830.0,Delgo,29.75,19.75,SDN,1636.0,Northern,161.0,Sudan,105830.0,Delgo,both,identical +158101,30.25,19.75,SDN,1636.0,Northern,161.0,Sudan,105830.0,Delgo,30.25,19.75,SDN,1636.0,Northern,161.0,Sudan,105830.0,Delgo,both,identical +158102,30.75,19.75,SDN,1636.0,Northern,161.0,Sudan,105830.0,Delgo,30.75,19.75,SDN,1636.0,Northern,161.0,Sudan,105830.0,Delgo,both,identical +158103,31.25,19.75,SDN,1636.0,Northern,161.0,Sudan,105830.0,Delgo,31.25,19.75,SDN,1636.0,Northern,161.0,Sudan,105830.0,Delgo,both,identical +158104,31.75,19.75,SDN,1636.0,Northern,161.0,Sudan,105830.0,Delgo,31.75,19.75,SDN,1636.0,Northern,161.0,Sudan,105830.0,Delgo,both,identical +158105,32.25,19.75,SDN,1636.0,Northern,161.0,Sudan,105830.0,Delgo,32.25,19.75,SDN,1636.0,Northern,161.0,Sudan,105830.0,Delgo,both,identical +158106,32.75,19.75,SDN,1638.0,River Nile,161.0,Sudan,105846.0,Al Buhaira,32.75,19.75,SDN,1638.0,River Nile,161.0,Sudan,105846.0,Al Buhaira,both,identical +158107,33.25,19.75,SDN,1638.0,River Nile,161.0,Sudan,105844.0,Abu Hamad,33.25,19.75,SDN,1638.0,River Nile,161.0,Sudan,105844.0,Abu Hamad,both,identical +158108,33.75,19.75,SDN,1637.0,Red Sea,161.0,Sudan,105835.0,Al Ganab,33.75,19.75,SDN,1637.0,Red Sea,161.0,Sudan,105835.0,Al Ganab,both,identical +158109,34.25,19.75,SDN,1637.0,Red Sea,161.0,Sudan,105835.0,Al Ganab,34.25,19.75,SDN,1637.0,Red Sea,161.0,Sudan,105835.0,Al Ganab,both,identical +158110,34.75,19.75,SDN,1637.0,Red Sea,161.0,Sudan,105835.0,Al Ganab,34.75,19.75,SDN,1637.0,Red Sea,161.0,Sudan,105835.0,Al Ganab,both,identical +158111,35.25,19.75,SDN,1637.0,Red Sea,161.0,Sudan,105835.0,Al Ganab,35.25,19.75,SDN,1637.0,Red Sea,161.0,Sudan,105835.0,Al Ganab,both,identical +158112,35.75,19.75,SDN,1637.0,Red Sea,161.0,Sudan,105835.0,Al Ganab,35.75,19.75,SDN,1637.0,Red Sea,161.0,Sudan,105835.0,Al Ganab,both,identical +158113,36.25,19.75,SDN,1637.0,Red Sea,161.0,Sudan,105835.0,Al Ganab,36.25,19.75,SDN,1637.0,Red Sea,161.0,Sudan,105835.0,Al Ganab,both,identical +158114,36.75,19.75,SDN,1637.0,Red Sea,161.0,Sudan,105835.0,Al Ganab,36.75,19.75,SDN,1637.0,Red Sea,161.0,Sudan,105835.0,Al Ganab,both,identical +158115,37.25,19.75,SDN,1637.0,Red Sea,161.0,Sudan,105835.0,Al Ganab,37.25,19.75,SDN,1637.0,Red Sea,161.0,Sudan,105835.0,Al Ganab,both,identical +158121,40.25,19.75,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130555.0,Al Lith,40.25,19.75,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130555.0,Al Lith,both,identical +158122,40.75,19.75,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130555.0,Al Lith,40.75,19.75,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130555.0,Al Lith,both,identical +158123,41.25,19.75,SAU,2953.0,Al Bahah,266.0,Saudi Arabia,130443.0,Al Mukhwah,41.25,19.75,SAU,2953.0,Al Bahah,266.0,Saudi Arabia,130443.0,Al Mukhwah,both,identical +158124,41.75,19.75,SAU,2953.0,Al Bahah,266.0,Saudi Arabia,130503.0,Balqarn,41.75,19.75,SAU,2958.0,Aseer,266.0,Saudi Arabia,130503.0,Balqarn,both,admin_reallocation +158125,42.25,19.75,SAU,2958.0,Aseer,266.0,Saudi Arabia,130505.0,Bishah,42.25,19.75,SAU,2958.0,Aseer,266.0,Saudi Arabia,130505.0,Bishah,both,identical +158126,42.75,19.75,SAU,2958.0,Aseer,266.0,Saudi Arabia,130505.0,Bishah,42.75,19.75,SAU,2958.0,Aseer,266.0,Saudi Arabia,130505.0,Bishah,both,identical +158127,43.25,19.75,SAU,2958.0,Aseer,266.0,Saudi Arabia,130512.0,Tathlith,43.25,19.75,SAU,2958.0,Aseer,266.0,Saudi Arabia,130512.0,Tathlith,both,identical +158128,43.75,19.75,SAU,2958.0,Aseer,266.0,Saudi Arabia,130512.0,Tathlith,43.75,19.75,SAU,2958.0,Aseer,266.0,Saudi Arabia,130512.0,Tathlith,both,identical +158129,44.25,19.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130496.0,Wadi Ad Dawasir,44.25,19.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130496.0,Wadi Ad Dawasir,both,identical +158130,44.75,19.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130496.0,Wadi Ad Dawasir,44.75,19.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130496.0,Wadi Ad Dawasir,both,identical +158131,45.25,19.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130487.0,As Sulayyil,45.25,19.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130487.0,As Sulayyil,both,identical +158132,45.75,19.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130487.0,As Sulayyil,45.75,19.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130487.0,As Sulayyil,both,identical +158133,46.25,19.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130487.0,As Sulayyil,46.25,19.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130487.0,As Sulayyil,both,identical +158134,46.75,19.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130487.0,As Sulayyil,46.75,19.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130487.0,As Sulayyil,both,identical +158135,47.25,19.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130487.0,As Sulayyil,47.25,19.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130487.0,As Sulayyil,both,identical +158136,47.75,19.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,47.75,19.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +158137,48.25,19.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,48.25,19.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +158138,48.75,19.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,48.75,19.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +158139,49.25,19.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,49.25,19.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +158140,49.75,19.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,49.75,19.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +158141,50.25,19.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,50.25,19.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +158142,50.75,19.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,50.75,19.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +158143,51.25,19.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,51.25,19.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +158144,51.75,19.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,51.75,19.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +158145,52.25,19.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,52.25,19.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,both,identical +158146,52.75,19.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,52.75,19.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,both,identical +158147,53.25,19.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,53.25,19.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,both,identical +158148,53.75,19.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,53.75,19.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,both,identical +158149,54.25,19.75,OMN,2902.0,Dhofar,259.0,Oman,130082.0,Muqshin,54.25,19.75,OMN,2902.0,Dhofar,259.0,Oman,130082.0,Muqshin,both,identical +158150,54.75,19.75,OMN,2902.0,Dhofar,259.0,Oman,130082.0,Muqshin,54.75,19.75,OMN,2902.0,Dhofar,259.0,Oman,130082.0,Muqshin,both,identical +158151,55.25,19.75,OMN,2902.0,Dhofar,259.0,Oman,130082.0,Muqshin,55.25,19.75,OMN,2902.0,Dhofar,259.0,Oman,130082.0,Muqshin,both,identical +158152,55.75,19.75,OMN,2902.0,Dhofar,259.0,Oman,130082.0,Muqshin,55.75,19.75,OMN,2902.0,Dhofar,259.0,Oman,130082.0,Muqshin,both,identical +158153,56.25,19.75,OMN,2899.0,Al Wusta,259.0,Oman,130071.0,Al Wusta,56.25,19.75,OMN,2899.0,Al Wusta,259.0,Oman,130071.0,Al Wusta,both,identical +158154,56.75,19.75,OMN,2899.0,Al Wusta,259.0,Oman,130071.0,Al Wusta,56.75,19.75,OMN,2899.0,Al Wusta,259.0,Oman,130071.0,Al Wusta,both,identical +158155,57.25,19.75,OMN,2899.0,Al Wusta,259.0,Oman,130071.0,Al Wusta,57.25,19.75,OMN,2899.0,Al Wusta,259.0,Oman,130071.0,Al Wusta,both,identical +158156,57.75,19.75,OMN,2899.0,Al Wusta,259.0,Oman,130071.0,Al Wusta,57.75,19.75,OMN,2899.0,Al Wusta,259.0,Oman,130071.0,Al Wusta,both,identical +158728,-16.25,20.25,MRT,1449.0,Dakhlet-Nouadhibou,144.0,Mauritania,104175.0,Chami,-16.25,20.25,MRT,1449.0,Dakhlet-Nouadhibou,144.0,Mauritania,104175.0,Chami,both,identical +158729,-15.75,20.25,MRT,1449.0,Dakhlet-Nouadhibou,144.0,Mauritania,104175.0,Chami,-15.75,20.25,MRT,1449.0,Dakhlet-Nouadhibou,144.0,Mauritania,104175.0,Chami,both,identical +158730,-15.25,20.25,MRT,1454.0,Inchiri,144.0,Mauritania,104200.0,Benechab,-15.25,20.25,MRT,1454.0,Inchiri,144.0,Mauritania,104200.0,Benechab,both,identical +158731,-14.75,20.25,MRT,1454.0,Inchiri,144.0,Mauritania,104199.0,Akjoujt,-14.75,20.25,MRT,1454.0,Inchiri,144.0,Mauritania,104199.0,Akjoujt,both,identical +158732,-14.25,20.25,MRT,1454.0,Inchiri,144.0,Mauritania,104199.0,Akjoujt,-14.25,20.25,MRT,1454.0,Inchiri,144.0,Mauritania,104199.0,Akjoujt,both,identical +158733,-13.75,20.25,MRT,1446.0,Adrar,144.0,Mauritania,104161.0,Atar,-13.75,20.25,MRT,1446.0,Adrar,144.0,Mauritania,104161.0,Atar,both,identical +158734,-13.25,20.25,MRT,1446.0,Adrar,144.0,Mauritania,104161.0,Atar,-13.25,20.25,MRT,1446.0,Adrar,144.0,Mauritania,104161.0,Atar,both,identical +158735,-12.75,20.25,MRT,1446.0,Adrar,144.0,Mauritania,104162.0,Chinguity,-12.75,20.25,MRT,1446.0,Adrar,144.0,Mauritania,104162.0,Chinguity,both,identical +158736,-12.25,20.25,MRT,1446.0,Adrar,144.0,Mauritania,104162.0,Chinguity,-12.25,20.25,MRT,1446.0,Adrar,144.0,Mauritania,104162.0,Chinguity,both,identical +158737,-11.75,20.25,MRT,1446.0,Adrar,144.0,Mauritania,104162.0,Chinguity,-11.75,20.25,MRT,1446.0,Adrar,144.0,Mauritania,104162.0,Chinguity,both,identical +158738,-11.25,20.25,MRT,1446.0,Adrar,144.0,Mauritania,104162.0,Chinguity,-11.25,20.25,MRT,1446.0,Adrar,144.0,Mauritania,104162.0,Chinguity,both,identical +158739,-10.75,20.25,MRT,1446.0,Adrar,144.0,Mauritania,104162.0,Chinguity,-10.75,20.25,MRT,1446.0,Adrar,144.0,Mauritania,104162.0,Chinguity,both,identical +158740,-10.25,20.25,MRT,1446.0,Adrar,144.0,Mauritania,104162.0,Chinguity,-10.25,20.25,MRT,1446.0,Adrar,144.0,Mauritania,104162.0,Chinguity,both,identical +158741,-9.75,20.25,MRT,1446.0,Adrar,144.0,Mauritania,104162.0,Chinguity,-9.75,20.25,MRT,1446.0,Adrar,144.0,Mauritania,104162.0,Chinguity,both,identical +158742,-9.25,20.25,MRT,1446.0,Adrar,144.0,Mauritania,104162.0,Chinguity,-9.25,20.25,MRT,1446.0,Adrar,144.0,Mauritania,104162.0,Chinguity,both,identical +158743,-8.75,20.25,MRT,1446.0,Adrar,144.0,Mauritania,104162.0,Chinguity,-8.75,20.25,MRT,1446.0,Adrar,144.0,Mauritania,104162.0,Chinguity,both,identical +158744,-8.25,20.25,MRT,1446.0,Adrar,144.0,Mauritania,104162.0,Chinguity,-8.25,20.25,MRT,1446.0,Adrar,144.0,Mauritania,104162.0,Chinguity,both,identical +158745,-7.75,20.25,MRT,1446.0,Adrar,144.0,Mauritania,104162.0,Chinguity,-7.75,20.25,MRT,1446.0,Adrar,144.0,Mauritania,104162.0,Chinguity,both,identical +158746,-7.25,20.25,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,-7.25,20.25,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,both,identical +158747,-6.75,20.25,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,-6.75,20.25,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,both,identical +158748,-6.25,20.25,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,-6.25,20.25,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,both,identical +158749,-5.75,20.25,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,-5.75,20.25,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,both,identical +158750,-5.25,20.25,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,-5.25,20.25,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,both,identical +158751,-4.75,20.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-4.75,20.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +158752,-4.25,20.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-4.25,20.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +158753,-3.75,20.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-3.75,20.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +158754,-3.25,20.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-3.25,20.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +158755,-2.75,20.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-2.75,20.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +158756,-2.25,20.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-2.25,20.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +158757,-1.75,20.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-1.75,20.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +158758,-1.25,20.25,MLI,1440.0,Kidal,143.0,Mali,104124.0,Tessalit,-1.25,20.25,MLI,1440.0,Kidal,143.0,Mali,104124.0,Tessalit,both,identical +158759,-0.75,20.25,MLI,1440.0,Kidal,143.0,Mali,104124.0,Tessalit,-0.75,20.25,MLI,1440.0,Kidal,143.0,Mali,104124.0,Tessalit,both,identical +158760,-0.25,20.25,MLI,1440.0,Kidal,143.0,Mali,104124.0,Tessalit,-0.25,20.25,MLI,1440.0,Kidal,143.0,Mali,104124.0,Tessalit,both,identical +158761,0.25,20.25,MLI,1440.0,Kidal,143.0,Mali,104124.0,Tessalit,0.25,20.25,MLI,1440.0,Kidal,143.0,Mali,104124.0,Tessalit,both,identical +158762,0.75,20.25,MLI,1440.0,Kidal,143.0,Mali,104124.0,Tessalit,0.75,20.25,MLI,1440.0,Kidal,143.0,Mali,104124.0,Tessalit,both,identical +158763,1.25,20.25,MLI,1440.0,Kidal,143.0,Mali,104124.0,Tessalit,1.25,20.25,MLI,1440.0,Kidal,143.0,Mali,104124.0,Tessalit,both,identical +158764,1.75,20.25,MLI,1440.0,Kidal,143.0,Mali,104122.0,Abéïbara,1.75,20.25,MLI,1440.0,Kidal,143.0,Mali,104122.0,Abéïbara,both,identical +158765,2.25,20.25,DZA,1001.0,Adrar,101.0,Algeria,100022.0,Timiaouine,2.25,20.25,DZA,1001.0,Adrar,101.0,Algeria,100022.0,Timiaouine,both,identical +158766,2.75,20.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101299.0,Tin Zaouatine,2.75,20.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101299.0,Tin Zaouatine,both,identical +158767,3.25,20.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101299.0,Tin Zaouatine,3.25,20.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101299.0,Tin Zaouatine,both,identical +158768,3.75,20.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101299.0,Tin Zaouatine,3.75,20.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101299.0,Tin Zaouatine,both,identical +158769,4.25,20.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101295.0,In Guezzam,4.25,20.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101295.0,In Guezzam,both,identical +158770,4.75,20.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101295.0,In Guezzam,4.75,20.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101295.0,In Guezzam,both,identical +158771,5.25,20.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101295.0,In Guezzam,5.25,20.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101295.0,In Guezzam,both,identical +158772,5.75,20.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101295.0,In Guezzam,5.75,20.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101295.0,In Guezzam,both,identical +158773,6.25,20.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101295.0,In Guezzam,6.25,20.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101295.0,In Guezzam,both,identical +158774,6.75,20.25,NER,1509.0,Agadez,150.0,Niger,104568.0,Arlit,6.75,20.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101295.0,In Guezzam,both,country_reassignment +158775,7.25,20.25,NER,1509.0,Agadez,150.0,Niger,104568.0,Arlit,7.25,20.25,NER,1509.0,Agadez,150.0,Niger,104568.0,Arlit,both,identical +158776,7.75,20.25,NER,1509.0,Agadez,150.0,Niger,104568.0,Arlit,7.75,20.25,NER,1509.0,Agadez,150.0,Niger,104568.0,Arlit,both,identical +158777,8.25,20.25,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,8.25,20.25,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,both,identical +158778,8.75,20.25,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,8.75,20.25,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,both,identical +158779,9.25,20.25,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,9.25,20.25,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,both,identical +158780,9.75,20.25,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,9.75,20.25,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,both,identical +158781,10.25,20.25,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,10.25,20.25,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,both,identical +158782,10.75,20.25,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,10.75,20.25,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,both,identical +158783,11.25,20.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,11.25,20.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +158784,11.75,20.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,11.75,20.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +158785,12.25,20.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,12.25,20.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +158786,12.75,20.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,12.75,20.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +158787,13.25,20.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,13.25,20.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +158788,13.75,20.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,13.75,20.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +158789,14.25,20.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,14.25,20.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +158790,14.75,20.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,14.75,20.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +158791,15.25,20.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,15.25,20.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +158792,15.75,20.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,15.75,20.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +158793,16.25,20.25,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,16.25,20.25,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,both,identical +158794,16.75,20.25,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,16.75,20.25,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,both,identical +158795,17.25,20.25,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,17.25,20.25,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,both,identical +158796,17.75,20.25,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,17.75,20.25,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,both,identical +158797,18.25,20.25,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,18.25,20.25,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,both,identical +158798,18.75,20.25,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,18.75,20.25,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,both,identical +158799,19.25,20.25,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,19.25,20.25,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,both,identical +158800,19.75,20.25,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,19.75,20.25,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,both,identical +158801,20.25,20.25,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,20.25,20.25,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,both,identical +158802,20.75,20.25,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,20.75,20.25,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,both,identical +158803,21.25,20.25,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,21.25,20.25,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,both,identical +158804,21.75,20.25,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,21.75,20.25,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,both,identical +158805,22.25,20.25,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,22.25,20.25,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,both,identical +158806,22.75,20.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,22.75,20.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +158807,23.25,20.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,23.25,20.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +158808,23.75,20.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,23.75,20.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +158809,24.25,20.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,24.25,20.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +158810,24.75,20.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,24.75,20.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +158811,25.25,20.25,SDN,1636.0,Northern,161.0,Sudan,105830.0,Delgo,25.25,20.25,SDN,1636.0,Northern,161.0,Sudan,105830.0,Delgo,both,identical +158812,25.75,20.25,SDN,1636.0,Northern,161.0,Sudan,105830.0,Delgo,25.75,20.25,SDN,1636.0,Northern,161.0,Sudan,105830.0,Delgo,both,identical +158813,26.25,20.25,SDN,1636.0,Northern,161.0,Sudan,105830.0,Delgo,26.25,20.25,SDN,1636.0,Northern,161.0,Sudan,105830.0,Delgo,both,identical +158814,26.75,20.25,SDN,1636.0,Northern,161.0,Sudan,105830.0,Delgo,26.75,20.25,SDN,1636.0,Northern,161.0,Sudan,105830.0,Delgo,both,identical +158815,27.25,20.25,SDN,1636.0,Northern,161.0,Sudan,105830.0,Delgo,27.25,20.25,SDN,1636.0,Northern,161.0,Sudan,105830.0,Delgo,both,identical +158816,27.75,20.25,SDN,1636.0,Northern,161.0,Sudan,105830.0,Delgo,27.75,20.25,SDN,1636.0,Northern,161.0,Sudan,105830.0,Delgo,both,identical +158817,28.25,20.25,SDN,1636.0,Northern,161.0,Sudan,105830.0,Delgo,28.25,20.25,SDN,1636.0,Northern,161.0,Sudan,105830.0,Delgo,both,identical +158818,28.75,20.25,SDN,1636.0,Northern,161.0,Sudan,105830.0,Delgo,28.75,20.25,SDN,1636.0,Northern,161.0,Sudan,105830.0,Delgo,both,identical +158819,29.25,20.25,SDN,1636.0,Northern,161.0,Sudan,105830.0,Delgo,29.25,20.25,SDN,1636.0,Northern,161.0,Sudan,105830.0,Delgo,both,identical +158820,29.75,20.25,SDN,1636.0,Northern,161.0,Sudan,105830.0,Delgo,29.75,20.25,SDN,1636.0,Northern,161.0,Sudan,105830.0,Delgo,both,identical +158821,30.25,20.25,SDN,1636.0,Northern,161.0,Sudan,105830.0,Delgo,30.25,20.25,SDN,1636.0,Northern,161.0,Sudan,105830.0,Delgo,both,identical +158822,30.75,20.25,SDN,1636.0,Northern,161.0,Sudan,105830.0,Delgo,30.75,20.25,SDN,1636.0,Northern,161.0,Sudan,105830.0,Delgo,both,identical +158823,31.25,20.25,SDN,1636.0,Northern,161.0,Sudan,105830.0,Delgo,31.25,20.25,SDN,1636.0,Northern,161.0,Sudan,105830.0,Delgo,both,identical +158824,31.75,20.25,SDN,1636.0,Northern,161.0,Sudan,105830.0,Delgo,31.75,20.25,SDN,1636.0,Northern,161.0,Sudan,105830.0,Delgo,both,identical +158825,32.25,20.25,SDN,1636.0,Northern,161.0,Sudan,105830.0,Delgo,32.25,20.25,SDN,1636.0,Northern,161.0,Sudan,105830.0,Delgo,both,identical +158826,32.75,20.25,SDN,1638.0,River Nile,161.0,Sudan,105846.0,Al Buhaira,32.75,20.25,SDN,1638.0,River Nile,161.0,Sudan,105846.0,Al Buhaira,both,identical +158827,33.25,20.25,SDN,1638.0,River Nile,161.0,Sudan,105844.0,Abu Hamad,33.25,20.25,SDN,1638.0,River Nile,161.0,Sudan,105844.0,Abu Hamad,both,identical +158828,33.75,20.25,SDN,1637.0,Red Sea,161.0,Sudan,105835.0,Al Ganab,33.75,20.25,SDN,1637.0,Red Sea,161.0,Sudan,105835.0,Al Ganab,both,identical +158829,34.25,20.25,SDN,1637.0,Red Sea,161.0,Sudan,105835.0,Al Ganab,34.25,20.25,SDN,1637.0,Red Sea,161.0,Sudan,105835.0,Al Ganab,both,identical +158830,34.75,20.25,SDN,1637.0,Red Sea,161.0,Sudan,105835.0,Al Ganab,34.75,20.25,SDN,1637.0,Red Sea,161.0,Sudan,105835.0,Al Ganab,both,identical +158831,35.25,20.25,SDN,1637.0,Red Sea,161.0,Sudan,105835.0,Al Ganab,35.25,20.25,SDN,1637.0,Red Sea,161.0,Sudan,105835.0,Al Ganab,both,identical +158832,35.75,20.25,SDN,1637.0,Red Sea,161.0,Sudan,105835.0,Al Ganab,35.75,20.25,SDN,1637.0,Red Sea,161.0,Sudan,105835.0,Al Ganab,both,identical +158833,36.25,20.25,SDN,1637.0,Red Sea,161.0,Sudan,105835.0,Al Ganab,36.25,20.25,SDN,1637.0,Red Sea,161.0,Sudan,105835.0,Al Ganab,both,identical +158834,36.75,20.25,SDN,1637.0,Red Sea,161.0,Sudan,105837.0,Hala'Ib,36.75,20.25,SDN,1637.0,Red Sea,161.0,Sudan,105837.0,Hala'Ib,both,identical +158835,37.25,20.25,SDN,1637.0,Red Sea,161.0,Sudan,105837.0,Hala'Ib,37.25,20.25,SDN,1637.0,Red Sea,161.0,Sudan,105837.0,Hala'Ib,both,identical +158840,39.75,20.25,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130555.0,Al Lith,39.75,20.25,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130555.0,Al Lith,both,identical +158841,40.25,20.25,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130555.0,Al Lith,40.25,20.25,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130555.0,Al Lith,both,identical +158842,40.75,20.25,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130555.0,Al Lith,40.75,20.25,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130555.0,Al Lith,both,identical +158843,41.25,20.25,SAU,2953.0,Al Bahah,266.0,Saudi Arabia,130444.0,Al Qara,41.25,20.25,SAU,2953.0,Al Bahah,266.0,Saudi Arabia,130444.0,Al Qara,both,identical +158844,41.75,20.25,SAU,2953.0,Al Bahah,266.0,Saudi Arabia,130439.0,Al Aqiq,41.75,20.25,SAU,2953.0,Al Bahah,266.0,Saudi Arabia,130439.0,Al Aqiq,both,identical +158845,42.25,20.25,SAU,2958.0,Aseer,266.0,Saudi Arabia,130505.0,Bishah,42.25,20.25,SAU,2958.0,Aseer,266.0,Saudi Arabia,130505.0,Bishah,both,identical +158846,42.75,20.25,SAU,2958.0,Aseer,266.0,Saudi Arabia,130505.0,Bishah,42.75,20.25,SAU,2958.0,Aseer,266.0,Saudi Arabia,130505.0,Bishah,both,identical +158847,43.25,20.25,SAU,2958.0,Aseer,266.0,Saudi Arabia,130512.0,Tathlith,43.25,20.25,SAU,2958.0,Aseer,266.0,Saudi Arabia,130512.0,Tathlith,both,identical +158848,43.75,20.25,SAU,2958.0,Aseer,266.0,Saudi Arabia,130512.0,Tathlith,43.75,20.25,SAU,2958.0,Aseer,266.0,Saudi Arabia,130512.0,Tathlith,both,identical +158849,44.25,20.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130496.0,Wadi Ad Dawasir,44.25,20.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130496.0,Wadi Ad Dawasir,both,identical +158850,44.75,20.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130496.0,Wadi Ad Dawasir,44.75,20.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130496.0,Wadi Ad Dawasir,both,identical +158851,45.25,20.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130487.0,As Sulayyil,45.25,20.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130487.0,As Sulayyil,both,identical +158852,45.75,20.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130487.0,As Sulayyil,45.75,20.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130487.0,As Sulayyil,both,identical +158853,46.25,20.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130487.0,As Sulayyil,46.25,20.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130487.0,As Sulayyil,both,identical +158854,46.75,20.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130487.0,As Sulayyil,46.75,20.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130487.0,As Sulayyil,both,identical +158855,47.25,20.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130487.0,As Sulayyil,47.25,20.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130487.0,As Sulayyil,both,identical +158856,47.75,20.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130487.0,As Sulayyil,47.75,20.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130487.0,As Sulayyil,both,identical +158857,48.25,20.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,48.25,20.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +158858,48.75,20.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,48.75,20.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +158859,49.25,20.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,49.25,20.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +158860,49.75,20.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,49.75,20.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +158861,50.25,20.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,50.25,20.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +158862,50.75,20.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,50.75,20.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +158863,51.25,20.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,51.25,20.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +158864,51.75,20.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,51.75,20.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +158865,52.25,20.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,52.25,20.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,both,identical +158866,52.75,20.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,52.75,20.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,both,identical +158867,53.25,20.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,53.25,20.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,both,identical +158868,53.75,20.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,53.75,20.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,both,identical +158869,54.25,20.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,54.25,20.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,both,identical +158870,54.75,20.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,54.75,20.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,both,identical +158871,55.25,20.25,OMN,2902.0,Dhofar,259.0,Oman,130082.0,Muqshin,55.25,20.25,OMN,2902.0,Dhofar,259.0,Oman,130082.0,Muqshin,both,identical +158872,55.75,20.25,OMN,2902.0,Dhofar,259.0,Oman,130082.0,Muqshin,55.75,20.25,OMN,2902.0,Dhofar,259.0,Oman,130082.0,Muqshin,both,identical +158873,56.25,20.25,OMN,2899.0,Al Wusta,259.0,Oman,130071.0,Al Wusta,56.25,20.25,OMN,2899.0,Al Wusta,259.0,Oman,130071.0,Al Wusta,both,identical +158874,56.75,20.25,OMN,2899.0,Al Wusta,259.0,Oman,130071.0,Al Wusta,56.75,20.25,OMN,2899.0,Al Wusta,259.0,Oman,130071.0,Al Wusta,both,identical +158875,57.25,20.25,OMN,2899.0,Al Wusta,259.0,Oman,130071.0,Al Wusta,57.25,20.25,OMN,2899.0,Al Wusta,259.0,Oman,130071.0,Al Wusta,both,identical +158876,57.75,20.25,OMN,2899.0,Al Wusta,259.0,Oman,130071.0,Al Wusta,57.75,20.25,OMN,2899.0,Al Wusta,259.0,Oman,130071.0,Al Wusta,both,identical +158877,58.25,20.25,OMN,2899.0,Al Wusta,259.0,Oman,130071.0,Al Wusta,58.25,20.25,OMN,2899.0,Al Wusta,259.0,Oman,130071.0,Al Wusta,both,identical +158878,58.75,20.25,OMN,2901.0,Ash Sharqiyah South,259.0,Oman,130078.0,Masirah,58.75,20.25,OMN,2901.0,Ash Sharqiyah South,259.0,Oman,130078.0,Masirah,both,identical +159446,-17.25,20.75,MRT,1449.0,Dakhlet-Nouadhibou,144.0,Mauritania,104176.0,Nouadhibou,-17.25,20.75,MRT,1449.0,Dakhlet-Nouadhibou,144.0,Mauritania,104176.0,Nouadhibou,both,identical +159447,-16.75,20.75,MRT,1449.0,Dakhlet-Nouadhibou,144.0,Mauritania,104176.0,Nouadhibou,-16.75,20.75,MRT,1449.0,Dakhlet-Nouadhibou,144.0,Mauritania,104176.0,Nouadhibou,both,identical +159448,-16.25,20.75,MRT,1449.0,Dakhlet-Nouadhibou,144.0,Mauritania,104176.0,Nouadhibou,-16.25,20.75,MRT,1449.0,Dakhlet-Nouadhibou,144.0,Mauritania,104176.0,Nouadhibou,both,identical +159449,-15.75,20.75,MRT,1449.0,Dakhlet-Nouadhibou,144.0,Mauritania,104176.0,Nouadhibou,-15.75,20.75,MRT,1449.0,Dakhlet-Nouadhibou,144.0,Mauritania,104176.0,Nouadhibou,both,identical +159450,-15.25,20.75,MRT,1449.0,Dakhlet-Nouadhibou,144.0,Mauritania,104175.0,Chami,-15.25,20.75,MRT,1449.0,Dakhlet-Nouadhibou,144.0,Mauritania,104175.0,Chami,both,identical +159451,-14.75,20.75,MRT,1449.0,Dakhlet-Nouadhibou,144.0,Mauritania,104175.0,Chami,-14.75,20.75,MRT,1449.0,Dakhlet-Nouadhibou,144.0,Mauritania,104175.0,Chami,both,identical +159452,-14.25,20.75,MRT,1454.0,Inchiri,144.0,Mauritania,104199.0,Akjoujt,-14.25,20.75,MRT,1454.0,Inchiri,144.0,Mauritania,104199.0,Akjoujt,both,identical +159453,-13.75,20.75,MRT,1446.0,Adrar,144.0,Mauritania,104161.0,Atar,-13.75,20.75,MRT,1446.0,Adrar,144.0,Mauritania,104161.0,Atar,both,identical +159454,-13.25,20.75,MRT,1446.0,Adrar,144.0,Mauritania,104161.0,Atar,-13.25,20.75,MRT,1446.0,Adrar,144.0,Mauritania,104161.0,Atar,both,identical +159455,-12.75,20.75,MRT,1446.0,Adrar,144.0,Mauritania,104161.0,Atar,-12.75,20.75,MRT,1446.0,Adrar,144.0,Mauritania,104161.0,Atar,both,identical +159456,-12.25,20.75,MRT,1446.0,Adrar,144.0,Mauritania,104162.0,Chinguity,-12.25,20.75,MRT,1446.0,Adrar,144.0,Mauritania,104162.0,Chinguity,both,identical +159457,-11.75,20.75,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,-11.75,20.75,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,both,identical +159458,-11.25,20.75,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,-11.25,20.75,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,both,identical +159459,-10.75,20.75,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,-10.75,20.75,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,both,identical +159460,-10.25,20.75,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,-10.25,20.75,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,both,identical +159461,-9.75,20.75,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,-9.75,20.75,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,both,identical +159462,-9.25,20.75,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,-9.25,20.75,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,both,identical +159463,-8.75,20.75,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,-8.75,20.75,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,both,identical +159464,-8.25,20.75,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,-8.25,20.75,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,both,identical +159465,-7.75,20.75,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,-7.75,20.75,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,both,identical +159466,-7.25,20.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,-7.25,20.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,both,identical +159467,-6.75,20.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,-6.75,20.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,both,identical +159468,-6.25,20.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,-6.25,20.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,both,identical +159469,-5.75,20.75,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,-5.75,20.75,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,both,identical +159470,-5.25,20.75,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,-5.25,20.75,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,both,identical +159471,-4.75,20.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-4.75,20.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +159472,-4.25,20.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-4.25,20.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +159473,-3.75,20.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-3.75,20.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +159474,-3.25,20.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-3.25,20.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +159475,-2.75,20.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-2.75,20.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +159476,-2.25,20.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-2.25,20.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +159477,-1.75,20.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-1.75,20.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +159478,-1.25,20.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-1.25,20.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +159479,-0.75,20.75,MLI,1440.0,Kidal,143.0,Mali,104124.0,Tessalit,-0.75,20.75,MLI,1440.0,Kidal,143.0,Mali,104124.0,Tessalit,both,identical +159480,-0.25,20.75,MLI,1440.0,Kidal,143.0,Mali,104124.0,Tessalit,-0.25,20.75,MLI,1440.0,Kidal,143.0,Mali,104124.0,Tessalit,both,identical +159481,0.25,20.75,MLI,1440.0,Kidal,143.0,Mali,104124.0,Tessalit,0.25,20.75,MLI,1440.0,Kidal,143.0,Mali,104124.0,Tessalit,both,identical +159482,0.75,20.75,MLI,1440.0,Kidal,143.0,Mali,104124.0,Tessalit,0.75,20.75,MLI,1440.0,Kidal,143.0,Mali,104124.0,Tessalit,both,identical +159483,1.25,20.75,MLI,1440.0,Kidal,143.0,Mali,104124.0,Tessalit,1.25,20.75,MLI,1440.0,Kidal,143.0,Mali,104124.0,Tessalit,both,identical +159484,1.75,20.75,DZA,1001.0,Adrar,101.0,Algeria,100022.0,Timiaouine,1.75,20.75,DZA,1001.0,Adrar,101.0,Algeria,100022.0,Timiaouine,both,identical +159485,2.25,20.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101299.0,Tin Zaouatine,2.25,20.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101299.0,Tin Zaouatine,both,identical +159486,2.75,20.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101299.0,Tin Zaouatine,2.75,20.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101299.0,Tin Zaouatine,both,identical +159487,3.25,20.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101299.0,Tin Zaouatine,3.25,20.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101299.0,Tin Zaouatine,both,identical +159488,3.75,20.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101299.0,Tin Zaouatine,3.75,20.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101299.0,Tin Zaouatine,both,identical +159489,4.25,20.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101290.0,Abalessa,4.25,20.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101290.0,Abalessa,both,identical +159490,4.75,20.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101295.0,In Guezzam,4.75,20.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101295.0,In Guezzam,both,identical +159491,5.25,20.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101295.0,In Guezzam,5.25,20.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101295.0,In Guezzam,both,identical +159492,5.75,20.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101295.0,In Guezzam,5.75,20.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101295.0,In Guezzam,both,identical +159493,6.25,20.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101295.0,In Guezzam,6.25,20.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101295.0,In Guezzam,both,identical +159494,6.75,20.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101295.0,In Guezzam,6.75,20.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101295.0,In Guezzam,both,identical +159495,7.25,20.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101295.0,In Guezzam,7.25,20.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101295.0,In Guezzam,both,identical +159496,7.75,20.75,NER,1509.0,Agadez,150.0,Niger,104568.0,Arlit,7.75,20.75,NER,1509.0,Agadez,150.0,Niger,104568.0,Arlit,both,identical +159497,8.25,20.75,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,8.25,20.75,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,both,identical +159498,8.75,20.75,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,8.75,20.75,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,both,identical +159499,9.25,20.75,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,9.25,20.75,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,both,identical +159500,9.75,20.75,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,9.75,20.75,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,both,identical +159501,10.25,20.75,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,10.25,20.75,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,both,identical +159502,10.75,20.75,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,10.75,20.75,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,both,identical +159503,11.25,20.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,11.25,20.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +159504,11.75,20.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,11.75,20.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +159505,12.25,20.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,12.25,20.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +159506,12.75,20.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,12.75,20.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +159507,13.25,20.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,13.25,20.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +159508,13.75,20.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,13.75,20.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +159509,14.25,20.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,14.25,20.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +159510,14.75,20.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,14.75,20.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +159511,15.25,20.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,15.25,20.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +159512,15.75,20.75,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,15.75,20.75,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,both,identical +159513,16.25,20.75,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,16.25,20.75,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,both,identical +159514,16.75,20.75,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,16.75,20.75,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,both,identical +159515,17.25,20.75,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,17.25,20.75,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,both,identical +159516,17.75,20.75,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,17.75,20.75,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,both,identical +159517,18.25,20.75,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,18.25,20.75,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,both,identical +159518,18.75,20.75,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,18.75,20.75,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,both,identical +159519,19.25,20.75,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,19.25,20.75,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,both,identical +159520,19.75,20.75,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,19.75,20.75,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,both,identical +159521,20.25,20.75,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,20.25,20.75,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,both,identical +159522,20.75,20.75,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,20.75,20.75,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,both,identical +159523,21.25,20.75,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,21.25,20.75,TCD,1164.0,Ennedi Ouest,114.0,Chad,102095.0,Fada,both,identical +159524,21.75,20.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,21.75,20.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +159525,22.25,20.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,22.25,20.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +159526,22.75,20.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,22.75,20.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +159527,23.25,20.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,23.25,20.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +159528,23.75,20.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,23.75,20.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +159529,24.25,20.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,24.25,20.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +159530,24.75,20.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,24.75,20.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +159531,25.25,20.75,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,25.25,20.75,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,both,identical +159532,25.75,20.75,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,25.75,20.75,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,both,identical +159533,26.25,20.75,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,26.25,20.75,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,both,identical +159534,26.75,20.75,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,26.75,20.75,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,both,identical +159535,27.25,20.75,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,27.25,20.75,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,both,identical +159536,27.75,20.75,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,27.75,20.75,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,both,identical +159537,28.25,20.75,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,28.25,20.75,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,both,identical +159538,28.75,20.75,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,28.75,20.75,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,both,identical +159539,29.25,20.75,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,29.25,20.75,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,both,identical +159540,29.75,20.75,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,29.75,20.75,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,both,identical +159541,30.25,20.75,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,30.25,20.75,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,both,identical +159542,30.75,20.75,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,30.75,20.75,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,both,identical +159543,31.25,20.75,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,31.25,20.75,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,both,identical +159544,31.75,20.75,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,31.75,20.75,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,both,identical +159545,32.25,20.75,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,32.25,20.75,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,both,identical +159546,32.75,20.75,SDN,1638.0,River Nile,161.0,Sudan,105844.0,Abu Hamad,32.75,20.75,SDN,1638.0,River Nile,161.0,Sudan,105844.0,Abu Hamad,both,identical +159547,33.25,20.75,SDN,1638.0,River Nile,161.0,Sudan,105844.0,Abu Hamad,33.25,20.75,SDN,1638.0,River Nile,161.0,Sudan,105844.0,Abu Hamad,both,identical +159548,33.75,20.75,SDN,1637.0,Red Sea,161.0,Sudan,105839.0,Jubayt Elma'Aadin,33.75,20.75,SDN,1637.0,Red Sea,161.0,Sudan,105839.0,Jubayt Elma'Aadin,both,identical +159549,34.25,20.75,SDN,1637.0,Red Sea,161.0,Sudan,105839.0,Jubayt Elma'Aadin,34.25,20.75,SDN,1637.0,Red Sea,161.0,Sudan,105839.0,Jubayt Elma'Aadin,both,identical +159550,34.75,20.75,SDN,1637.0,Red Sea,161.0,Sudan,105839.0,Jubayt Elma'Aadin,34.75,20.75,SDN,1637.0,Red Sea,161.0,Sudan,105839.0,Jubayt Elma'Aadin,both,identical +159551,35.25,20.75,SDN,1637.0,Red Sea,161.0,Sudan,105839.0,Jubayt Elma'Aadin,35.25,20.75,SDN,1637.0,Red Sea,161.0,Sudan,105839.0,Jubayt Elma'Aadin,both,identical +159552,35.75,20.75,SDN,1637.0,Red Sea,161.0,Sudan,105839.0,Jubayt Elma'Aadin,35.75,20.75,SDN,1637.0,Red Sea,161.0,Sudan,105839.0,Jubayt Elma'Aadin,both,identical +159553,36.25,20.75,SDN,1637.0,Red Sea,161.0,Sudan,105839.0,Jubayt Elma'Aadin,36.25,20.75,SDN,1637.0,Red Sea,161.0,Sudan,105839.0,Jubayt Elma'Aadin,both,identical +159554,36.75,20.75,SDN,1637.0,Red Sea,161.0,Sudan,105837.0,Hala'Ib,36.75,20.75,SDN,1637.0,Red Sea,161.0,Sudan,105837.0,Hala'Ib,both,identical +159555,37.25,20.75,SDN,1637.0,Red Sea,161.0,Sudan,105837.0,Hala'Ib,37.25,20.75,SDN,1637.0,Red Sea,161.0,Sudan,105837.0,Hala'Ib,both,identical +159559,39.25,20.75,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130559.0,Bahrah,39.25,20.75,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130559.0,Bahrah,both,identical +159560,39.75,20.75,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130559.0,Bahrah,39.75,20.75,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130559.0,Bahrah,both,identical +159561,40.25,20.75,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130555.0,Al Lith,40.25,20.75,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130555.0,Al Lith,both,identical +159562,40.75,20.75,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130563.0,Maysan,40.75,20.75,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130563.0,Maysan,both,identical +159563,41.25,20.75,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130563.0,Maysan,41.25,20.75,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130563.0,Maysan,both,identical +159564,41.75,20.75,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130566.0,Turubah,41.75,20.75,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130566.0,Turubah,both,identical +159565,42.25,20.75,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130565.0,Ranyah,42.25,20.75,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130565.0,Ranyah,both,identical +159566,42.75,20.75,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130565.0,Ranyah,42.75,20.75,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130565.0,Ranyah,both,identical +159567,43.25,20.75,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130565.0,Ranyah,43.25,20.75,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130565.0,Ranyah,both,identical +159568,43.75,20.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130496.0,Wadi Ad Dawasir,43.75,20.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130496.0,Wadi Ad Dawasir,both,identical +159569,44.25,20.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130496.0,Wadi Ad Dawasir,44.25,20.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130496.0,Wadi Ad Dawasir,both,identical +159570,44.75,20.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130496.0,Wadi Ad Dawasir,44.75,20.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130496.0,Wadi Ad Dawasir,both,identical +159571,45.25,20.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130487.0,As Sulayyil,45.25,20.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130487.0,As Sulayyil,both,identical +159572,45.75,20.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130487.0,As Sulayyil,45.75,20.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130487.0,As Sulayyil,both,identical +159573,46.25,20.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130487.0,As Sulayyil,46.25,20.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130487.0,As Sulayyil,both,identical +159574,46.75,20.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130487.0,As Sulayyil,46.75,20.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130487.0,As Sulayyil,both,identical +159575,47.25,20.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130487.0,As Sulayyil,47.25,20.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130487.0,As Sulayyil,both,identical +159576,47.75,20.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130487.0,As Sulayyil,47.75,20.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130487.0,As Sulayyil,both,identical +159577,48.25,20.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,48.25,20.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +159578,48.75,20.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,48.75,20.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +159579,49.25,20.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,49.25,20.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +159580,49.75,20.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,49.75,20.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +159581,50.25,20.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,50.25,20.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +159582,50.75,20.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,50.75,20.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +159583,51.25,20.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,51.25,20.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +159584,51.75,20.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,51.75,20.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +159585,52.25,20.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,52.25,20.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,both,identical +159586,52.75,20.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,52.75,20.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,both,identical +159587,53.25,20.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,53.25,20.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,both,identical +159588,53.75,20.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,53.75,20.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,both,identical +159589,54.25,20.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,54.25,20.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,both,identical +159590,54.75,20.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,54.75,20.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,both,identical +159591,55.25,20.75,OMN,2902.0,Dhofar,259.0,Oman,130082.0,Muqshin,55.25,20.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,both,country_reassignment +159592,55.75,20.75,OMN,2899.0,Al Wusta,259.0,Oman,130071.0,Al Wusta,55.75,20.75,OMN,2899.0,Al Wusta,259.0,Oman,130071.0,Al Wusta,both,identical +159593,56.25,20.75,OMN,2899.0,Al Wusta,259.0,Oman,130071.0,Al Wusta,56.25,20.75,OMN,2899.0,Al Wusta,259.0,Oman,130071.0,Al Wusta,both,identical +159594,56.75,20.75,OMN,2899.0,Al Wusta,259.0,Oman,130071.0,Al Wusta,56.75,20.75,OMN,2899.0,Al Wusta,259.0,Oman,130071.0,Al Wusta,both,identical +159595,57.25,20.75,OMN,2899.0,Al Wusta,259.0,Oman,130071.0,Al Wusta,57.25,20.75,OMN,2899.0,Al Wusta,259.0,Oman,130071.0,Al Wusta,both,identical +159596,57.75,20.75,OMN,2899.0,Al Wusta,259.0,Oman,130071.0,Al Wusta,57.75,20.75,OMN,2899.0,Al Wusta,259.0,Oman,130071.0,Al Wusta,both,identical +159597,58.25,20.75,OMN,2899.0,Al Wusta,259.0,Oman,130071.0,Al Wusta,58.25,20.75,OMN,2899.0,Al Wusta,259.0,Oman,130071.0,Al Wusta,both,identical +159598,58.75,20.75,OMN,2899.0,Al Wusta,259.0,Oman,130071.0,Al Wusta,58.75,20.75,OMN,2899.0,Al Wusta,259.0,Oman,130071.0,Al Wusta,both,identical +160166,-17.25,21.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,-17.25,21.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,identical +160167,-16.75,21.25,MRT,1449.0,Dakhlet-Nouadhibou,144.0,Mauritania,104176.0,Nouadhibou,-16.75,21.25,MRT,1449.0,Dakhlet-Nouadhibou,144.0,Mauritania,104176.0,Nouadhibou,both,identical +160168,-16.25,21.25,MRT,1449.0,Dakhlet-Nouadhibou,144.0,Mauritania,104176.0,Nouadhibou,-16.25,21.25,MRT,1449.0,Dakhlet-Nouadhibou,144.0,Mauritania,104176.0,Nouadhibou,both,identical +160169,-15.75,21.25,MRT,1449.0,Dakhlet-Nouadhibou,144.0,Mauritania,104176.0,Nouadhibou,-15.75,21.25,MRT,1449.0,Dakhlet-Nouadhibou,144.0,Mauritania,104176.0,Nouadhibou,both,identical +160170,-15.25,21.25,MRT,1449.0,Dakhlet-Nouadhibou,144.0,Mauritania,104176.0,Nouadhibou,-15.25,21.25,MRT,1449.0,Dakhlet-Nouadhibou,144.0,Mauritania,104176.0,Nouadhibou,both,identical +160171,-14.75,21.25,MRT,1449.0,Dakhlet-Nouadhibou,144.0,Mauritania,104176.0,Nouadhibou,-14.75,21.25,MRT,1449.0,Dakhlet-Nouadhibou,144.0,Mauritania,104176.0,Nouadhibou,both,identical +160172,-14.25,21.25,MRT,1449.0,Dakhlet-Nouadhibou,144.0,Mauritania,104175.0,Chami,-14.25,21.25,MRT,1449.0,Dakhlet-Nouadhibou,144.0,Mauritania,104175.0,Chami,both,identical +160173,-13.75,21.25,MRT,1446.0,Adrar,144.0,Mauritania,104161.0,Atar,-13.75,21.25,MRT,1446.0,Adrar,144.0,Mauritania,104161.0,Atar,both,identical +160174,-13.25,21.25,MRT,1446.0,Adrar,144.0,Mauritania,104161.0,Atar,-13.25,21.25,MRT,1446.0,Adrar,144.0,Mauritania,104161.0,Atar,both,identical +160175,-12.75,21.25,MRT,1446.0,Adrar,144.0,Mauritania,104161.0,Atar,-12.75,21.25,MRT,1446.0,Adrar,144.0,Mauritania,104161.0,Atar,both,identical +160176,-12.25,21.25,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,-12.25,21.25,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,both,identical +160177,-11.75,21.25,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,-11.75,21.25,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,both,identical +160178,-11.25,21.25,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,-11.25,21.25,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,both,identical +160179,-10.75,21.25,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,-10.75,21.25,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,both,identical +160180,-10.25,21.25,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,-10.25,21.25,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,both,identical +160181,-9.75,21.25,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,-9.75,21.25,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,both,identical +160182,-9.25,21.25,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,-9.25,21.25,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,both,identical +160183,-8.75,21.25,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,-8.75,21.25,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,both,identical +160184,-8.25,21.25,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,-8.25,21.25,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,both,identical +160185,-7.75,21.25,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,-7.75,21.25,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,both,identical +160186,-7.25,21.25,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,-7.25,21.25,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,both,identical +160187,-6.75,21.25,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,-6.75,21.25,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,both,identical +160188,-6.25,21.25,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,-6.25,21.25,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,both,identical +160189,-5.75,21.25,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,-5.75,21.25,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,both,identical +160190,-5.25,21.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-5.25,21.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +160191,-4.75,21.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-4.75,21.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +160192,-4.25,21.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-4.25,21.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +160193,-3.75,21.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-3.75,21.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +160194,-3.25,21.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-3.25,21.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +160195,-2.75,21.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-2.75,21.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +160196,-2.25,21.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-2.25,21.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +160197,-1.75,21.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-1.75,21.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +160198,-1.25,21.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-1.25,21.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +160199,-0.75,21.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-0.75,21.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +160200,-0.25,21.25,MLI,1440.0,Kidal,143.0,Mali,104124.0,Tessalit,-0.25,21.25,MLI,1440.0,Kidal,143.0,Mali,104124.0,Tessalit,both,identical +160201,0.25,21.25,MLI,1440.0,Kidal,143.0,Mali,104124.0,Tessalit,0.25,21.25,MLI,1440.0,Kidal,143.0,Mali,104124.0,Tessalit,both,identical +160202,0.75,21.25,MLI,1440.0,Kidal,143.0,Mali,104124.0,Tessalit,0.75,21.25,MLI,1440.0,Kidal,143.0,Mali,104124.0,Tessalit,both,identical +160203,1.25,21.25,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,1.25,21.25,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,both,identical +160204,1.75,21.25,DZA,1001.0,Adrar,101.0,Algeria,100022.0,Timiaouine,1.75,21.25,DZA,1001.0,Adrar,101.0,Algeria,100022.0,Timiaouine,both,identical +160205,2.25,21.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101299.0,Tin Zaouatine,2.25,21.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101299.0,Tin Zaouatine,both,identical +160206,2.75,21.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101299.0,Tin Zaouatine,2.75,21.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101299.0,Tin Zaouatine,both,identical +160207,3.25,21.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101299.0,Tin Zaouatine,3.25,21.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101299.0,Tin Zaouatine,both,identical +160208,3.75,21.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101290.0,Abalessa,3.75,21.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101290.0,Abalessa,both,identical +160209,4.25,21.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101290.0,Abalessa,4.25,21.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101290.0,Abalessa,both,identical +160210,4.75,21.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101290.0,Abalessa,4.75,21.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101290.0,Abalessa,both,identical +160211,5.25,21.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101297.0,Tamanrasset,5.25,21.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101297.0,Tamanrasset,both,identical +160212,5.75,21.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101297.0,Tamanrasset,5.75,21.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101297.0,Tamanrasset,both,identical +160213,6.25,21.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101297.0,Tamanrasset,6.25,21.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101297.0,Tamanrasset,both,identical +160214,6.75,21.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101295.0,In Guezzam,6.75,21.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101295.0,In Guezzam,both,identical +160215,7.25,21.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101295.0,In Guezzam,7.25,21.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101295.0,In Guezzam,both,identical +160216,7.75,21.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101298.0,Tazrouk,7.75,21.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101298.0,Tazrouk,both,identical +160217,8.25,21.25,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,8.25,21.25,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,both,identical +160218,8.75,21.25,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,8.75,21.25,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,both,identical +160219,9.25,21.25,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,9.25,21.25,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,both,identical +160220,9.75,21.25,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,9.75,21.25,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,both,identical +160221,10.25,21.25,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,10.25,21.25,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,both,identical +160222,10.75,21.25,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,10.75,21.25,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,both,identical +160223,11.25,21.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,11.25,21.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +160224,11.75,21.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,11.75,21.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +160225,12.25,21.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,12.25,21.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +160226,12.75,21.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,12.75,21.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +160227,13.25,21.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,13.25,21.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +160228,13.75,21.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,13.75,21.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +160229,14.25,21.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,14.25,21.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +160230,14.75,21.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,14.75,21.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +160231,15.25,21.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,15.25,21.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +160232,15.75,21.25,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,15.75,21.25,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,both,identical +160233,16.25,21.25,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,16.25,21.25,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,both,identical +160234,16.75,21.25,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,16.75,21.25,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,both,identical +160235,17.25,21.25,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,17.25,21.25,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,both,identical +160236,17.75,21.25,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,17.75,21.25,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,both,identical +160237,18.25,21.25,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,18.25,21.25,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,both,identical +160238,18.75,21.25,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,18.75,21.25,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,both,identical +160239,19.25,21.25,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,19.25,21.25,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,both,identical +160240,19.75,21.25,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,19.75,21.25,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,both,identical +160241,20.25,21.25,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,20.25,21.25,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,both,identical +160242,20.75,21.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,20.75,21.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +160243,21.25,21.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,21.25,21.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +160244,21.75,21.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,21.75,21.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +160245,22.25,21.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,22.25,21.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +160246,22.75,21.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,22.75,21.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +160247,23.25,21.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,23.25,21.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +160248,23.75,21.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,23.75,21.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +160249,24.25,21.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,24.25,21.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +160250,24.75,21.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,24.75,21.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +160251,25.25,21.25,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,25.25,21.25,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,both,identical +160252,25.75,21.25,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,25.75,21.25,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,both,identical +160253,26.25,21.25,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,26.25,21.25,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,both,identical +160254,26.75,21.25,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,26.75,21.25,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,both,identical +160255,27.25,21.25,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,27.25,21.25,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,both,identical +160256,27.75,21.25,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,27.75,21.25,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,both,identical +160257,28.25,21.25,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,28.25,21.25,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,both,identical +160258,28.75,21.25,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,28.75,21.25,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,both,identical +160259,29.25,21.25,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,29.25,21.25,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,both,identical +160260,29.75,21.25,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,29.75,21.25,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,both,identical +160261,30.25,21.25,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,30.25,21.25,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,both,identical +160262,30.75,21.25,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,30.75,21.25,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,both,identical +160263,31.25,21.25,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,31.25,21.25,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,both,identical +160264,31.75,21.25,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,31.75,21.25,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,both,identical +160265,32.25,21.25,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,32.25,21.25,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,both,identical +160266,32.75,21.25,SDN,1638.0,River Nile,161.0,Sudan,105844.0,Abu Hamad,32.75,21.25,SDN,1638.0,River Nile,161.0,Sudan,105844.0,Abu Hamad,both,identical +160267,33.25,21.25,SDN,1638.0,River Nile,161.0,Sudan,105844.0,Abu Hamad,33.25,21.25,SDN,1638.0,River Nile,161.0,Sudan,105844.0,Abu Hamad,both,identical +160268,33.75,21.25,SDN,1637.0,Red Sea,161.0,Sudan,105839.0,Jubayt Elma'Aadin,33.75,21.25,SDN,1637.0,Red Sea,161.0,Sudan,105839.0,Jubayt Elma'Aadin,both,identical +160269,34.25,21.25,SDN,1637.0,Red Sea,161.0,Sudan,105839.0,Jubayt Elma'Aadin,34.25,21.25,SDN,1637.0,Red Sea,161.0,Sudan,105839.0,Jubayt Elma'Aadin,both,identical +160270,34.75,21.25,SDN,1637.0,Red Sea,161.0,Sudan,105839.0,Jubayt Elma'Aadin,34.75,21.25,SDN,1637.0,Red Sea,161.0,Sudan,105839.0,Jubayt Elma'Aadin,both,identical +160271,35.25,21.25,SDN,1637.0,Red Sea,161.0,Sudan,105839.0,Jubayt Elma'Aadin,35.25,21.25,SDN,1637.0,Red Sea,161.0,Sudan,105839.0,Jubayt Elma'Aadin,both,identical +160272,35.75,21.25,SDN,1637.0,Red Sea,161.0,Sudan,105839.0,Jubayt Elma'Aadin,35.75,21.25,SDN,1637.0,Red Sea,161.0,Sudan,105839.0,Jubayt Elma'Aadin,both,identical +160273,36.25,21.25,SDN,1637.0,Red Sea,161.0,Sudan,105839.0,Jubayt Elma'Aadin,36.25,21.25,SDN,1637.0,Red Sea,161.0,Sudan,105839.0,Jubayt Elma'Aadin,both,identical +160274,36.75,21.25,SDN,1637.0,Red Sea,161.0,Sudan,105837.0,Hala'Ib,36.75,21.25,SDN,1637.0,Red Sea,161.0,Sudan,105837.0,Hala'Ib,both,identical +160275,37.25,21.25,SDN,1637.0,Red Sea,161.0,Sudan,105837.0,Hala'Ib,37.25,21.25,SDN,1637.0,Red Sea,161.0,Sudan,105837.0,Hala'Ib,both,identical +160279,39.25,21.25,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130560.0,Jiddah,39.25,21.25,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130560.0,Jiddah,both,identical +160280,39.75,21.25,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130562.0,Makkah Al Mukarramah,39.75,21.25,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130562.0,Makkah Al Mukarramah,both,identical +160281,40.25,21.25,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130558.0,Al Taif,40.25,21.25,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130558.0,Al Taif,both,identical +160282,40.75,21.25,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130558.0,Al Taif,40.75,21.25,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130558.0,Al Taif,both,identical +160283,41.25,21.25,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130566.0,Turubah,41.25,21.25,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130566.0,Turubah,both,identical +160284,41.75,21.25,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130566.0,Turubah,41.75,21.25,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130566.0,Turubah,both,identical +160285,42.25,21.25,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130565.0,Ranyah,42.25,21.25,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130565.0,Ranyah,both,identical +160286,42.75,21.25,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130565.0,Ranyah,42.75,21.25,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130565.0,Ranyah,both,identical +160287,43.25,21.25,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130565.0,Ranyah,43.25,21.25,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130565.0,Ranyah,both,identical +160288,43.75,21.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130496.0,Wadi Ad Dawasir,43.75,21.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130496.0,Wadi Ad Dawasir,both,identical +160289,44.25,21.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130496.0,Wadi Ad Dawasir,44.25,21.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130496.0,Wadi Ad Dawasir,both,identical +160290,44.75,21.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130496.0,Wadi Ad Dawasir,44.75,21.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130496.0,Wadi Ad Dawasir,both,identical +160291,45.25,21.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130487.0,As Sulayyil,45.25,21.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130487.0,As Sulayyil,both,identical +160292,45.75,21.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130487.0,As Sulayyil,45.75,21.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130487.0,As Sulayyil,both,identical +160293,46.25,21.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130478.0,Al Aflaj,46.25,21.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130478.0,Al Aflaj,both,identical +160294,46.75,21.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130478.0,Al Aflaj,46.75,21.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130478.0,Al Aflaj,both,identical +160295,47.25,21.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130478.0,Al Aflaj,47.25,21.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130478.0,Al Aflaj,both,identical +160296,47.75,21.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130478.0,Al Aflaj,47.75,21.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130478.0,Al Aflaj,both,identical +160297,48.25,21.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,48.25,21.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +160298,48.75,21.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,48.75,21.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +160299,49.25,21.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,49.25,21.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +160300,49.75,21.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,49.75,21.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +160301,50.25,21.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,50.25,21.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +160302,50.75,21.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,50.75,21.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +160303,51.25,21.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,51.25,21.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +160304,51.75,21.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,51.75,21.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,both,identical +160305,52.25,21.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,52.25,21.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,both,identical +160306,52.75,21.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,52.75,21.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,both,identical +160307,53.25,21.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,53.25,21.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,both,identical +160308,53.75,21.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,53.75,21.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,both,identical +160309,54.25,21.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,54.25,21.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,both,identical +160310,54.75,21.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,54.75,21.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,both,identical +160311,55.25,21.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,55.25,21.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,both,identical +160312,55.75,21.25,OMN,2899.0,Al Wusta,259.0,Oman,130071.0,Al Wusta,55.75,21.25,OMN,2899.0,Al Wusta,259.0,Oman,130071.0,Al Wusta,both,identical +160313,56.25,21.25,OMN,2899.0,Al Wusta,259.0,Oman,130071.0,Al Wusta,56.25,21.25,OMN,2899.0,Al Wusta,259.0,Oman,130071.0,Al Wusta,both,identical +160314,56.75,21.25,OMN,2899.0,Al Wusta,259.0,Oman,130071.0,Al Wusta,56.75,21.25,OMN,2899.0,Al Wusta,259.0,Oman,130071.0,Al Wusta,both,identical +160315,57.25,21.25,OMN,2899.0,Al Wusta,259.0,Oman,130071.0,Al Wusta,57.25,21.25,OMN,2899.0,Al Wusta,259.0,Oman,130071.0,Al Wusta,both,identical +160316,57.75,21.25,OMN,2899.0,Al Wusta,259.0,Oman,130071.0,Al Wusta,57.75,21.25,OMN,2899.0,Al Wusta,259.0,Oman,130071.0,Al Wusta,both,identical +160317,58.25,21.25,OMN,2900.0,Ash Sharqiyah North,259.0,Oman,130075.0,Biddiya,58.25,21.25,OMN,2900.0,Ash Sharqiyah North,259.0,Oman,130075.0,Biddiya,both,identical +160318,58.75,21.25,OMN,2900.0,Ash Sharqiyah North,259.0,Oman,130075.0,Biddiya,58.75,21.25,OMN,2900.0,Ash Sharqiyah North,259.0,Oman,130075.0,Biddiya,both,identical +160319,59.25,21.25,OMN,2901.0,Ash Sharqiyah South,259.0,Oman,130077.0,Jalan Bani,59.25,21.25,OMN,2901.0,Ash Sharqiyah South,259.0,Oman,130077.0,Jalan Bani,both,identical +160887,-16.75,21.75,MAR,,,,,,,-16.75,21.75,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +160888,-16.25,21.75,MAR,,,,,,,-16.25,21.75,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +160889,-15.75,21.75,MAR,,,,,,,-15.75,21.75,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +160890,-15.25,21.75,MAR,,,,,,,-15.25,21.75,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +160891,-14.75,21.75,MAR,,,,,,,-14.75,21.75,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +160892,-14.25,21.75,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,-14.25,21.75,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,identical +160893,-13.75,21.75,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,-13.75,21.75,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,identical +160894,-13.25,21.75,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,-13.25,21.75,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,identical +160895,-12.75,21.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,-12.75,21.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,both,identical +160896,-12.25,21.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,-12.25,21.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,both,identical +160897,-11.75,21.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,-11.75,21.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,both,identical +160898,-11.25,21.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,-11.25,21.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,both,identical +160899,-10.75,21.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,-10.75,21.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,both,identical +160900,-10.25,21.75,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,-10.25,21.75,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,both,identical +160901,-9.75,21.75,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,-9.75,21.75,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,both,identical +160902,-9.25,21.75,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,-9.25,21.75,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,both,identical +160903,-8.75,21.75,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,-8.75,21.75,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,both,identical +160904,-8.25,21.75,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,-8.25,21.75,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,both,identical +160905,-7.75,21.75,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,-7.75,21.75,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,both,identical +160906,-7.25,21.75,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,-7.25,21.75,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,both,identical +160907,-6.75,21.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,-6.75,21.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,both,identical +160908,-6.25,21.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,-6.25,21.75,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,both,identical +160909,-5.75,21.75,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,-5.75,21.75,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,both,identical +160910,-5.25,21.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-5.25,21.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +160911,-4.75,21.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-4.75,21.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +160912,-4.25,21.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-4.25,21.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +160913,-3.75,21.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-3.75,21.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +160914,-3.25,21.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-3.25,21.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +160915,-2.75,21.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-2.75,21.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +160916,-2.25,21.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-2.25,21.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +160917,-1.75,21.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-1.75,21.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +160918,-1.25,21.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-1.25,21.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +160919,-0.75,21.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-0.75,21.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +160920,-0.25,21.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-0.25,21.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +160921,0.25,21.75,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,0.25,21.75,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,both,identical +160922,0.75,21.75,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,0.75,21.75,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,both,identical +160923,1.25,21.75,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,1.25,21.75,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,both,identical +160924,1.75,21.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101290.0,Abalessa,1.75,21.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101290.0,Abalessa,both,identical +160925,2.25,21.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101299.0,Tin Zaouatine,2.25,21.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101299.0,Tin Zaouatine,both,identical +160926,2.75,21.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101299.0,Tin Zaouatine,2.75,21.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101299.0,Tin Zaouatine,both,identical +160927,3.25,21.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101290.0,Abalessa,3.25,21.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101290.0,Abalessa,both,identical +160928,3.75,21.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101290.0,Abalessa,3.75,21.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101290.0,Abalessa,both,identical +160929,4.25,21.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101290.0,Abalessa,4.25,21.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101290.0,Abalessa,both,identical +160930,4.75,21.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101290.0,Abalessa,4.75,21.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101290.0,Abalessa,both,identical +160931,5.25,21.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101297.0,Tamanrasset,5.25,21.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101297.0,Tamanrasset,both,identical +160932,5.75,21.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101297.0,Tamanrasset,5.75,21.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101297.0,Tamanrasset,both,identical +160933,6.25,21.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101297.0,Tamanrasset,6.25,21.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101297.0,Tamanrasset,both,identical +160934,6.75,21.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101298.0,Tazrouk,6.75,21.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101298.0,Tazrouk,both,identical +160935,7.25,21.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101298.0,Tazrouk,7.25,21.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101298.0,Tazrouk,both,identical +160936,7.75,21.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101298.0,Tazrouk,7.75,21.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101298.0,Tazrouk,both,identical +160937,8.25,21.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101298.0,Tazrouk,8.25,21.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101298.0,Tazrouk,both,identical +160938,8.75,21.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101298.0,Tazrouk,8.75,21.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101298.0,Tazrouk,both,identical +160939,9.25,21.75,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,9.25,21.75,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,both,identical +160940,9.75,21.75,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,9.75,21.75,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,both,identical +160941,10.25,21.75,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,10.25,21.75,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,both,identical +160942,10.75,21.75,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,10.75,21.75,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,both,identical +160943,11.25,21.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,11.25,21.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +160944,11.75,21.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,11.75,21.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +160945,12.25,21.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,12.25,21.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +160946,12.75,21.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,12.75,21.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +160947,13.25,21.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,13.25,21.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +160948,13.75,21.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,13.75,21.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +160949,14.25,21.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,14.25,21.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +160950,14.75,21.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,14.75,21.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +160951,15.25,21.75,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,15.25,21.75,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,both,identical +160952,15.75,21.75,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,15.75,21.75,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,both,identical +160953,16.25,21.75,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,16.25,21.75,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,both,identical +160954,16.75,21.75,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,16.75,21.75,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,both,identical +160955,17.25,21.75,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,17.25,21.75,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,both,identical +160956,17.75,21.75,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,17.75,21.75,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,both,identical +160957,18.25,21.75,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,18.25,21.75,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,both,identical +160958,18.75,21.75,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,18.75,21.75,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,both,identical +160959,19.25,21.75,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,19.25,21.75,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,both,identical +160960,19.75,21.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,19.75,21.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +160961,20.25,21.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,20.25,21.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +160962,20.75,21.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,20.75,21.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +160963,21.25,21.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,21.25,21.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +160964,21.75,21.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,21.75,21.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +160965,22.25,21.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,22.25,21.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +160966,22.75,21.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,22.75,21.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +160967,23.25,21.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,23.25,21.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +160968,23.75,21.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,23.75,21.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +160969,24.25,21.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,24.25,21.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +160970,24.75,21.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,24.75,21.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +160971,25.25,21.75,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,25.25,21.75,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,both,identical +160972,25.75,21.75,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,25.75,21.75,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,both,identical +160973,26.25,21.75,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,26.25,21.75,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,both,identical +160974,26.75,21.75,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,26.75,21.75,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,both,identical +160975,27.25,21.75,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,27.25,21.75,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,both,identical +160976,27.75,21.75,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,27.75,21.75,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,both,identical +160977,28.25,21.75,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,28.25,21.75,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,both,identical +160978,28.75,21.75,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,28.75,21.75,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,both,identical +160979,29.25,21.75,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,29.25,21.75,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,both,identical +160980,29.75,21.75,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,29.75,21.75,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,both,identical +160981,30.25,21.75,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,30.25,21.75,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,both,identical +160982,30.75,21.75,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,30.75,21.75,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,both,identical +160983,31.25,21.75,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,31.25,21.75,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,both,identical +160984,31.75,21.75,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,31.75,21.75,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,both,identical +160985,32.25,21.75,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,32.25,21.75,SDN,1636.0,Northern,161.0,Sudan,105832.0,Halfa,both,identical +160986,32.75,21.75,SDN,1638.0,River Nile,161.0,Sudan,105844.0,Abu Hamad,32.75,21.75,SDN,1638.0,River Nile,161.0,Sudan,105844.0,Abu Hamad,both,identical +160987,33.25,21.75,SDN,1638.0,River Nile,161.0,Sudan,105844.0,Abu Hamad,33.25,21.75,SDN,1638.0,River Nile,161.0,Sudan,105844.0,Abu Hamad,both,identical +160988,33.75,21.75,-99,,,,,,,33.75,21.75,xMS,1132.0,Administrative Unit Not Available,110.0,Bīr Ṭawīl,101984.0,Administrative Unit Not Available,both,country_reassignment +160989,34.25,21.75,SDN,1637.0,Red Sea,161.0,Sudan,105837.0,Hala'Ib,34.25,21.75,SDN,1637.0,Red Sea,161.0,Sudan,105837.0,Hala'Ib,both,identical +160990,34.75,21.75,SDN,1637.0,Red Sea,161.0,Sudan,105837.0,Hala'Ib,34.75,21.75,SDN,1637.0,Red Sea,161.0,Sudan,105837.0,Hala'Ib,both,identical +160991,35.25,21.75,SDN,1637.0,Red Sea,161.0,Sudan,105839.0,Jubayt Elma'Aadin,35.25,21.75,SDN,1637.0,Red Sea,161.0,Sudan,105839.0,Jubayt Elma'Aadin,both,identical +160992,35.75,21.75,SDN,1637.0,Red Sea,161.0,Sudan,105839.0,Jubayt Elma'Aadin,35.75,21.75,SDN,1637.0,Red Sea,161.0,Sudan,105839.0,Jubayt Elma'Aadin,both,identical +160993,36.25,21.75,SDN,1637.0,Red Sea,161.0,Sudan,105837.0,Hala'Ib,36.25,21.75,SDN,1637.0,Red Sea,161.0,Sudan,105837.0,Hala'Ib,both,identical +160994,36.75,21.75,SDN,1637.0,Red Sea,161.0,Sudan,105837.0,Hala'Ib,36.75,21.75,SDN,1637.0,Red Sea,161.0,Sudan,105837.0,Hala'Ib,both,identical +160998,38.75,21.75,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130560.0,Jiddah,38.75,21.75,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130560.0,Jiddah,both,identical +160999,39.25,21.75,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130560.0,Jiddah,39.25,21.75,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130560.0,Jiddah,both,identical +161000,39.75,21.75,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130561.0,Khulays,39.75,21.75,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130561.0,Khulays,both,identical +161001,40.25,21.75,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130561.0,Khulays,40.25,21.75,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130561.0,Khulays,both,identical +161002,40.75,21.75,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130558.0,Al Taif,40.75,21.75,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130558.0,Al Taif,both,identical +161003,41.25,21.75,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130556.0,Al Muwayh,41.25,21.75,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130556.0,Al Muwayh,both,identical +161004,41.75,21.75,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130554.0,Al Khurmah,41.75,21.75,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130554.0,Al Khurmah,both,identical +161005,42.25,21.75,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130554.0,Al Khurmah,42.25,21.75,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130554.0,Al Khurmah,both,identical +161006,42.75,21.75,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130554.0,Al Khurmah,42.75,21.75,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130554.0,Al Khurmah,both,identical +161007,43.25,21.75,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130565.0,Ranyah,43.25,21.75,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130565.0,Ranyah,both,identical +161008,43.75,21.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130496.0,Wadi Ad Dawasir,43.75,21.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130496.0,Wadi Ad Dawasir,both,identical +161009,44.25,21.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130496.0,Wadi Ad Dawasir,44.25,21.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130496.0,Wadi Ad Dawasir,both,identical +161010,44.75,21.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130496.0,Wadi Ad Dawasir,44.75,21.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130496.0,Wadi Ad Dawasir,both,identical +161011,45.25,21.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130496.0,Wadi Ad Dawasir,45.25,21.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130496.0,Wadi Ad Dawasir,both,identical +161012,45.75,21.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130478.0,Al Aflaj,45.75,21.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130478.0,Al Aflaj,both,identical +161013,46.25,21.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130478.0,Al Aflaj,46.25,21.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130478.0,Al Aflaj,both,identical +161014,46.75,21.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130478.0,Al Aflaj,46.75,21.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130478.0,Al Aflaj,both,identical +161015,47.25,21.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130478.0,Al Aflaj,47.25,21.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130478.0,Al Aflaj,both,identical +161016,47.75,21.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130478.0,Al Aflaj,47.75,21.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130478.0,Al Aflaj,both,identical +161017,48.25,21.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,48.25,21.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +161018,48.75,21.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,48.75,21.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +161019,49.25,21.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,49.25,21.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +161020,49.75,21.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,49.75,21.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +161021,50.25,21.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,50.25,21.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +161022,50.75,21.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,50.75,21.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +161023,51.25,21.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,51.25,21.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +161024,51.75,21.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,51.75,21.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,both,identical +161025,52.25,21.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,52.25,21.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,both,identical +161026,52.75,21.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,52.75,21.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,both,identical +161027,53.25,21.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,53.25,21.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,both,identical +161028,53.75,21.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,53.75,21.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,both,identical +161029,54.25,21.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,54.25,21.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,both,identical +161030,54.75,21.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,54.75,21.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,both,identical +161031,55.25,21.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,55.25,21.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,both,identical +161032,55.75,21.75,OMN,2899.0,Al Wusta,259.0,Oman,130071.0,Al Wusta,55.75,21.75,OMN,2899.0,Al Wusta,259.0,Oman,130071.0,Al Wusta,both,identical +161033,56.25,21.75,OMN,2899.0,Al Wusta,259.0,Oman,130071.0,Al Wusta,56.25,21.75,OMN,2899.0,Al Wusta,259.0,Oman,130071.0,Al Wusta,both,identical +161034,56.75,21.75,OMN,2899.0,Al Wusta,259.0,Oman,130071.0,Al Wusta,56.75,21.75,OMN,2899.0,Al Wusta,259.0,Oman,130071.0,Al Wusta,both,identical +161035,57.25,21.75,OMN,2894.0,Ad Dakhliyah,259.0,Oman,130047.0,Adam,57.25,21.75,OMN,2894.0,Ad Dakhliyah,259.0,Oman,130047.0,Adam,both,identical +161036,57.75,21.75,OMN,2894.0,Ad Dakhliyah,259.0,Oman,130047.0,Adam,57.75,21.75,OMN,2894.0,Ad Dakhliyah,259.0,Oman,130047.0,Adam,both,identical +161037,58.25,21.75,OMN,2900.0,Ash Sharqiyah North,259.0,Oman,130072.0,Al Mudhaibi,58.25,21.75,OMN,2900.0,Ash Sharqiyah North,259.0,Oman,130072.0,Al Mudhaibi,both,identical +161038,58.75,21.75,OMN,2900.0,Ash Sharqiyah North,259.0,Oman,130075.0,Biddiya,58.75,21.75,OMN,2900.0,Ash Sharqiyah North,259.0,Oman,130075.0,Biddiya,both,identical +161039,59.25,21.75,OMN,2901.0,Ash Sharqiyah South,259.0,Oman,130077.0,Jalan Bani,59.25,21.75,OMN,2901.0,Ash Sharqiyah South,259.0,Oman,130077.0,Jalan Bani,both,identical +161040,59.75,21.75,OMN,2901.0,Ash Sharqiyah South,259.0,Oman,130077.0,Jalan Bani,59.75,21.75,OMN,2901.0,Ash Sharqiyah South,259.0,Oman,130077.0,Jalan Bani,both,identical +161607,-16.75,22.25,MAR,,,,,,,-16.75,22.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +161608,-16.25,22.25,MAR,,,,,,,-16.25,22.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +161609,-15.75,22.25,MAR,,,,,,,-15.75,22.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +161610,-15.25,22.25,MAR,,,,,,,-15.25,22.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +161611,-14.75,22.25,MAR,,,,,,,-14.75,22.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +161612,-14.25,22.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,-14.25,22.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,identical +161613,-13.75,22.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,-13.75,22.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,identical +161614,-13.25,22.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,-13.25,22.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,identical +161615,-12.75,22.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,-12.75,22.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,both,identical +161616,-12.25,22.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,-12.25,22.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,both,identical +161617,-11.75,22.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,-11.75,22.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,both,identical +161618,-11.25,22.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,-11.25,22.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,both,identical +161619,-10.75,22.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,-10.75,22.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,both,identical +161620,-10.25,22.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,-10.25,22.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,both,identical +161621,-9.75,22.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,-9.75,22.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,both,identical +161622,-9.25,22.25,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,-9.25,22.25,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,both,identical +161623,-8.75,22.25,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,-8.75,22.25,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,both,identical +161624,-8.25,22.25,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,-8.25,22.25,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,both,identical +161625,-7.75,22.25,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,-7.75,22.25,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,both,identical +161626,-7.25,22.25,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,-7.25,22.25,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,both,identical +161627,-6.75,22.25,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,-6.75,22.25,MRT,1452.0,Hodh Ech Chargi,144.0,Mauritania,104192.0,Oualata,both,identical +161628,-6.25,22.25,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,-6.25,22.25,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,both,identical +161629,-5.75,22.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-5.75,22.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +161630,-5.25,22.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-5.25,22.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +161631,-4.75,22.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-4.75,22.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +161632,-4.25,22.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-4.25,22.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +161633,-3.75,22.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-3.75,22.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +161634,-3.25,22.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-3.25,22.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +161635,-2.75,22.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-2.75,22.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +161636,-2.25,22.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-2.25,22.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +161637,-1.75,22.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-1.75,22.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +161638,-1.25,22.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-1.25,22.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +161639,-0.75,22.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-0.75,22.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +161640,-0.25,22.25,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,-0.25,22.25,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,both,identical +161641,0.25,22.25,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,0.25,22.25,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,both,identical +161642,0.75,22.25,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,0.75,22.25,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,both,identical +161643,1.25,22.25,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,1.25,22.25,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,both,identical +161644,1.75,22.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101290.0,Abalessa,1.75,22.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101290.0,Abalessa,both,identical +161645,2.25,22.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101290.0,Abalessa,2.25,22.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101290.0,Abalessa,both,identical +161646,2.75,22.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101290.0,Abalessa,2.75,22.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101290.0,Abalessa,both,identical +161647,3.25,22.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101290.0,Abalessa,3.25,22.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101290.0,Abalessa,both,identical +161648,3.75,22.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101290.0,Abalessa,3.75,22.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101290.0,Abalessa,both,identical +161649,4.25,22.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101290.0,Abalessa,4.25,22.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101290.0,Abalessa,both,identical +161650,4.75,22.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101290.0,Abalessa,4.75,22.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101290.0,Abalessa,both,identical +161651,5.25,22.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101297.0,Tamanrasset,5.25,22.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101297.0,Tamanrasset,both,identical +161652,5.75,22.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101297.0,Tamanrasset,5.75,22.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101297.0,Tamanrasset,both,identical +161653,6.25,22.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101297.0,Tamanrasset,6.25,22.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101297.0,Tamanrasset,both,identical +161654,6.75,22.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101298.0,Tazrouk,6.75,22.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101298.0,Tazrouk,both,identical +161655,7.25,22.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101298.0,Tazrouk,7.25,22.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101298.0,Tazrouk,both,identical +161656,7.75,22.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101298.0,Tazrouk,7.75,22.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101298.0,Tazrouk,both,identical +161657,8.25,22.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101298.0,Tazrouk,8.25,22.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101298.0,Tazrouk,both,identical +161658,8.75,22.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101298.0,Tazrouk,8.75,22.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101298.0,Tazrouk,both,identical +161659,9.25,22.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101298.0,Tazrouk,9.25,22.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101298.0,Tazrouk,both,identical +161660,9.75,22.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101298.0,Tazrouk,9.75,22.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101298.0,Tazrouk,both,identical +161661,10.25,22.25,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,10.25,22.25,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,both,identical +161662,10.75,22.25,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,10.75,22.25,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,both,identical +161663,11.25,22.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,11.25,22.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +161664,11.75,22.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,11.75,22.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +161665,12.25,22.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,12.25,22.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +161666,12.75,22.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,12.75,22.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +161667,13.25,22.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,13.25,22.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +161668,13.75,22.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,13.75,22.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +161669,14.25,22.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,14.25,22.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +161670,14.75,22.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,14.75,22.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +161671,15.25,22.25,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,15.25,22.25,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,both,identical +161672,15.75,22.25,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,15.75,22.25,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,both,identical +161673,16.25,22.25,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,16.25,22.25,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,both,identical +161674,16.75,22.25,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,16.75,22.25,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,both,identical +161675,17.25,22.25,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,17.25,22.25,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,both,identical +161676,17.75,22.25,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,17.75,22.25,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,both,identical +161677,18.25,22.25,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,18.25,22.25,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,both,identical +161678,18.75,22.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,18.75,22.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +161679,19.25,22.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,19.25,22.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +161680,19.75,22.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,19.75,22.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +161681,20.25,22.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,20.25,22.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +161682,20.75,22.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,20.75,22.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +161683,21.25,22.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,21.25,22.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +161684,21.75,22.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,21.75,22.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +161685,22.25,22.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,22.25,22.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +161686,22.75,22.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,22.75,22.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +161687,23.25,22.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,23.25,22.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +161688,23.75,22.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,23.75,22.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +161689,24.25,22.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,24.25,22.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +161690,24.75,22.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,24.75,22.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +161691,25.25,22.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,25.25,22.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +161692,25.75,22.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,25.75,22.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +161693,26.25,22.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,26.25,22.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +161694,26.75,22.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,26.75,22.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +161695,27.25,22.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,27.25,22.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +161696,27.75,22.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,27.75,22.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +161697,28.25,22.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,28.25,22.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +161698,28.75,22.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,28.75,22.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +161699,29.25,22.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,29.25,22.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +161700,29.75,22.25,EGY,1263.0,New Valley,120.0,Egypt,102793.0,Paris Paris,29.75,22.25,EGY,1263.0,New Valley,120.0,Egypt,102793.0,Paris Paris,both,identical +161701,30.25,22.25,EGY,1263.0,New Valley,120.0,Egypt,102793.0,Paris Paris,30.25,22.25,EGY,1263.0,New Valley,120.0,Egypt,102793.0,Paris Paris,both,identical +161702,30.75,22.25,EGY,1263.0,New Valley,120.0,Egypt,102793.0,Paris Paris,30.75,22.25,EGY,1263.0,New Valley,120.0,Egypt,102793.0,Paris Paris,both,identical +161703,31.25,22.25,EGY,1247.0,Aswan,120.0,Egypt,102576.0,Zemam Out,31.25,22.25,EGY,1247.0,Aswan,120.0,Egypt,102576.0,Zemam Out,both,identical +161704,31.75,22.25,EGY,1247.0,Aswan,120.0,Egypt,102576.0,Zemam Out,31.75,22.25,EGY,1247.0,Aswan,120.0,Egypt,102576.0,Zemam Out,both,identical +161705,32.25,22.25,EGY,1247.0,Aswan,120.0,Egypt,102576.0,Zemam Out,32.25,22.25,EGY,1247.0,Aswan,120.0,Egypt,102576.0,Zemam Out,both,identical +161706,32.75,22.25,EGY,1247.0,Aswan,120.0,Egypt,102576.0,Zemam Out,32.75,22.25,EGY,1247.0,Aswan,120.0,Egypt,102576.0,Zemam Out,both,identical +161707,33.25,22.25,EGY,1247.0,Aswan,120.0,Egypt,102576.0,Zemam Out,33.25,22.25,EGY,1247.0,Aswan,120.0,Egypt,102576.0,Zemam Out,both,identical +161708,33.75,22.25,EGY,1267.0,Red Sea,120.0,Egypt,102837.0,Shallatin,33.75,22.25,EGY,1267.0,Red Sea,120.0,Egypt,102837.0,Shallatin,both,identical +161709,34.25,22.25,EGY,1267.0,Red Sea,120.0,Egypt,102837.0,Shallatin,34.25,22.25,EGY,1267.0,Red Sea,120.0,Egypt,102837.0,Shallatin,both,identical +161710,34.75,22.25,EGY,1267.0,Red Sea,120.0,Egypt,102837.0,Shallatin,34.75,22.25,xHT,1349.0,Administrative Unit Not Available,133.0,Hala'Ib Triangle,103524.0,Administrative Unit Not Available,both,country_reassignment +161711,35.25,22.25,EGY,,,,,,,35.25,22.25,xHT,1349.0,Administrative Unit Not Available,133.0,Hala'Ib Triangle,103524.0,Administrative Unit Not Available,both,country_reassignment +161712,35.75,22.25,EGY,,,,,,,35.75,22.25,xHT,1349.0,Administrative Unit Not Available,133.0,Hala'Ib Triangle,103524.0,Administrative Unit Not Available,both,country_reassignment +161713,36.25,22.25,EGY,,,,,,,36.25,22.25,xHT,1349.0,Administrative Unit Not Available,133.0,Hala'Ib Triangle,103524.0,Administrative Unit Not Available,both,country_reassignment +161714,36.75,22.25,EGY,,,,,,,36.75,22.25,xHT,1349.0,Administrative Unit Not Available,133.0,Hala'Ib Triangle,103524.0,Administrative Unit Not Available,both,country_reassignment +161719,39.25,22.25,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130561.0,Khulays,39.25,22.25,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130561.0,Khulays,both,identical +161720,39.75,22.25,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130561.0,Khulays,39.75,22.25,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130561.0,Khulays,both,identical +161721,40.25,22.25,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130561.0,Khulays,40.25,22.25,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130561.0,Khulays,both,identical +161722,40.75,22.25,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130558.0,Al Taif,40.75,22.25,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130558.0,Al Taif,both,identical +161723,41.25,22.25,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130556.0,Al Muwayh,41.25,22.25,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130556.0,Al Muwayh,both,identical +161724,41.75,22.25,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130556.0,Al Muwayh,41.75,22.25,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130556.0,Al Muwayh,both,identical +161725,42.25,22.25,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130556.0,Al Muwayh,42.25,22.25,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130556.0,Al Muwayh,both,identical +161726,42.75,22.25,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130554.0,Al Khurmah,42.75,22.25,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130554.0,Al Khurmah,both,identical +161727,43.25,22.25,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130554.0,Al Khurmah,43.25,22.25,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130554.0,Al Khurmah,both,identical +161728,43.75,22.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130484.0,Al Quwayiyah,43.75,22.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130484.0,Al Quwayiyah,both,identical +161729,44.25,22.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130484.0,Al Quwayiyah,44.25,22.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130484.0,Al Quwayiyah,both,identical +161730,44.75,22.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130496.0,Wadi Ad Dawasir,44.75,22.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130496.0,Wadi Ad Dawasir,both,identical +161731,45.25,22.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130496.0,Wadi Ad Dawasir,45.25,22.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130496.0,Wadi Ad Dawasir,both,identical +161732,45.75,22.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130478.0,Al Aflaj,45.75,22.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130478.0,Al Aflaj,both,identical +161733,46.25,22.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130478.0,Al Aflaj,46.25,22.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130478.0,Al Aflaj,both,identical +161734,46.75,22.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130478.0,Al Aflaj,46.75,22.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130478.0,Al Aflaj,both,identical +161735,47.25,22.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130478.0,Al Aflaj,47.25,22.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130478.0,Al Aflaj,both,identical +161736,47.75,22.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130478.0,Al Aflaj,47.75,22.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130478.0,Al Aflaj,both,identical +161737,48.25,22.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,48.25,22.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +161738,48.75,22.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,48.75,22.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +161739,49.25,22.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,49.25,22.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +161740,49.75,22.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,49.75,22.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +161741,50.25,22.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,50.25,22.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +161742,50.75,22.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,50.75,22.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +161743,51.25,22.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,51.25,22.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +161744,51.75,22.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,51.75,22.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,both,identical +161745,52.25,22.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,52.25,22.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,both,identical +161746,52.75,22.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,52.75,22.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,both,identical +161747,53.25,22.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,53.25,22.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,both,identical +161748,53.75,22.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,53.75,22.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,both,identical +161749,54.25,22.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,54.25,22.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,both,identical +161750,54.75,22.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,54.75,22.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,both,identical +161751,55.25,22.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,55.25,22.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,both,identical +161752,55.75,22.25,OMN,2898.0,Al Dhahira,259.0,Oman,130069.0,Ibri,55.75,22.25,OMN,2898.0,Al Dhahira,259.0,Oman,130069.0,Ibri,both,identical +161753,56.25,22.25,OMN,2898.0,Al Dhahira,259.0,Oman,130069.0,Ibri,56.25,22.25,OMN,2898.0,Al Dhahira,259.0,Oman,130069.0,Ibri,both,identical +161754,56.75,22.25,OMN,2894.0,Ad Dakhliyah,259.0,Oman,130047.0,Adam,56.75,22.25,OMN,2894.0,Ad Dakhliyah,259.0,Oman,130047.0,Adam,both,identical +161755,57.25,22.25,OMN,2894.0,Ad Dakhliyah,259.0,Oman,130047.0,Adam,57.25,22.25,OMN,2894.0,Ad Dakhliyah,259.0,Oman,130047.0,Adam,both,identical +161756,57.75,22.25,OMN,2894.0,Ad Dakhliyah,259.0,Oman,130047.0,Adam,57.75,22.25,OMN,2894.0,Ad Dakhliyah,259.0,Oman,130047.0,Adam,both,identical +161757,58.25,22.25,OMN,2900.0,Ash Sharqiyah North,259.0,Oman,130072.0,Al Mudhaibi,58.25,22.25,OMN,2900.0,Ash Sharqiyah North,259.0,Oman,130072.0,Al Mudhaibi,both,identical +161758,58.75,22.25,OMN,2900.0,Ash Sharqiyah North,259.0,Oman,130075.0,Biddiya,58.75,22.25,OMN,2900.0,Ash Sharqiyah North,259.0,Oman,130075.0,Biddiya,both,identical +161759,59.25,22.25,OMN,2900.0,Ash Sharqiyah North,259.0,Oman,130073.0,Al Qabil,59.25,22.25,OMN,2900.0,Ash Sharqiyah North,259.0,Oman,130073.0,Al Qabil,both,identical +161760,59.75,22.25,OMN,2901.0,Ash Sharqiyah South,259.0,Oman,130077.0,Jalan Bani,59.75,22.25,OMN,2901.0,Ash Sharqiyah South,259.0,Oman,130077.0,Jalan Bani,both,identical +162328,-16.25,22.75,MAR,,,,,,,-16.25,22.75,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +162329,-15.75,22.75,MAR,,,,,,,-15.75,22.75,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +162330,-15.25,22.75,MAR,,,,,,,-15.25,22.75,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +162331,-14.75,22.75,MAR,,,,,,,-14.75,22.75,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +162332,-14.25,22.75,MAR,,,,,,,-14.25,22.75,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +162333,-13.75,22.75,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,-13.75,22.75,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,identical +162334,-13.25,22.75,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,-13.25,22.75,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,identical +162335,-12.75,22.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,-12.75,22.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,both,identical +162336,-12.25,22.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,-12.25,22.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,both,identical +162337,-11.75,22.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,-11.75,22.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,both,identical +162338,-11.25,22.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,-11.25,22.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,both,identical +162339,-10.75,22.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,-10.75,22.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,both,identical +162340,-10.25,22.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,-10.25,22.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,both,identical +162341,-9.75,22.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,-9.75,22.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,both,identical +162342,-9.25,22.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,-9.25,22.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,both,identical +162343,-8.75,22.75,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,-8.75,22.75,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,both,identical +162344,-8.25,22.75,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,-8.25,22.75,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,both,identical +162345,-7.75,22.75,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,-7.75,22.75,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,both,identical +162346,-7.25,22.75,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,-7.25,22.75,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,both,identical +162347,-6.75,22.75,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,-6.75,22.75,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,both,identical +162348,-6.25,22.75,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,-6.25,22.75,MLI,1445.0,Tombouctou,143.0,Mali,104156.0,Goundam,both,identical +162349,-5.75,22.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-5.75,22.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +162350,-5.25,22.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-5.25,22.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +162351,-4.75,22.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-4.75,22.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +162352,-4.25,22.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-4.25,22.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +162353,-3.75,22.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-3.75,22.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +162354,-3.25,22.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-3.25,22.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +162355,-2.75,22.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-2.75,22.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +162356,-2.25,22.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-2.25,22.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +162357,-1.75,22.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-1.75,22.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +162358,-1.25,22.75,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,-1.25,22.75,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,both,identical +162359,-0.75,22.75,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,-0.75,22.75,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,both,identical +162360,-0.25,22.75,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,-0.25,22.75,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,both,identical +162361,0.25,22.75,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,0.25,22.75,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,both,identical +162362,0.75,22.75,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,0.75,22.75,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,both,identical +162363,1.25,22.75,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,1.25,22.75,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,both,identical +162364,1.75,22.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101290.0,Abalessa,1.75,22.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101290.0,Abalessa,both,identical +162365,2.25,22.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101290.0,Abalessa,2.25,22.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101290.0,Abalessa,both,identical +162366,2.75,22.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101290.0,Abalessa,2.75,22.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101290.0,Abalessa,both,identical +162367,3.25,22.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101290.0,Abalessa,3.25,22.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101290.0,Abalessa,both,identical +162368,3.75,22.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101290.0,Abalessa,3.75,22.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101290.0,Abalessa,both,identical +162369,4.25,22.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101290.0,Abalessa,4.25,22.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101290.0,Abalessa,both,identical +162370,4.75,22.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101290.0,Abalessa,4.75,22.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101290.0,Abalessa,both,identical +162371,5.25,22.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101297.0,Tamanrasset,5.25,22.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101297.0,Tamanrasset,both,identical +162372,5.75,22.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101297.0,Tamanrasset,5.75,22.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101297.0,Tamanrasset,both,identical +162373,6.25,22.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101298.0,Tazrouk,6.25,22.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101298.0,Tazrouk,both,identical +162374,6.75,22.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101298.0,Tazrouk,6.75,22.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101298.0,Tazrouk,both,identical +162375,7.25,22.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101298.0,Tazrouk,7.25,22.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101298.0,Tazrouk,both,identical +162376,7.75,22.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101298.0,Tazrouk,7.75,22.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101298.0,Tazrouk,both,identical +162377,8.25,22.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101298.0,Tazrouk,8.25,22.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101298.0,Tazrouk,both,identical +162378,8.75,22.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101298.0,Tazrouk,8.75,22.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101298.0,Tazrouk,both,identical +162379,9.25,22.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101298.0,Tazrouk,9.25,22.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101298.0,Tazrouk,both,identical +162380,9.75,22.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101298.0,Tazrouk,9.75,22.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101298.0,Tazrouk,both,identical +162381,10.25,22.75,DZA,1022.0,Illizi,101.0,Algeria,100674.0,Djanet,10.25,22.75,DZA,1022.0,Illizi,101.0,Algeria,100674.0,Djanet,both,identical +162382,10.75,22.75,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,10.75,22.75,NER,1509.0,Agadez,150.0,Niger,104570.0,Iférouane,both,identical +162383,11.25,22.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,11.25,22.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +162384,11.75,22.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,11.75,22.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +162385,12.25,22.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,12.25,22.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +162386,12.75,22.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,12.75,22.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +162387,13.25,22.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,13.25,22.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +162388,13.75,22.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,13.75,22.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +162389,14.25,22.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,14.25,22.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +162390,14.75,22.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,14.75,22.75,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +162391,15.25,22.75,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,15.25,22.75,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,both,identical +162392,15.75,22.75,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,15.75,22.75,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,both,identical +162393,16.25,22.75,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,16.25,22.75,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,both,identical +162394,16.75,22.75,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,16.75,22.75,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,both,identical +162395,17.25,22.75,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,17.25,22.75,TCD,1181.0,Tibesti,114.0,Chad,102146.0,Tibesti Est,both,identical +162396,17.75,22.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,17.75,22.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +162397,18.25,22.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,18.25,22.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +162398,18.75,22.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,18.75,22.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +162399,19.25,22.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,19.25,22.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +162400,19.75,22.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,19.75,22.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +162401,20.25,22.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,20.25,22.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +162402,20.75,22.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,20.75,22.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +162403,21.25,22.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,21.25,22.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +162404,21.75,22.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,21.75,22.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +162405,22.25,22.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,22.25,22.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +162406,22.75,22.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,22.75,22.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +162407,23.25,22.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,23.25,22.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +162408,23.75,22.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,23.75,22.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +162409,24.25,22.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,24.25,22.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +162410,24.75,22.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,24.75,22.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +162411,25.25,22.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,25.25,22.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +162412,25.75,22.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,25.75,22.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +162413,26.25,22.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,26.25,22.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +162414,26.75,22.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,26.75,22.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +162415,27.25,22.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,27.25,22.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +162416,27.75,22.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,27.75,22.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +162417,28.25,22.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,28.25,22.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +162418,28.75,22.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,28.75,22.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +162419,29.25,22.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,29.25,22.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +162420,29.75,22.75,EGY,1263.0,New Valley,120.0,Egypt,102793.0,Paris Paris,29.75,22.75,EGY,1263.0,New Valley,120.0,Egypt,102793.0,Paris Paris,both,identical +162421,30.25,22.75,EGY,1263.0,New Valley,120.0,Egypt,102793.0,Paris Paris,30.25,22.75,EGY,1263.0,New Valley,120.0,Egypt,102793.0,Paris Paris,both,identical +162422,30.75,22.75,EGY,1263.0,New Valley,120.0,Egypt,102793.0,Paris Paris,30.75,22.75,EGY,1263.0,New Valley,120.0,Egypt,102793.0,Paris Paris,both,identical +162423,31.25,22.75,EGY,1263.0,New Valley,120.0,Egypt,102793.0,Paris Paris,31.25,22.75,EGY,1263.0,New Valley,120.0,Egypt,102793.0,Paris Paris,both,identical +162424,31.75,22.75,EGY,1247.0,Aswan,120.0,Egypt,102576.0,Zemam Out,31.75,22.75,EGY,1247.0,Aswan,120.0,Egypt,102576.0,Zemam Out,both,identical +162425,32.25,22.75,EGY,1247.0,Aswan,120.0,Egypt,102576.0,Zemam Out,32.25,22.75,EGY,1247.0,Aswan,120.0,Egypt,102576.0,Zemam Out,both,identical +162426,32.75,22.75,EGY,1247.0,Aswan,120.0,Egypt,102576.0,Zemam Out,32.75,22.75,EGY,1247.0,Aswan,120.0,Egypt,102576.0,Zemam Out,both,identical +162427,33.25,22.75,EGY,1247.0,Aswan,120.0,Egypt,102576.0,Zemam Out,33.25,22.75,EGY,1247.0,Aswan,120.0,Egypt,102576.0,Zemam Out,both,identical +162428,33.75,22.75,EGY,1267.0,Red Sea,120.0,Egypt,102837.0,Shallatin,33.75,22.75,EGY,1267.0,Red Sea,120.0,Egypt,102837.0,Shallatin,both,identical +162429,34.25,22.75,EGY,1267.0,Red Sea,120.0,Egypt,102837.0,Shallatin,34.25,22.75,EGY,1267.0,Red Sea,120.0,Egypt,102837.0,Shallatin,both,identical +162430,34.75,22.75,EGY,1267.0,Red Sea,120.0,Egypt,102837.0,Shallatin,34.75,22.75,EGY,1267.0,Red Sea,120.0,Egypt,102837.0,Shallatin,both,identical +162431,35.25,22.75,EGY,1267.0,Red Sea,120.0,Egypt,102837.0,Shallatin,35.25,22.75,xHT,1349.0,Administrative Unit Not Available,133.0,Hala'Ib Triangle,103524.0,Administrative Unit Not Available,both,country_reassignment +162432,35.75,22.75,EGY,,,,,,,35.75,22.75,xHT,1349.0,Administrative Unit Not Available,133.0,Hala'Ib Triangle,103524.0,Administrative Unit Not Available,both,country_reassignment +162433,36.25,22.75,EGY,,,,,,,36.25,22.75,xHT,1349.0,Administrative Unit Not Available,133.0,Hala'Ib Triangle,103524.0,Administrative Unit Not Available,both,country_reassignment +162438,38.75,22.75,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130564.0,Rabigh,38.75,22.75,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130564.0,Rabigh,both,identical +162439,39.25,22.75,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130564.0,Rabigh,39.25,22.75,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130564.0,Rabigh,both,identical +162440,39.75,22.75,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130564.0,Rabigh,39.75,22.75,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130564.0,Rabigh,both,identical +162441,40.25,22.75,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130456.0,Al Mahd,40.25,22.75,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130456.0,Al Mahd,both,identical +162442,40.75,22.75,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130456.0,Al Mahd,40.75,22.75,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130456.0,Al Mahd,both,identical +162443,41.25,22.75,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130556.0,Al Muwayh,41.25,22.75,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130556.0,Al Muwayh,both,identical +162444,41.75,22.75,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130556.0,Al Muwayh,41.75,22.75,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130556.0,Al Muwayh,both,identical +162445,42.25,22.75,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130556.0,Al Muwayh,42.25,22.75,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130556.0,Al Muwayh,both,identical +162446,42.75,22.75,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130556.0,Al Muwayh,42.75,22.75,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130556.0,Al Muwayh,both,identical +162447,43.25,22.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130477.0,Afif,43.25,22.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130477.0,Afif,both,identical +162448,43.75,22.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130484.0,Al Quwayiyah,43.75,22.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130484.0,Al Quwayiyah,both,identical +162449,44.25,22.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130484.0,Al Quwayiyah,44.25,22.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130484.0,Al Quwayiyah,both,identical +162450,44.75,22.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130485.0,Ar Rayn,44.75,22.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130485.0,Ar Rayn,both,identical +162451,45.25,22.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130485.0,Ar Rayn,45.25,22.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130485.0,Ar Rayn,both,identical +162452,45.75,22.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130478.0,Al Aflaj,45.75,22.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130478.0,Al Aflaj,both,identical +162453,46.25,22.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130478.0,Al Aflaj,46.25,22.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130478.0,Al Aflaj,both,identical +162454,46.75,22.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130478.0,Al Aflaj,46.75,22.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130478.0,Al Aflaj,both,identical +162455,47.25,22.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130478.0,Al Aflaj,47.25,22.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130478.0,Al Aflaj,both,identical +162456,47.75,22.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130478.0,Al Aflaj,47.75,22.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130478.0,Al Aflaj,both,identical +162457,48.25,22.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,48.25,22.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +162458,48.75,22.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,48.75,22.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +162459,49.25,22.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,49.25,22.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +162460,49.75,22.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,49.75,22.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +162461,50.25,22.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,50.25,22.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +162462,50.75,22.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,50.75,22.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +162463,51.25,22.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,51.25,22.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,both,identical +162464,51.75,22.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,51.75,22.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,both,identical +162465,52.25,22.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,52.25,22.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,both,identical +162466,52.75,22.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,52.75,22.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,both,identical +162467,53.25,22.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,53.25,22.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,both,identical +162468,53.75,22.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,53.75,22.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,both,identical +162469,54.25,22.75,ARE,3184.0,Abu Dhabi,279.0,United Arab Emirates,132721.0,Administrative Unit Not Available,54.25,22.75,ARE,3184.0,Abu Dhabi,279.0,United Arab Emirates,132721.0,Administrative Unit Not Available,both,identical +162470,54.75,22.75,ARE,3184.0,Abu Dhabi,279.0,United Arab Emirates,132721.0,Administrative Unit Not Available,54.75,22.75,ARE,3184.0,Abu Dhabi,279.0,United Arab Emirates,132721.0,Administrative Unit Not Available,both,identical +162471,55.25,22.75,OMN,2898.0,Al Dhahira,259.0,Oman,130069.0,Ibri,55.25,22.75,OMN,2898.0,Al Dhahira,259.0,Oman,130069.0,Ibri,both,identical +162472,55.75,22.75,OMN,2898.0,Al Dhahira,259.0,Oman,130069.0,Ibri,55.75,22.75,OMN,2898.0,Al Dhahira,259.0,Oman,130069.0,Ibri,both,identical +162473,56.25,22.75,OMN,2898.0,Al Dhahira,259.0,Oman,130069.0,Ibri,56.25,22.75,OMN,2898.0,Al Dhahira,259.0,Oman,130069.0,Ibri,both,identical +162474,56.75,22.75,OMN,2894.0,Ad Dakhliyah,259.0,Oman,130049.0,Bahla,56.75,22.75,OMN,2894.0,Ad Dakhliyah,259.0,Oman,130049.0,Bahla,both,identical +162475,57.25,22.75,OMN,2894.0,Ad Dakhliyah,259.0,Oman,130049.0,Bahla,57.25,22.75,OMN,2894.0,Ad Dakhliyah,259.0,Oman,130049.0,Bahla,both,identical +162476,57.75,22.75,OMN,2894.0,Ad Dakhliyah,259.0,Oman,130052.0,Manah,57.75,22.75,OMN,2894.0,Ad Dakhliyah,259.0,Oman,130052.0,Manah,both,identical +162477,58.25,22.75,OMN,2900.0,Ash Sharqiyah North,259.0,Oman,130076.0,Ibra,58.25,22.75,OMN,2900.0,Ash Sharqiyah North,259.0,Oman,130076.0,Ibra,both,identical +162478,58.75,22.75,OMN,2900.0,Ash Sharqiyah North,259.0,Oman,130076.0,Ibra,58.75,22.75,OMN,2900.0,Ash Sharqiyah North,259.0,Oman,130076.0,Ibra,both,identical +162479,59.25,22.75,OMN,2900.0,Ash Sharqiyah North,259.0,Oman,130075.0,Biddiya,59.25,22.75,OMN,2900.0,Ash Sharqiyah North,259.0,Oman,130075.0,Biddiya,both,identical +162480,59.75,22.75,OMN,2901.0,Ash Sharqiyah South,259.0,Oman,130079.0,Sur,59.75,22.75,OMN,2901.0,Ash Sharqiyah South,259.0,Oman,130079.0,Sur,both,identical +163048,-16.25,23.25,MAR,,,,,,,-16.25,23.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +163049,-15.75,23.25,MAR,,,,,,,-15.75,23.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +163050,-15.25,23.25,MAR,,,,,,,-15.25,23.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +163051,-14.75,23.25,MAR,,,,,,,-14.75,23.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +163052,-14.25,23.25,MAR,,,,,,,-14.25,23.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +163053,-13.75,23.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,-13.75,23.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,identical +163054,-13.25,23.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,-13.25,23.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,identical +163055,-12.75,23.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,-12.75,23.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,identical +163056,-12.25,23.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,-12.25,23.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,both,identical +163057,-11.75,23.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,-11.75,23.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,both,identical +163058,-11.25,23.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,-11.25,23.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,both,identical +163059,-10.75,23.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,-10.75,23.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,both,identical +163060,-10.25,23.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,-10.25,23.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,both,identical +163061,-9.75,23.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,-9.75,23.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,both,identical +163062,-9.25,23.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,-9.25,23.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,both,identical +163063,-8.75,23.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,-8.75,23.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,both,identical +163064,-8.25,23.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,-8.25,23.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,both,identical +163065,-7.75,23.25,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,-7.75,23.25,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,both,identical +163066,-7.25,23.25,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,-7.25,23.25,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,both,identical +163067,-6.75,23.25,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,-6.75,23.25,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,both,identical +163068,-6.25,23.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-6.25,23.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +163069,-5.75,23.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-5.75,23.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +163070,-5.25,23.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-5.25,23.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +163071,-4.75,23.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-4.75,23.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +163072,-4.25,23.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-4.25,23.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +163073,-3.75,23.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-3.75,23.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +163074,-3.25,23.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-3.25,23.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +163075,-2.75,23.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-2.75,23.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +163076,-2.25,23.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-2.25,23.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +163077,-1.75,23.25,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,-1.75,23.25,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,both,identical +163078,-1.25,23.25,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,-1.25,23.25,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,both,identical +163079,-0.75,23.25,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,-0.75,23.25,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,both,identical +163080,-0.25,23.25,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,-0.25,23.25,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,both,identical +163081,0.25,23.25,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,0.25,23.25,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,both,identical +163082,0.75,23.25,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,0.75,23.25,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,both,identical +163083,1.25,23.25,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,1.25,23.25,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,both,identical +163084,1.75,23.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101290.0,Abalessa,1.75,23.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101290.0,Abalessa,both,identical +163085,2.25,23.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101290.0,Abalessa,2.25,23.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101290.0,Abalessa,both,identical +163086,2.75,23.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101290.0,Abalessa,2.75,23.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101290.0,Abalessa,both,identical +163087,3.25,23.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101290.0,Abalessa,3.25,23.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101290.0,Abalessa,both,identical +163088,3.75,23.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101290.0,Abalessa,3.75,23.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101290.0,Abalessa,both,identical +163089,4.25,23.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101290.0,Abalessa,4.25,23.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101290.0,Abalessa,both,identical +163090,4.75,23.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101290.0,Abalessa,4.75,23.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101290.0,Abalessa,both,identical +163091,5.25,23.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101297.0,Tamanrasset,5.25,23.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101297.0,Tamanrasset,both,identical +163092,5.75,23.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101297.0,Tamanrasset,5.75,23.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101297.0,Tamanrasset,both,identical +163093,6.25,23.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101298.0,Tazrouk,6.25,23.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101298.0,Tazrouk,both,identical +163094,6.75,23.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101298.0,Tazrouk,6.75,23.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101298.0,Tazrouk,both,identical +163095,7.25,23.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101298.0,Tazrouk,7.25,23.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101298.0,Tazrouk,both,identical +163096,7.75,23.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101298.0,Tazrouk,7.75,23.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101298.0,Tazrouk,both,identical +163097,8.25,23.25,DZA,1022.0,Illizi,101.0,Algeria,100674.0,Djanet,8.25,23.25,DZA,1022.0,Illizi,101.0,Algeria,100674.0,Djanet,both,identical +163098,8.75,23.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101298.0,Tazrouk,8.75,23.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101298.0,Tazrouk,both,identical +163099,9.25,23.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101298.0,Tazrouk,9.25,23.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101298.0,Tazrouk,both,identical +163100,9.75,23.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101298.0,Tazrouk,9.75,23.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101298.0,Tazrouk,both,identical +163101,10.25,23.25,DZA,1022.0,Illizi,101.0,Algeria,100674.0,Djanet,10.25,23.25,DZA,1022.0,Illizi,101.0,Algeria,100674.0,Djanet,both,identical +163102,10.75,23.25,DZA,1022.0,Illizi,101.0,Algeria,100674.0,Djanet,10.75,23.25,DZA,1022.0,Illizi,101.0,Algeria,100674.0,Djanet,both,identical +163103,11.25,23.25,DZA,1022.0,Illizi,101.0,Algeria,100674.0,Djanet,11.25,23.25,DZA,1022.0,Illizi,101.0,Algeria,100674.0,Djanet,both,identical +163104,11.75,23.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,11.75,23.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +163105,12.25,23.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,12.25,23.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +163106,12.75,23.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,12.75,23.25,NER,1509.0,Agadez,150.0,Niger,104569.0,Bilma,both,identical +163107,13.25,23.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,13.25,23.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +163108,13.75,23.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,13.75,23.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +163109,14.25,23.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,14.25,23.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +163110,14.75,23.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,14.75,23.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +163111,15.25,23.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,15.25,23.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +163112,15.75,23.25,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,15.75,23.25,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,both,identical +163113,16.25,23.25,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,16.25,23.25,TCD,1181.0,Tibesti,114.0,Chad,102147.0,Tibesti Ouest,both,identical +163114,16.75,23.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,16.75,23.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +163115,17.25,23.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,17.25,23.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +163116,17.75,23.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,17.75,23.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +163117,18.25,23.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,18.25,23.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +163118,18.75,23.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,18.75,23.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +163119,19.25,23.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,19.25,23.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +163120,19.75,23.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,19.75,23.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +163121,20.25,23.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,20.25,23.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +163122,20.75,23.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,20.75,23.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +163123,21.25,23.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,21.25,23.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +163124,21.75,23.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,21.75,23.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +163125,22.25,23.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,22.25,23.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +163126,22.75,23.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,22.75,23.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +163127,23.25,23.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,23.25,23.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +163128,23.75,23.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,23.75,23.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +163129,24.25,23.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,24.25,23.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +163130,24.75,23.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,24.75,23.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +163131,25.25,23.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,25.25,23.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +163132,25.75,23.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,25.75,23.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +163133,26.25,23.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,26.25,23.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +163134,26.75,23.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,26.75,23.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +163135,27.25,23.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,27.25,23.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +163136,27.75,23.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,27.75,23.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +163137,28.25,23.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,28.25,23.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +163138,28.75,23.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,28.75,23.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +163139,29.25,23.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,29.25,23.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +163140,29.75,23.25,EGY,1263.0,New Valley,120.0,Egypt,102793.0,Paris Paris,29.75,23.25,EGY,1263.0,New Valley,120.0,Egypt,102793.0,Paris Paris,both,identical +163141,30.25,23.25,EGY,1263.0,New Valley,120.0,Egypt,102793.0,Paris Paris,30.25,23.25,EGY,1263.0,New Valley,120.0,Egypt,102793.0,Paris Paris,both,identical +163142,30.75,23.25,EGY,1263.0,New Valley,120.0,Egypt,102793.0,Paris Paris,30.75,23.25,EGY,1263.0,New Valley,120.0,Egypt,102793.0,Paris Paris,both,identical +163143,31.25,23.25,EGY,1263.0,New Valley,120.0,Egypt,102793.0,Paris Paris,31.25,23.25,EGY,1263.0,New Valley,120.0,Egypt,102793.0,Paris Paris,both,identical +163144,31.75,23.25,EGY,1247.0,Aswan,120.0,Egypt,102576.0,Zemam Out,31.75,23.25,EGY,1247.0,Aswan,120.0,Egypt,102576.0,Zemam Out,both,identical +163145,32.25,23.25,EGY,1247.0,Aswan,120.0,Egypt,102576.0,Zemam Out,32.25,23.25,EGY,1247.0,Aswan,120.0,Egypt,102576.0,Zemam Out,both,identical +163146,32.75,23.25,EGY,1247.0,Aswan,120.0,Egypt,102576.0,Zemam Out,32.75,23.25,EGY,1247.0,Aswan,120.0,Egypt,102576.0,Zemam Out,both,identical +163147,33.25,23.25,EGY,1247.0,Aswan,120.0,Egypt,102576.0,Zemam Out,33.25,23.25,EGY,1247.0,Aswan,120.0,Egypt,102576.0,Zemam Out,both,identical +163148,33.75,23.25,EGY,1267.0,Red Sea,120.0,Egypt,102837.0,Shallatin,33.75,23.25,EGY,1267.0,Red Sea,120.0,Egypt,102837.0,Shallatin,both,identical +163149,34.25,23.25,EGY,1267.0,Red Sea,120.0,Egypt,102837.0,Shallatin,34.25,23.25,EGY,1267.0,Red Sea,120.0,Egypt,102837.0,Shallatin,both,identical +163150,34.75,23.25,EGY,1267.0,Red Sea,120.0,Egypt,102837.0,Shallatin,34.75,23.25,EGY,1267.0,Red Sea,120.0,Egypt,102837.0,Shallatin,both,identical +163151,35.25,23.25,EGY,1267.0,Red Sea,120.0,Egypt,102837.0,Shallatin,35.25,23.25,EGY,1267.0,Red Sea,120.0,Egypt,102837.0,Shallatin,both,identical +163152,35.75,23.25,EGY,1267.0,Red Sea,120.0,Egypt,102837.0,Shallatin,35.75,23.25,EGY,1267.0,Red Sea,120.0,Egypt,102837.0,Shallatin,both,identical +163158,38.75,23.25,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130564.0,Rabigh,38.75,23.25,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130564.0,Rabigh,both,identical +163159,39.25,23.25,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130460.0,Wadi Al Fara,39.25,23.25,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130460.0,Wadi Al Fara,both,identical +163160,39.75,23.25,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130460.0,Wadi Al Fara,39.75,23.25,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130460.0,Wadi Al Fara,both,identical +163161,40.25,23.25,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130456.0,Al Mahd,40.25,23.25,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130456.0,Al Mahd,both,identical +163162,40.75,23.25,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130456.0,Al Mahd,40.75,23.25,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130456.0,Al Mahd,both,identical +163163,41.25,23.25,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130456.0,Al Mahd,41.25,23.25,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130456.0,Al Mahd,both,identical +163164,41.75,23.25,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130556.0,Al Muwayh,41.75,23.25,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130556.0,Al Muwayh,both,identical +163165,42.25,23.25,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130556.0,Al Muwayh,42.25,23.25,SAU,2962.0,Makkah Al Mukarramah,266.0,Saudi Arabia,130556.0,Al Muwayh,both,identical +163166,42.75,23.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130477.0,Afif,42.75,23.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130477.0,Afif,both,identical +163167,43.25,23.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130477.0,Afif,43.25,23.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130477.0,Afif,both,identical +163168,43.75,23.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130484.0,Al Quwayiyah,43.75,23.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130484.0,Al Quwayiyah,both,identical +163169,44.25,23.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130484.0,Al Quwayiyah,44.25,23.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130484.0,Al Quwayiyah,both,identical +163170,44.75,23.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130484.0,Al Quwayiyah,44.75,23.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130484.0,Al Quwayiyah,both,identical +163171,45.25,23.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130485.0,Ar Rayn,45.25,23.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130485.0,Ar Rayn,both,identical +163172,45.75,23.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130485.0,Ar Rayn,45.75,23.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130485.0,Ar Rayn,both,identical +163173,46.25,23.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130490.0,Hawtat Bani Tamim,46.25,23.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130490.0,Hawtat Bani Tamim,both,identical +163174,46.75,23.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130490.0,Hawtat Bani Tamim,46.75,23.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130490.0,Hawtat Bani Tamim,both,identical +163175,47.25,23.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130490.0,Hawtat Bani Tamim,47.25,23.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130490.0,Hawtat Bani Tamim,both,identical +163176,47.75,23.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130481.0,Al Kharj,47.75,23.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130481.0,Al Kharj,both,identical +163177,48.25,23.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,48.25,23.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +163178,48.75,23.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,48.75,23.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +163179,49.25,23.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,49.25,23.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +163180,49.75,23.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,49.75,23.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +163181,50.25,23.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,50.25,23.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +163182,50.75,23.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,50.75,23.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,both,identical +163183,51.25,23.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,51.25,23.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,both,identical +163184,51.75,23.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,51.75,23.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,both,identical +163185,52.25,23.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,52.25,23.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,both,identical +163186,52.75,23.25,ARE,3184.0,Abu Dhabi,279.0,United Arab Emirates,132721.0,Administrative Unit Not Available,52.75,23.25,ARE,3184.0,Abu Dhabi,279.0,United Arab Emirates,132721.0,Administrative Unit Not Available,both,identical +163187,53.25,23.25,ARE,3184.0,Abu Dhabi,279.0,United Arab Emirates,132721.0,Administrative Unit Not Available,53.25,23.25,ARE,3184.0,Abu Dhabi,279.0,United Arab Emirates,132721.0,Administrative Unit Not Available,both,identical +163188,53.75,23.25,ARE,3184.0,Abu Dhabi,279.0,United Arab Emirates,132721.0,Administrative Unit Not Available,53.75,23.25,ARE,3184.0,Abu Dhabi,279.0,United Arab Emirates,132721.0,Administrative Unit Not Available,both,identical +163189,54.25,23.25,ARE,3184.0,Abu Dhabi,279.0,United Arab Emirates,132721.0,Administrative Unit Not Available,54.25,23.25,ARE,3184.0,Abu Dhabi,279.0,United Arab Emirates,132721.0,Administrative Unit Not Available,both,identical +163190,54.75,23.25,ARE,3184.0,Abu Dhabi,279.0,United Arab Emirates,132721.0,Administrative Unit Not Available,54.75,23.25,ARE,3184.0,Abu Dhabi,279.0,United Arab Emirates,132721.0,Administrative Unit Not Available,both,identical +163191,55.25,23.25,ARE,3184.0,Abu Dhabi,279.0,United Arab Emirates,132721.0,Administrative Unit Not Available,55.25,23.25,ARE,3184.0,Abu Dhabi,279.0,United Arab Emirates,132721.0,Administrative Unit Not Available,both,identical +163192,55.75,23.25,OMN,2898.0,Al Dhahira,259.0,Oman,130068.0,Dhank,55.75,23.25,OMN,2898.0,Al Dhahira,259.0,Oman,130068.0,Dhank,both,identical +163193,56.25,23.25,OMN,2898.0,Al Dhahira,259.0,Oman,130069.0,Ibri,56.25,23.25,OMN,2898.0,Al Dhahira,259.0,Oman,130069.0,Ibri,both,identical +163194,56.75,23.25,OMN,2898.0,Al Dhahira,259.0,Oman,130069.0,Ibri,56.75,23.25,OMN,2898.0,Al Dhahira,259.0,Oman,130069.0,Ibri,both,identical +163195,57.25,23.25,OMN,2894.0,Ad Dakhliyah,259.0,Oman,130048.0,Al Hamra,57.25,23.25,OMN,2894.0,Ad Dakhliyah,259.0,Oman,130048.0,Al Hamra,both,identical +163196,57.75,23.25,OMN,2896.0,Al Batinah South,259.0,Oman,130051.0,Izki,57.75,23.25,OMN,2894.0,Ad Dakhliyah,259.0,Oman,130051.0,Izki,both,admin_reallocation +163197,58.25,23.25,OMN,2894.0,Ad Dakhliyah,259.0,Oman,130050.0,Bid Bid,58.25,23.25,OMN,2894.0,Ad Dakhliyah,259.0,Oman,130050.0,Bid Bid,both,identical +163198,58.75,23.25,OMN,2904.0,Muscat,259.0,Oman,130095.0,Quriyat,58.75,23.25,OMN,2904.0,Muscat,259.0,Oman,130095.0,Quriyat,both,identical +163199,59.25,23.25,OMN,2904.0,Muscat,259.0,Oman,130095.0,Quriyat,59.25,23.25,OMN,2904.0,Muscat,259.0,Oman,130095.0,Quriyat,both,identical +163769,-15.75,23.75,MAR,,,,,,,-15.75,23.75,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +163770,-15.25,23.75,MAR,,,,,,,-15.25,23.75,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +163771,-14.75,23.75,MAR,,,,,,,-14.75,23.75,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +163772,-14.25,23.75,MAR,,,,,,,-14.25,23.75,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +163773,-13.75,23.75,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,-13.75,23.75,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,identical +163774,-13.25,23.75,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,-13.25,23.75,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,identical +163775,-12.75,23.75,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,-12.75,23.75,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,identical +163776,-12.25,23.75,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,-12.25,23.75,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,identical +163777,-11.75,23.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,-11.75,23.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,both,identical +163778,-11.25,23.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,-11.25,23.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,both,identical +163779,-10.75,23.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,-10.75,23.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,both,identical +163780,-10.25,23.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,-10.25,23.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,both,identical +163781,-9.75,23.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,-9.75,23.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,both,identical +163782,-9.25,23.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,-9.25,23.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,both,identical +163783,-8.75,23.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,-8.75,23.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,both,identical +163784,-8.25,23.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,-8.25,23.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,both,identical +163785,-7.75,23.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,-7.75,23.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,both,identical +163786,-7.25,23.75,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,-7.25,23.75,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,both,identical +163787,-6.75,23.75,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,-6.75,23.75,MRT,1446.0,Adrar,144.0,Mauritania,104163.0,Ouadane,both,identical +163788,-6.25,23.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-6.25,23.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +163789,-5.75,23.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-5.75,23.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +163790,-5.25,23.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-5.25,23.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +163791,-4.75,23.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-4.75,23.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +163792,-4.25,23.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-4.25,23.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +163793,-3.75,23.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-3.75,23.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +163794,-3.25,23.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-3.25,23.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +163795,-2.75,23.75,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,-2.75,23.75,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,both,identical +163796,-2.25,23.75,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,-2.25,23.75,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,both,identical +163797,-1.75,23.75,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,-1.75,23.75,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,both,identical +163798,-1.25,23.75,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,-1.25,23.75,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,both,identical +163799,-0.75,23.75,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,-0.75,23.75,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,both,identical +163800,-0.25,23.75,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,-0.25,23.75,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,both,identical +163801,0.25,23.75,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,0.25,23.75,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,both,identical +163802,0.75,23.75,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,0.75,23.75,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,both,identical +163803,1.25,23.75,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,1.25,23.75,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,both,identical +163804,1.75,23.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,1.75,23.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,both,identical +163805,2.25,23.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,2.25,23.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,both,identical +163806,2.75,23.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,2.75,23.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,both,identical +163807,3.25,23.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,3.25,23.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,both,identical +163808,3.75,23.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,3.75,23.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,both,identical +163809,4.25,23.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,4.25,23.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,both,identical +163810,4.75,23.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,4.75,23.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,both,identical +163811,5.25,23.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,5.25,23.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,both,identical +163812,5.75,23.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101292.0,Idles,5.75,23.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101292.0,Idles,both,identical +163813,6.25,23.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101292.0,Idles,6.25,23.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101292.0,Idles,both,identical +163814,6.75,23.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101298.0,Tazrouk,6.75,23.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101298.0,Tazrouk,both,identical +163815,7.25,23.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101298.0,Tazrouk,7.25,23.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101298.0,Tazrouk,both,identical +163816,7.75,23.75,DZA,1022.0,Illizi,101.0,Algeria,100671.0,Bordj El Haoues,7.75,23.75,DZA,1022.0,Illizi,101.0,Algeria,100671.0,Bordj El Haoues,both,identical +163817,8.25,23.75,DZA,1022.0,Illizi,101.0,Algeria,100671.0,Bordj El Haoues,8.25,23.75,DZA,1022.0,Illizi,101.0,Algeria,100671.0,Bordj El Haoues,both,identical +163818,8.75,23.75,DZA,1022.0,Illizi,101.0,Algeria,100674.0,Djanet,8.75,23.75,DZA,1022.0,Illizi,101.0,Algeria,100674.0,Djanet,both,identical +163819,9.25,23.75,DZA,1022.0,Illizi,101.0,Algeria,100674.0,Djanet,9.25,23.75,DZA,1022.0,Illizi,101.0,Algeria,100674.0,Djanet,both,identical +163820,9.75,23.75,DZA,1022.0,Illizi,101.0,Algeria,100674.0,Djanet,9.75,23.75,DZA,1022.0,Illizi,101.0,Algeria,100674.0,Djanet,both,identical +163821,10.25,23.75,DZA,1022.0,Illizi,101.0,Algeria,100674.0,Djanet,10.25,23.75,DZA,1022.0,Illizi,101.0,Algeria,100674.0,Djanet,both,identical +163822,10.75,23.75,DZA,1022.0,Illizi,101.0,Algeria,100674.0,Djanet,10.75,23.75,DZA,1022.0,Illizi,101.0,Algeria,100674.0,Djanet,both,identical +163823,11.25,23.75,DZA,1022.0,Illizi,101.0,Algeria,100674.0,Djanet,11.25,23.75,DZA,1022.0,Illizi,101.0,Algeria,100674.0,Djanet,both,identical +163824,11.75,23.75,DZA,1022.0,Illizi,101.0,Algeria,100674.0,Djanet,11.75,23.75,DZA,1022.0,Illizi,101.0,Algeria,100674.0,Djanet,both,identical +163825,12.25,23.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,12.25,23.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +163826,12.75,23.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,12.75,23.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +163827,13.25,23.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,13.25,23.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +163828,13.75,23.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,13.75,23.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +163829,14.25,23.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,14.25,23.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +163830,14.75,23.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,14.75,23.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +163831,15.25,23.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,15.25,23.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +163832,15.75,23.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,15.75,23.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +163833,16.25,23.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,16.25,23.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +163834,16.75,23.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,16.75,23.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +163835,17.25,23.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,17.25,23.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +163836,17.75,23.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,17.75,23.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +163837,18.25,23.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,18.25,23.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +163838,18.75,23.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,18.75,23.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +163839,19.25,23.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,19.25,23.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +163840,19.75,23.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,19.75,23.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +163841,20.25,23.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,20.25,23.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +163842,20.75,23.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,20.75,23.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +163843,21.25,23.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,21.25,23.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +163844,21.75,23.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,21.75,23.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +163845,22.25,23.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,22.25,23.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +163846,22.75,23.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,22.75,23.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +163847,23.25,23.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,23.25,23.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +163848,23.75,23.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,23.75,23.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +163849,24.25,23.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,24.25,23.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +163850,24.75,23.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,24.75,23.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +163851,25.25,23.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,25.25,23.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +163852,25.75,23.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,25.75,23.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +163853,26.25,23.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,26.25,23.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +163854,26.75,23.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,26.75,23.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +163855,27.25,23.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,27.25,23.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +163856,27.75,23.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,27.75,23.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +163857,28.25,23.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,28.25,23.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +163858,28.75,23.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,28.75,23.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +163859,29.25,23.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,29.25,23.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +163860,29.75,23.75,EGY,1263.0,New Valley,120.0,Egypt,102793.0,Paris Paris,29.75,23.75,EGY,1263.0,New Valley,120.0,Egypt,102793.0,Paris Paris,both,identical +163861,30.25,23.75,EGY,1263.0,New Valley,120.0,Egypt,102792.0,Al-Kharga Oasis,30.25,23.75,EGY,1263.0,New Valley,120.0,Egypt,102792.0,Al-Kharga Oasis,both,identical +163862,30.75,23.75,EGY,1263.0,New Valley,120.0,Egypt,102792.0,Al-Kharga Oasis,30.75,23.75,EGY,1263.0,New Valley,120.0,Egypt,102792.0,Al-Kharga Oasis,both,identical +163863,31.25,23.75,EGY,1263.0,New Valley,120.0,Egypt,102792.0,Al-Kharga Oasis,31.25,23.75,EGY,1263.0,New Valley,120.0,Egypt,102792.0,Al-Kharga Oasis,both,identical +163864,31.75,23.75,EGY,1263.0,New Valley,120.0,Egypt,102792.0,Al-Kharga Oasis,31.75,23.75,EGY,1263.0,New Valley,120.0,Egypt,102792.0,Al-Kharga Oasis,both,identical +163865,32.25,23.75,EGY,1247.0,Aswan,120.0,Egypt,102576.0,Zemam Out,32.25,23.75,EGY,1247.0,Aswan,120.0,Egypt,102576.0,Zemam Out,both,identical +163866,32.75,23.75,EGY,1247.0,Aswan,120.0,Egypt,102576.0,Zemam Out,32.75,23.75,EGY,1247.0,Aswan,120.0,Egypt,102576.0,Zemam Out,both,identical +163867,33.25,23.75,EGY,1247.0,Aswan,120.0,Egypt,102576.0,Zemam Out,33.25,23.75,EGY,1247.0,Aswan,120.0,Egypt,102576.0,Zemam Out,both,identical +163868,33.75,23.75,EGY,1267.0,Red Sea,120.0,Egypt,102837.0,Shallatin,33.75,23.75,EGY,1267.0,Red Sea,120.0,Egypt,102837.0,Shallatin,both,identical +163869,34.25,23.75,EGY,1267.0,Red Sea,120.0,Egypt,102837.0,Shallatin,34.25,23.75,EGY,1267.0,Red Sea,120.0,Egypt,102837.0,Shallatin,both,identical +163870,34.75,23.75,EGY,1267.0,Red Sea,120.0,Egypt,102837.0,Shallatin,34.75,23.75,EGY,1267.0,Red Sea,120.0,Egypt,102837.0,Shallatin,both,identical +163871,35.25,23.75,EGY,1267.0,Red Sea,120.0,Egypt,102837.0,Shallatin,35.25,23.75,EGY,1267.0,Red Sea,120.0,Egypt,102837.0,Shallatin,both,identical +163872,35.75,23.75,EGY,1267.0,Red Sea,120.0,Egypt,102837.0,Shallatin,35.75,23.75,EGY,1267.0,Red Sea,120.0,Egypt,102837.0,Shallatin,both,identical +163877,38.25,23.75,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130461.0,Yanbu,38.25,23.75,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130461.0,Yanbu,both,identical +163878,38.75,23.75,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130458.0,Badr,38.75,23.75,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130458.0,Badr,both,identical +163879,39.25,23.75,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130458.0,Badr,39.25,23.75,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130458.0,Badr,both,identical +163880,39.75,23.75,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130460.0,Wadi Al Fara,39.75,23.75,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130460.0,Wadi Al Fara,both,identical +163881,40.25,23.75,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130455.0,Al Madinah Al Munawwarah,40.25,23.75,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130455.0,Al Madinah Al Munawwarah,both,identical +163882,40.75,23.75,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130456.0,Al Mahd,40.75,23.75,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130456.0,Al Mahd,both,identical +163883,41.25,23.75,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130456.0,Al Mahd,41.25,23.75,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130456.0,Al Mahd,both,identical +163884,41.75,23.75,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130456.0,Al Mahd,41.75,23.75,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130456.0,Al Mahd,both,identical +163885,42.25,23.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130477.0,Afif,42.25,23.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130477.0,Afif,both,identical +163886,42.75,23.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130477.0,Afif,42.75,23.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130477.0,Afif,both,identical +163887,43.25,23.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130477.0,Afif,43.25,23.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130477.0,Afif,both,identical +163888,43.75,23.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130484.0,Al Quwayiyah,43.75,23.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130484.0,Al Quwayiyah,both,identical +163889,44.25,23.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130484.0,Al Quwayiyah,44.25,23.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130484.0,Al Quwayiyah,both,identical +163890,44.75,23.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130484.0,Al Quwayiyah,44.75,23.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130484.0,Al Quwayiyah,both,identical +163891,45.25,23.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130484.0,Al Quwayiyah,45.25,23.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130484.0,Al Quwayiyah,both,identical +163892,45.75,23.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130485.0,Ar Rayn,45.75,23.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130485.0,Ar Rayn,both,identical +163893,46.25,23.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130480.0,Al Hariq,46.25,23.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130480.0,Al Hariq,both,identical +163894,46.75,23.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130474.0,Ad Dilam,46.75,23.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130474.0,Ad Dilam,both,identical +163895,47.25,23.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130481.0,Al Kharj,47.25,23.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130481.0,Al Kharj,both,identical +163896,47.75,23.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130481.0,Al Kharj,47.75,23.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130481.0,Al Kharj,both,identical +163897,48.25,23.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,48.25,23.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +163898,48.75,23.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,48.75,23.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +163899,49.25,23.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,49.25,23.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +163900,49.75,23.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,49.75,23.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +163901,50.25,23.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,50.25,23.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +163902,50.75,23.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,50.75,23.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,both,identical +163903,51.25,23.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,51.25,23.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,both,identical +163904,51.75,23.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,51.75,23.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,both,identical +163905,52.25,23.75,ARE,3184.0,Abu Dhabi,279.0,United Arab Emirates,132721.0,Administrative Unit Not Available,52.25,23.75,ARE,3184.0,Abu Dhabi,279.0,United Arab Emirates,132721.0,Administrative Unit Not Available,both,identical +163906,52.75,23.75,ARE,3184.0,Abu Dhabi,279.0,United Arab Emirates,132721.0,Administrative Unit Not Available,52.75,23.75,ARE,3184.0,Abu Dhabi,279.0,United Arab Emirates,132721.0,Administrative Unit Not Available,both,identical +163907,53.25,23.75,ARE,3184.0,Abu Dhabi,279.0,United Arab Emirates,132721.0,Administrative Unit Not Available,53.25,23.75,ARE,3184.0,Abu Dhabi,279.0,United Arab Emirates,132721.0,Administrative Unit Not Available,both,identical +163908,53.75,23.75,ARE,3184.0,Abu Dhabi,279.0,United Arab Emirates,132721.0,Administrative Unit Not Available,53.75,23.75,ARE,3184.0,Abu Dhabi,279.0,United Arab Emirates,132721.0,Administrative Unit Not Available,both,identical +163909,54.25,23.75,ARE,3184.0,Abu Dhabi,279.0,United Arab Emirates,132721.0,Administrative Unit Not Available,54.25,23.75,ARE,3184.0,Abu Dhabi,279.0,United Arab Emirates,132721.0,Administrative Unit Not Available,both,identical +163910,54.75,23.75,ARE,3184.0,Abu Dhabi,279.0,United Arab Emirates,132721.0,Administrative Unit Not Available,54.75,23.75,ARE,3184.0,Abu Dhabi,279.0,United Arab Emirates,132721.0,Administrative Unit Not Available,both,identical +163911,55.25,23.75,ARE,3184.0,Abu Dhabi,279.0,United Arab Emirates,132721.0,Administrative Unit Not Available,55.25,23.75,ARE,3184.0,Abu Dhabi,279.0,United Arab Emirates,132721.0,Administrative Unit Not Available,both,identical +163912,55.75,23.75,OMN,2898.0,Al Dhahira,259.0,Oman,130068.0,Dhank,55.75,23.75,OMN,2898.0,Al Dhahira,259.0,Oman,130068.0,Dhank,both,identical +163913,56.25,23.75,OMN,2898.0,Al Dhahira,259.0,Oman,130070.0,Yanqul,56.25,23.75,OMN,2898.0,Al Dhahira,259.0,Oman,130070.0,Yanqul,both,identical +163914,56.75,23.75,OMN,2898.0,Al Dhahira,259.0,Oman,130070.0,Yanqul,56.75,23.75,OMN,2898.0,Al Dhahira,259.0,Oman,130070.0,Yanqul,both,identical +163915,57.25,23.75,OMN,2895.0,Al Batinah North,259.0,Oman,130055.0,Al Khabourah,57.25,23.75,OMN,2895.0,Al Batinah North,259.0,Oman,130055.0,Al Khabourah,both,identical +163916,57.75,23.75,OMN,2896.0,Al Batinah South,259.0,Oman,130063.0,Al Masnaah,57.75,23.75,OMN,2896.0,Al Batinah South,259.0,Oman,130063.0,Al Masnaah,both,identical +163917,58.25,23.75,OMN,2904.0,Muscat,259.0,Oman,130091.0,A Seeb,58.25,23.75,OMN,2904.0,Muscat,259.0,Oman,130091.0,A Seeb,both,identical +163918,58.75,23.75,OMN,2904.0,Muscat,259.0,Oman,130093.0,Muscat,58.75,23.75,OMN,2904.0,Muscat,259.0,Oman,130093.0,Muscat,both,identical +164489,-15.75,24.25,MAR,,,,,,,-15.75,24.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +164490,-15.25,24.25,MAR,,,,,,,-15.25,24.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +164491,-14.75,24.25,MAR,,,,,,,-14.75,24.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +164492,-14.25,24.25,MAR,,,,,,,-14.25,24.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +164493,-13.75,24.25,MAR,,,,,,,-13.75,24.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +164494,-13.25,24.25,MAR,,,,,,,-13.25,24.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +164495,-12.75,24.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,-12.75,24.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,identical +164496,-12.25,24.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,-12.25,24.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,identical +164497,-11.75,24.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,-11.75,24.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,both,identical +164498,-11.25,24.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,-11.25,24.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,both,identical +164499,-10.75,24.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,-10.75,24.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,both,identical +164500,-10.25,24.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,-10.25,24.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,both,identical +164501,-9.75,24.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,-9.75,24.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,both,identical +164502,-9.25,24.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,-9.25,24.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,both,identical +164503,-8.75,24.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,-8.75,24.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,both,identical +164504,-8.25,24.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,-8.25,24.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,both,identical +164505,-7.75,24.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,-7.75,24.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,both,identical +164506,-7.25,24.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,-7.25,24.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,both,identical +164507,-6.75,24.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,-6.75,24.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,both,identical +164508,-6.25,24.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-6.25,24.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +164509,-5.75,24.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-5.75,24.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +164510,-5.25,24.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-5.25,24.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +164511,-4.75,24.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-4.75,24.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +164512,-4.25,24.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-4.25,24.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +164513,-3.75,24.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-3.75,24.25,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +164514,-3.25,24.25,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,-3.25,24.25,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,both,identical +164515,-2.75,24.25,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,-2.75,24.25,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,both,identical +164516,-2.25,24.25,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,-2.25,24.25,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,both,identical +164517,-1.75,24.25,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,-1.75,24.25,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,both,identical +164518,-1.25,24.25,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,-1.25,24.25,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,both,identical +164519,-0.75,24.25,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,-0.75,24.25,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,both,identical +164520,-0.25,24.25,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,-0.25,24.25,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,both,identical +164521,0.25,24.25,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,0.25,24.25,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,both,identical +164522,0.75,24.25,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,0.75,24.25,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,both,identical +164523,1.25,24.25,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,1.25,24.25,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,both,identical +164524,1.75,24.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,1.75,24.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,both,identical +164525,2.25,24.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,2.25,24.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,both,identical +164526,2.75,24.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,2.75,24.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,both,identical +164527,3.25,24.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,3.25,24.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,both,identical +164528,3.75,24.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,3.75,24.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,both,identical +164529,4.25,24.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,4.25,24.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,both,identical +164530,4.75,24.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,4.75,24.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,both,identical +164531,5.25,24.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,5.25,24.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,both,identical +164532,5.75,24.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101292.0,Idles,5.75,24.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101292.0,Idles,both,identical +164533,6.25,24.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101292.0,Idles,6.25,24.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101292.0,Idles,both,identical +164534,6.75,24.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101292.0,Idles,6.75,24.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101292.0,Idles,both,identical +164535,7.25,24.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101292.0,Idles,7.25,24.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101292.0,Idles,both,identical +164536,7.75,24.25,DZA,1022.0,Illizi,101.0,Algeria,100671.0,Bordj El Haoues,7.75,24.25,DZA,1022.0,Illizi,101.0,Algeria,100671.0,Bordj El Haoues,both,identical +164537,8.25,24.25,DZA,1022.0,Illizi,101.0,Algeria,100671.0,Bordj El Haoues,8.25,24.25,DZA,1022.0,Illizi,101.0,Algeria,100671.0,Bordj El Haoues,both,identical +164538,8.75,24.25,DZA,1022.0,Illizi,101.0,Algeria,100674.0,Djanet,8.75,24.25,DZA,1022.0,Illizi,101.0,Algeria,100674.0,Djanet,both,identical +164539,9.25,24.25,DZA,1022.0,Illizi,101.0,Algeria,100674.0,Djanet,9.25,24.25,DZA,1022.0,Illizi,101.0,Algeria,100674.0,Djanet,both,identical +164540,9.75,24.25,DZA,1022.0,Illizi,101.0,Algeria,100674.0,Djanet,9.75,24.25,DZA,1022.0,Illizi,101.0,Algeria,100674.0,Djanet,both,identical +164541,10.25,24.25,DZA,1022.0,Illizi,101.0,Algeria,100674.0,Djanet,10.25,24.25,DZA,1022.0,Illizi,101.0,Algeria,100674.0,Djanet,both,identical +164542,10.75,24.25,DZA,1022.0,Illizi,101.0,Algeria,100674.0,Djanet,10.75,24.25,DZA,1022.0,Illizi,101.0,Algeria,100674.0,Djanet,both,identical +164543,11.25,24.25,DZA,1022.0,Illizi,101.0,Algeria,100674.0,Djanet,11.25,24.25,DZA,1022.0,Illizi,101.0,Algeria,100674.0,Djanet,both,identical +164544,11.75,24.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,11.75,24.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +164545,12.25,24.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,12.25,24.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +164546,12.75,24.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,12.75,24.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +164547,13.25,24.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,13.25,24.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +164548,13.75,24.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,13.75,24.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +164549,14.25,24.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,14.25,24.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +164550,14.75,24.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,14.75,24.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +164551,15.25,24.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,15.25,24.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +164552,15.75,24.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,15.75,24.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +164553,16.25,24.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,16.25,24.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +164554,16.75,24.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,16.75,24.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +164555,17.25,24.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,17.25,24.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +164556,17.75,24.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,17.75,24.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +164557,18.25,24.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,18.25,24.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +164558,18.75,24.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,18.75,24.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +164559,19.25,24.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,19.25,24.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +164560,19.75,24.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,19.75,24.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +164561,20.25,24.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,20.25,24.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +164562,20.75,24.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,20.75,24.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +164563,21.25,24.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,21.25,24.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +164564,21.75,24.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,21.75,24.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +164565,22.25,24.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,22.25,24.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +164566,22.75,24.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,22.75,24.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +164567,23.25,24.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,23.25,24.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +164568,23.75,24.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,23.75,24.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +164569,24.25,24.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,24.25,24.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +164570,24.75,24.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,24.75,24.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +164571,25.25,24.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,25.25,24.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +164572,25.75,24.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,25.75,24.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +164573,26.25,24.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,26.25,24.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +164574,26.75,24.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,26.75,24.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +164575,27.25,24.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,27.25,24.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +164576,27.75,24.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,27.75,24.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +164577,28.25,24.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,28.25,24.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +164578,28.75,24.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,28.75,24.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +164579,29.25,24.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,29.25,24.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +164580,29.75,24.25,EGY,1263.0,New Valley,120.0,Egypt,102792.0,Al-Kharga Oasis,29.75,24.25,EGY,1263.0,New Valley,120.0,Egypt,102792.0,Al-Kharga Oasis,both,identical +164581,30.25,24.25,EGY,1263.0,New Valley,120.0,Egypt,102792.0,Al-Kharga Oasis,30.25,24.25,EGY,1263.0,New Valley,120.0,Egypt,102792.0,Al-Kharga Oasis,both,identical +164582,30.75,24.25,EGY,1263.0,New Valley,120.0,Egypt,102792.0,Al-Kharga Oasis,30.75,24.25,EGY,1263.0,New Valley,120.0,Egypt,102792.0,Al-Kharga Oasis,both,identical +164583,31.25,24.25,EGY,1263.0,New Valley,120.0,Egypt,102792.0,Al-Kharga Oasis,31.25,24.25,EGY,1263.0,New Valley,120.0,Egypt,102792.0,Al-Kharga Oasis,both,identical +164584,31.75,24.25,EGY,1263.0,New Valley,120.0,Egypt,102792.0,Al-Kharga Oasis,31.75,24.25,EGY,1263.0,New Valley,120.0,Egypt,102792.0,Al-Kharga Oasis,both,identical +164585,32.25,24.25,EGY,1247.0,Aswan,120.0,Egypt,102576.0,Zemam Out,32.25,24.25,EGY,1247.0,Aswan,120.0,Egypt,102576.0,Zemam Out,both,identical +164586,32.75,24.25,EGY,1247.0,Aswan,120.0,Egypt,102576.0,Zemam Out,32.75,24.25,EGY,1247.0,Aswan,120.0,Egypt,102576.0,Zemam Out,both,identical +164587,33.25,24.25,EGY,1247.0,Aswan,120.0,Egypt,102576.0,Zemam Out,33.25,24.25,EGY,1247.0,Aswan,120.0,Egypt,102576.0,Zemam Out,both,identical +164588,33.75,24.25,EGY,1267.0,Red Sea,120.0,Egypt,102833.0,Marsa Alam,33.75,24.25,EGY,1267.0,Red Sea,120.0,Egypt,102833.0,Marsa Alam,both,identical +164589,34.25,24.25,EGY,1267.0,Red Sea,120.0,Egypt,102833.0,Marsa Alam,34.25,24.25,EGY,1267.0,Red Sea,120.0,Egypt,102833.0,Marsa Alam,both,identical +164590,34.75,24.25,EGY,1267.0,Red Sea,120.0,Egypt,102833.0,Marsa Alam,34.75,24.25,EGY,1267.0,Red Sea,120.0,Egypt,102833.0,Marsa Alam,both,identical +164591,35.25,24.25,EGY,1267.0,Red Sea,120.0,Egypt,102833.0,Marsa Alam,35.25,24.25,EGY,1267.0,Red Sea,120.0,Egypt,102833.0,Marsa Alam,both,identical +164592,35.75,24.25,EGY,1267.0,Red Sea,120.0,Egypt,102837.0,Shallatin,35.75,24.25,EGY,1267.0,Red Sea,120.0,Egypt,102837.0,Shallatin,both,identical +164595,37.25,24.25,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130461.0,Yanbu,37.25,24.25,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130461.0,Yanbu,both,identical +164596,37.75,24.25,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130461.0,Yanbu,37.75,24.25,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130461.0,Yanbu,both,identical +164597,38.25,24.25,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130461.0,Yanbu,38.25,24.25,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130461.0,Yanbu,both,identical +164598,38.75,24.25,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130458.0,Badr,38.75,24.25,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130458.0,Badr,both,identical +164599,39.25,24.25,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130455.0,Al Madinah Al Munawwarah,39.25,24.25,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130455.0,Al Madinah Al Munawwarah,both,identical +164600,39.75,24.25,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130455.0,Al Madinah Al Munawwarah,39.75,24.25,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130455.0,Al Madinah Al Munawwarah,both,identical +164601,40.25,24.25,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130455.0,Al Madinah Al Munawwarah,40.25,24.25,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130455.0,Al Madinah Al Munawwarah,both,identical +164602,40.75,24.25,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130453.0,Al Hinakiyah,40.75,24.25,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130453.0,Al Hinakiyah,both,identical +164603,41.25,24.25,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130453.0,Al Hinakiyah,41.25,24.25,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130453.0,Al Hinakiyah,both,identical +164604,41.75,24.25,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130456.0,Al Mahd,41.75,24.25,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130456.0,Al Mahd,both,identical +164605,42.25,24.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130477.0,Afif,42.25,24.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130477.0,Afif,both,identical +164606,42.75,24.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130477.0,Afif,42.75,24.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130477.0,Afif,both,identical +164607,43.25,24.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130477.0,Afif,43.25,24.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130477.0,Afif,both,identical +164608,43.75,24.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130476.0,Ad Duwadimi,43.75,24.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130476.0,Ad Duwadimi,both,identical +164609,44.25,24.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130476.0,Ad Duwadimi,44.25,24.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130476.0,Ad Duwadimi,both,identical +164610,44.75,24.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130476.0,Ad Duwadimi,44.75,24.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130476.0,Ad Duwadimi,both,identical +164611,45.25,24.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130484.0,Al Quwayiyah,45.25,24.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130484.0,Al Quwayiyah,both,identical +164612,45.75,24.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130484.0,Al Quwayiyah,45.75,24.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130484.0,Al Quwayiyah,both,identical +164613,46.25,24.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130483.0,Al Muzahimiyah,46.25,24.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130483.0,Al Muzahimiyah,both,identical +164614,46.75,24.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130474.0,Ad Dilam,46.75,24.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130474.0,Ad Dilam,both,identical +164615,47.25,24.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130481.0,Al Kharj,47.25,24.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130481.0,Al Kharj,both,identical +164616,47.75,24.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130481.0,Al Kharj,47.75,24.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130481.0,Al Kharj,both,identical +164617,48.25,24.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,48.25,24.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +164618,48.75,24.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,48.75,24.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +164619,49.25,24.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,49.25,24.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +164620,49.75,24.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,49.75,24.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +164621,50.25,24.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,50.25,24.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +164622,50.75,24.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,50.75,24.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,both,identical +164623,51.25,24.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,51.25,24.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,both,identical +164624,51.75,24.25,ARE,3184.0,Abu Dhabi,279.0,United Arab Emirates,132721.0,Administrative Unit Not Available,51.75,24.25,ARE,3184.0,Abu Dhabi,279.0,United Arab Emirates,132721.0,Administrative Unit Not Available,both,identical +164625,52.25,24.25,ARE,3184.0,Abu Dhabi,279.0,United Arab Emirates,132721.0,Administrative Unit Not Available,52.25,24.25,ARE,3184.0,Abu Dhabi,279.0,United Arab Emirates,132721.0,Administrative Unit Not Available,both,identical +164626,52.75,24.25,ARE,3184.0,Abu Dhabi,279.0,United Arab Emirates,132721.0,Administrative Unit Not Available,52.75,24.25,ARE,3184.0,Abu Dhabi,279.0,United Arab Emirates,132721.0,Administrative Unit Not Available,both,identical +164627,53.25,24.25,ARE,3184.0,Abu Dhabi,279.0,United Arab Emirates,132721.0,Administrative Unit Not Available,53.25,24.25,ARE,3184.0,Abu Dhabi,279.0,United Arab Emirates,132721.0,Administrative Unit Not Available,both,identical +164628,53.75,24.25,ARE,3184.0,Abu Dhabi,279.0,United Arab Emirates,132721.0,Administrative Unit Not Available,53.75,24.25,ARE,3184.0,Abu Dhabi,279.0,United Arab Emirates,132721.0,Administrative Unit Not Available,both,identical +164629,54.25,24.25,ARE,3184.0,Abu Dhabi,279.0,United Arab Emirates,132721.0,Administrative Unit Not Available,54.25,24.25,ARE,3184.0,Abu Dhabi,279.0,United Arab Emirates,132721.0,Administrative Unit Not Available,both,identical +164630,54.75,24.25,ARE,3184.0,Abu Dhabi,279.0,United Arab Emirates,132721.0,Administrative Unit Not Available,54.75,24.25,ARE,3184.0,Abu Dhabi,279.0,United Arab Emirates,132721.0,Administrative Unit Not Available,both,identical +164631,55.25,24.25,ARE,3184.0,Abu Dhabi,279.0,United Arab Emirates,132721.0,Administrative Unit Not Available,55.25,24.25,ARE,3184.0,Abu Dhabi,279.0,United Arab Emirates,132721.0,Administrative Unit Not Available,both,identical +164632,55.75,24.25,ARE,3184.0,Abu Dhabi,279.0,United Arab Emirates,132721.0,Administrative Unit Not Available,55.75,24.25,ARE,3184.0,Abu Dhabi,279.0,United Arab Emirates,132721.0,Administrative Unit Not Available,both,identical +164633,56.25,24.25,OMN,2897.0,Al Buraymi,259.0,Oman,130067.0,Mahdha,56.25,24.25,OMN,2897.0,Al Buraymi,259.0,Oman,130067.0,Mahdha,both,identical +164634,56.75,24.25,OMN,2895.0,Al Batinah North,259.0,Oman,130058.0,Saham,56.75,24.25,OMN,2895.0,Al Batinah North,259.0,Oman,130058.0,Saham,both,identical +164635,57.25,24.25,OMN,2895.0,Al Batinah North,259.0,Oman,130055.0,Al Khabourah,57.25,24.25,OMN,2895.0,Al Batinah North,259.0,Oman,130055.0,Al Khabourah,both,identical +165210,-15.25,24.75,MAR,,,,,,,-15.25,24.75,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +165211,-14.75,24.75,MAR,,,,,,,-14.75,24.75,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +165212,-14.25,24.75,MAR,,,,,,,-14.25,24.75,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +165213,-13.75,24.75,MAR,,,,,,,-13.75,24.75,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +165214,-13.25,24.75,MAR,,,,,,,-13.25,24.75,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +165215,-12.75,24.75,MAR,,,,,,,-12.75,24.75,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +165216,-12.25,24.75,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,-12.25,24.75,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,identical +165217,-11.75,24.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,-11.75,24.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,both,identical +165218,-11.25,24.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,-11.25,24.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,both,identical +165219,-10.75,24.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,-10.75,24.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,both,identical +165220,-10.25,24.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,-10.25,24.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,both,identical +165221,-9.75,24.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,-9.75,24.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,both,identical +165222,-9.25,24.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,-9.25,24.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,both,identical +165223,-8.75,24.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,-8.75,24.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,both,identical +165224,-8.25,24.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,-8.25,24.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,both,identical +165225,-7.75,24.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,-7.75,24.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,both,identical +165226,-7.25,24.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,-7.25,24.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,both,identical +165227,-6.75,24.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,-6.75,24.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104214.0,F'Derik,both,identical +165228,-6.25,24.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-6.25,24.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +165229,-5.75,24.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-5.75,24.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +165230,-5.25,24.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-5.25,24.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +165231,-4.75,24.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,-4.75,24.75,MLI,1445.0,Tombouctou,143.0,Mali,104159.0,Tombouctou,both,identical +165232,-4.25,24.75,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,-4.25,24.75,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,both,identical +165233,-3.75,24.75,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,-3.75,24.75,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,both,identical +165234,-3.25,24.75,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,-3.25,24.75,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,both,identical +165235,-2.75,24.75,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,-2.75,24.75,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,both,identical +165236,-2.25,24.75,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,-2.25,24.75,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,both,identical +165237,-1.75,24.75,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,-1.75,24.75,DZA,1001.0,Adrar,101.0,Algeria,100005.0,Bordj Badji Mokhtar,both,identical +165238,-1.25,24.75,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,-1.25,24.75,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,both,identical +165239,-0.75,24.75,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,-0.75,24.75,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,both,identical +165240,-0.25,24.75,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,-0.25,24.75,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,both,identical +165241,0.25,24.75,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,0.25,24.75,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,both,identical +165242,0.75,24.75,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,0.75,24.75,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,both,identical +165243,1.25,24.75,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,1.25,24.75,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,both,identical +165244,1.75,24.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,1.75,24.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,both,identical +165245,2.25,24.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,2.25,24.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,both,identical +165246,2.75,24.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,2.75,24.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,both,identical +165247,3.25,24.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,3.25,24.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,both,identical +165248,3.75,24.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,3.75,24.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,both,identical +165249,4.25,24.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,4.25,24.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,both,identical +165250,4.75,24.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,4.75,24.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,both,identical +165251,5.25,24.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,5.25,24.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,both,identical +165252,5.75,24.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101292.0,Idles,5.75,24.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101292.0,Idles,both,identical +165253,6.25,24.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101292.0,Idles,6.25,24.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101292.0,Idles,both,identical +165254,6.75,24.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101292.0,Idles,6.75,24.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101292.0,Idles,both,identical +165255,7.25,24.75,DZA,1022.0,Illizi,101.0,Algeria,100671.0,Bordj El Haoues,7.25,24.75,DZA,1022.0,Illizi,101.0,Algeria,100671.0,Bordj El Haoues,both,identical +165256,7.75,24.75,DZA,1022.0,Illizi,101.0,Algeria,100671.0,Bordj El Haoues,7.75,24.75,DZA,1022.0,Illizi,101.0,Algeria,100671.0,Bordj El Haoues,both,identical +165257,8.25,24.75,DZA,1022.0,Illizi,101.0,Algeria,100671.0,Bordj El Haoues,8.25,24.75,DZA,1022.0,Illizi,101.0,Algeria,100671.0,Bordj El Haoues,both,identical +165258,8.75,24.75,DZA,1022.0,Illizi,101.0,Algeria,100671.0,Bordj El Haoues,8.75,24.75,DZA,1022.0,Illizi,101.0,Algeria,100671.0,Bordj El Haoues,both,identical +165259,9.25,24.75,DZA,1022.0,Illizi,101.0,Algeria,100674.0,Djanet,9.25,24.75,DZA,1022.0,Illizi,101.0,Algeria,100674.0,Djanet,both,identical +165260,9.75,24.75,DZA,1022.0,Illizi,101.0,Algeria,100674.0,Djanet,9.75,24.75,DZA,1022.0,Illizi,101.0,Algeria,100674.0,Djanet,both,identical +165261,10.25,24.75,LBY,1426.0,South,140.0,Libya,104040.0,Ghat,10.25,24.75,LBY,1426.0,South,140.0,Libya,104040.0,Ghat,both,identical +165262,10.75,24.75,LBY,1426.0,South,140.0,Libya,104040.0,Ghat,10.75,24.75,LBY,1426.0,South,140.0,Libya,104040.0,Ghat,both,identical +165263,11.25,24.75,LBY,1426.0,South,140.0,Libya,104040.0,Ghat,11.25,24.75,LBY,1426.0,South,140.0,Libya,104040.0,Ghat,both,identical +165264,11.75,24.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,11.75,24.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +165265,12.25,24.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,12.25,24.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +165266,12.75,24.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,12.75,24.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +165267,13.25,24.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,13.25,24.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +165268,13.75,24.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,13.75,24.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +165269,14.25,24.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,14.25,24.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +165270,14.75,24.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,14.75,24.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +165271,15.25,24.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,15.25,24.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +165272,15.75,24.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,15.75,24.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +165273,16.25,24.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,16.25,24.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +165274,16.75,24.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,16.75,24.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +165275,17.25,24.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,17.25,24.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +165276,17.75,24.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,17.75,24.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +165277,18.25,24.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,18.25,24.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +165278,18.75,24.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,18.75,24.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +165279,19.25,24.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,19.25,24.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +165280,19.75,24.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,19.75,24.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +165281,20.25,24.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,20.25,24.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +165282,20.75,24.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,20.75,24.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +165283,21.25,24.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,21.25,24.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +165284,21.75,24.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,21.75,24.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +165285,22.25,24.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,22.25,24.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +165286,22.75,24.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,22.75,24.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +165287,23.25,24.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,23.25,24.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +165288,23.75,24.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,23.75,24.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +165289,24.25,24.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,24.25,24.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +165290,24.75,24.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,24.75,24.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +165291,25.25,24.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,25.25,24.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +165292,25.75,24.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,25.75,24.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +165293,26.25,24.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,26.25,24.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +165294,26.75,24.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,26.75,24.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +165295,27.25,24.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,27.25,24.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +165296,27.75,24.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,27.75,24.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +165297,28.25,24.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,28.25,24.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +165298,28.75,24.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,28.75,24.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +165299,29.25,24.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,29.25,24.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +165300,29.75,24.75,EGY,1263.0,New Valley,120.0,Egypt,102792.0,Al-Kharga Oasis,29.75,24.75,EGY,1263.0,New Valley,120.0,Egypt,102792.0,Al-Kharga Oasis,both,identical +165301,30.25,24.75,EGY,1263.0,New Valley,120.0,Egypt,102792.0,Al-Kharga Oasis,30.25,24.75,EGY,1263.0,New Valley,120.0,Egypt,102792.0,Al-Kharga Oasis,both,identical +165302,30.75,24.75,EGY,1263.0,New Valley,120.0,Egypt,102792.0,Al-Kharga Oasis,30.75,24.75,EGY,1263.0,New Valley,120.0,Egypt,102792.0,Al-Kharga Oasis,both,identical +165303,31.25,24.75,EGY,1263.0,New Valley,120.0,Egypt,102792.0,Al-Kharga Oasis,31.25,24.75,EGY,1263.0,New Valley,120.0,Egypt,102792.0,Al-Kharga Oasis,both,identical +165304,31.75,24.75,EGY,1263.0,New Valley,120.0,Egypt,102792.0,Al-Kharga Oasis,31.75,24.75,EGY,1263.0,New Valley,120.0,Egypt,102792.0,Al-Kharga Oasis,both,identical +165305,32.25,24.75,EGY,1263.0,New Valley,120.0,Egypt,102792.0,Al-Kharga Oasis,32.25,24.75,EGY,1263.0,New Valley,120.0,Egypt,102792.0,Al-Kharga Oasis,both,identical +165306,32.75,24.75,EGY,1247.0,Aswan,120.0,Egypt,102576.0,Zemam Out,32.75,24.75,EGY,1247.0,Aswan,120.0,Egypt,102576.0,Zemam Out,both,identical +165307,33.25,24.75,EGY,1247.0,Aswan,120.0,Egypt,102576.0,Zemam Out,33.25,24.75,EGY,1247.0,Aswan,120.0,Egypt,102576.0,Zemam Out,both,identical +165308,33.75,24.75,EGY,1267.0,Red Sea,120.0,Egypt,102833.0,Marsa Alam,33.75,24.75,EGY,1267.0,Red Sea,120.0,Egypt,102833.0,Marsa Alam,both,identical +165309,34.25,24.75,EGY,1267.0,Red Sea,120.0,Egypt,102833.0,Marsa Alam,34.25,24.75,EGY,1267.0,Red Sea,120.0,Egypt,102833.0,Marsa Alam,both,identical +165310,34.75,24.75,EGY,1267.0,Red Sea,120.0,Egypt,102833.0,Marsa Alam,34.75,24.75,EGY,1267.0,Red Sea,120.0,Egypt,102833.0,Marsa Alam,both,identical +165311,35.25,24.75,EGY,1267.0,Red Sea,120.0,Egypt,102833.0,Marsa Alam,35.25,24.75,EGY,1267.0,Red Sea,120.0,Egypt,102833.0,Marsa Alam,both,identical +165315,37.25,24.75,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130584.0,Umluj,37.25,24.75,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130584.0,Umluj,both,identical +165316,37.75,24.75,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130584.0,Umluj,37.75,24.75,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130584.0,Umluj,both,identical +165317,38.25,24.75,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130461.0,Yanbu,38.25,24.75,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130461.0,Yanbu,both,identical +165318,38.75,24.75,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130461.0,Yanbu,38.75,24.75,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130461.0,Yanbu,both,identical +165319,39.25,24.75,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130455.0,Al Madinah Al Munawwarah,39.25,24.75,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130455.0,Al Madinah Al Munawwarah,both,identical +165320,39.75,24.75,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130455.0,Al Madinah Al Munawwarah,39.75,24.75,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130455.0,Al Madinah Al Munawwarah,both,identical +165321,40.25,24.75,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130455.0,Al Madinah Al Munawwarah,40.25,24.75,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130455.0,Al Madinah Al Munawwarah,both,identical +165322,40.75,24.75,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130453.0,Al Hinakiyah,40.75,24.75,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130453.0,Al Hinakiyah,both,identical +165323,41.25,24.75,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130453.0,Al Hinakiyah,41.25,24.75,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130453.0,Al Hinakiyah,both,identical +165324,41.75,24.75,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130453.0,Al Hinakiyah,41.75,24.75,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130453.0,Al Hinakiyah,both,identical +165325,42.25,24.75,SAU,2956.0,Al Qaseem,266.0,Saudi Arabia,130470.0,Dariyah,42.25,24.75,SAU,2956.0,Al Qaseem,266.0,Saudi Arabia,130470.0,Dariyah,both,identical +165326,42.75,24.75,SAU,2956.0,Al Qaseem,266.0,Saudi Arabia,130470.0,Dariyah,42.75,24.75,SAU,2956.0,Al Qaseem,266.0,Saudi Arabia,130470.0,Dariyah,both,identical +165327,43.25,24.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130476.0,Ad Duwadimi,43.25,24.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130476.0,Ad Duwadimi,both,identical +165328,43.75,24.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130476.0,Ad Duwadimi,43.75,24.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130476.0,Ad Duwadimi,both,identical +165329,44.25,24.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130476.0,Ad Duwadimi,44.25,24.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130476.0,Ad Duwadimi,both,identical +165330,44.75,24.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130476.0,Ad Duwadimi,44.75,24.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130476.0,Ad Duwadimi,both,identical +165331,45.25,24.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130492.0,Marat,45.25,24.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130492.0,Marat,both,identical +165332,45.75,24.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130492.0,Marat,45.75,24.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130492.0,Marat,both,identical +165333,46.25,24.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130489.0,Duruma,46.25,24.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130489.0,Duruma,both,identical +165334,46.75,24.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130486.0,Ar Riyad,46.75,24.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130486.0,Ar Riyad,both,identical +165335,47.25,24.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130486.0,Ar Riyad,47.25,24.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130486.0,Ar Riyad,both,identical +165336,47.75,24.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,47.75,24.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +165337,48.25,24.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,48.25,24.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +165338,48.75,24.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,48.75,24.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +165339,49.25,24.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,49.25,24.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +165340,49.75,24.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,49.75,24.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +165341,50.25,24.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,50.25,24.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,both,identical +165342,50.75,24.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,50.75,24.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,both,identical +165343,51.25,24.75,QAT,2935.0,Al Wakra Municipality,264.0,Qatar,130359.0,Al Adaid 98,51.25,24.75,QAT,2935.0,Al Wakra Municipality,264.0,Qatar,130359.0,Al Adaid 98,both,identical +165344,51.75,24.75,QAT,2935.0,Al Wakra Municipality,264.0,Qatar,130364.0,Mesaieed Industrial Area 93,51.75,24.75,QAT,2935.0,Al Wakra Municipality,264.0,Qatar,130364.0,Mesaieed Industrial Area 93,both,identical +165349,54.25,24.75,ARE,3184.0,Abu Dhabi,279.0,United Arab Emirates,132721.0,Administrative Unit Not Available,54.25,24.75,ARE,3184.0,Abu Dhabi,279.0,United Arab Emirates,132721.0,Administrative Unit Not Available,both,identical +165350,54.75,24.75,ARE,3184.0,Abu Dhabi,279.0,United Arab Emirates,132721.0,Administrative Unit Not Available,54.75,24.75,ARE,3184.0,Abu Dhabi,279.0,United Arab Emirates,132721.0,Administrative Unit Not Available,both,identical +165351,55.25,24.75,ARE,3186.0,Dubai,279.0,United Arab Emirates,132723.0,Administrative Unit Not Available,55.25,24.75,ARE,3186.0,Dubai,279.0,United Arab Emirates,132723.0,Administrative Unit Not Available,both,identical +165352,55.75,24.75,ARE,3184.0,Abu Dhabi,279.0,United Arab Emirates,132721.0,Administrative Unit Not Available,55.75,24.75,OMN,2897.0,Al Buraymi,259.0,Oman,130067.0,Mahdha,both,country_reassignment +165353,56.25,24.75,OMN,2895.0,Al Batinah North,259.0,Oman,130059.0,Shinas,56.25,24.75,OMN,2895.0,Al Batinah North,259.0,Oman,130059.0,Shinas,both,identical +165354,56.75,24.75,OMN,2895.0,Al Batinah North,259.0,Oman,130057.0,Liwa,56.75,24.75,OMN,2895.0,Al Batinah North,259.0,Oman,130057.0,Liwa,both,identical +165931,-14.75,25.25,MAR,,,,,,,-14.75,25.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +165932,-14.25,25.25,MAR,,,,,,,-14.25,25.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +165933,-13.75,25.25,MAR,,,,,,,-13.75,25.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +165934,-13.25,25.25,MAR,,,,,,,-13.25,25.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +165935,-12.75,25.25,MAR,,,,,,,-12.75,25.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +165936,-12.25,25.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,-12.25,25.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,identical +165937,-11.75,25.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104213.0,Bir Mogrein,-11.75,25.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104213.0,Bir Mogrein,both,identical +165938,-11.25,25.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104213.0,Bir Mogrein,-11.25,25.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104213.0,Bir Mogrein,both,identical +165939,-10.75,25.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104213.0,Bir Mogrein,-10.75,25.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104213.0,Bir Mogrein,both,identical +165940,-10.25,25.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104213.0,Bir Mogrein,-10.25,25.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104213.0,Bir Mogrein,both,identical +165941,-9.75,25.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104213.0,Bir Mogrein,-9.75,25.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104213.0,Bir Mogrein,both,identical +165942,-9.25,25.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104213.0,Bir Mogrein,-9.25,25.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104213.0,Bir Mogrein,both,identical +165943,-8.75,25.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104213.0,Bir Mogrein,-8.75,25.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104213.0,Bir Mogrein,both,identical +165944,-8.25,25.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104213.0,Bir Mogrein,-8.25,25.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104213.0,Bir Mogrein,both,identical +165945,-7.75,25.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104213.0,Bir Mogrein,-7.75,25.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104213.0,Bir Mogrein,both,identical +165946,-7.25,25.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104213.0,Bir Mogrein,-7.25,25.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104213.0,Bir Mogrein,both,identical +165947,-6.75,25.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104213.0,Bir Mogrein,-6.75,25.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104213.0,Bir Mogrein,both,identical +165948,-6.25,25.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104213.0,Bir Mogrein,-6.25,25.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104213.0,Bir Mogrein,both,identical +165949,-5.75,25.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104213.0,Bir Mogrein,-5.75,25.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104213.0,Bir Mogrein,both,identical +165950,-5.25,25.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104213.0,Bir Mogrein,-5.25,25.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104213.0,Bir Mogrein,both,identical +165951,-4.75,25.25,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,-4.75,25.25,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,both,identical +165952,-4.25,25.25,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,-4.25,25.25,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,both,identical +165953,-3.75,25.25,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,-3.75,25.25,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,both,identical +165954,-3.25,25.25,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,-3.25,25.25,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,both,identical +165955,-2.75,25.25,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,-2.75,25.25,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,both,identical +165956,-2.25,25.25,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,-2.25,25.25,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,both,identical +165957,-1.75,25.25,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,-1.75,25.25,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,both,identical +165958,-1.25,25.25,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,-1.25,25.25,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,both,identical +165959,-0.75,25.25,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,-0.75,25.25,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,both,identical +165960,-0.25,25.25,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,-0.25,25.25,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,both,identical +165961,0.25,25.25,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,0.25,25.25,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,both,identical +165962,0.75,25.25,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,0.75,25.25,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,both,identical +165963,1.25,25.25,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,1.25,25.25,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,both,identical +165964,1.75,25.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101294.0,In Ghar,1.75,25.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101294.0,In Ghar,both,identical +165965,2.25,25.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,2.25,25.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,both,identical +165966,2.75,25.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,2.75,25.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,both,identical +165967,3.25,25.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,3.25,25.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,both,identical +165968,3.75,25.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,3.75,25.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,both,identical +165969,4.25,25.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,4.25,25.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,both,identical +165970,4.75,25.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,4.75,25.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,both,identical +165971,5.25,25.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101292.0,Idles,5.25,25.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101292.0,Idles,both,identical +165972,5.75,25.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101292.0,Idles,5.75,25.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101292.0,Idles,both,identical +165973,6.25,25.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101292.0,Idles,6.25,25.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101292.0,Idles,both,identical +165974,6.75,25.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101292.0,Idles,6.75,25.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101292.0,Idles,both,identical +165975,7.25,25.25,DZA,1022.0,Illizi,101.0,Algeria,100671.0,Bordj El Haoues,7.25,25.25,DZA,1022.0,Illizi,101.0,Algeria,100671.0,Bordj El Haoues,both,identical +165976,7.75,25.25,DZA,1022.0,Illizi,101.0,Algeria,100675.0,Illizi,7.75,25.25,DZA,1022.0,Illizi,101.0,Algeria,100675.0,Illizi,both,identical +165977,8.25,25.25,DZA,1022.0,Illizi,101.0,Algeria,100671.0,Bordj El Haoues,8.25,25.25,DZA,1022.0,Illizi,101.0,Algeria,100671.0,Bordj El Haoues,both,identical +165978,8.75,25.25,DZA,1022.0,Illizi,101.0,Algeria,100671.0,Bordj El Haoues,8.75,25.25,DZA,1022.0,Illizi,101.0,Algeria,100671.0,Bordj El Haoues,both,identical +165979,9.25,25.25,DZA,1022.0,Illizi,101.0,Algeria,100675.0,Illizi,9.25,25.25,DZA,1022.0,Illizi,101.0,Algeria,100675.0,Illizi,both,identical +165980,9.75,25.25,DZA,1022.0,Illizi,101.0,Algeria,100675.0,Illizi,9.75,25.25,DZA,1022.0,Illizi,101.0,Algeria,100675.0,Illizi,both,identical +165981,10.25,25.25,LBY,1426.0,South,140.0,Libya,104040.0,Ghat,10.25,25.25,LBY,1426.0,South,140.0,Libya,104040.0,Ghat,both,identical +165982,10.75,25.25,LBY,1426.0,South,140.0,Libya,104040.0,Ghat,10.75,25.25,LBY,1426.0,South,140.0,Libya,104040.0,Ghat,both,identical +165983,11.25,25.25,LBY,1426.0,South,140.0,Libya,104040.0,Ghat,11.25,25.25,LBY,1426.0,South,140.0,Libya,104040.0,Ghat,both,identical +165984,11.75,25.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,11.75,25.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +165985,12.25,25.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,12.25,25.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +165986,12.75,25.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,12.75,25.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +165987,13.25,25.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,13.25,25.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +165988,13.75,25.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,13.75,25.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +165989,14.25,25.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,14.25,25.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +165990,14.75,25.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,14.75,25.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +165991,15.25,25.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,15.25,25.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +165992,15.75,25.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,15.75,25.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +165993,16.25,25.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,16.25,25.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +165994,16.75,25.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,16.75,25.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +165995,17.25,25.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,17.25,25.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +165996,17.75,25.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,17.75,25.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +165997,18.25,25.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,18.25,25.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +165998,18.75,25.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,18.75,25.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +165999,19.25,25.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,19.25,25.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +166000,19.75,25.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,19.75,25.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +166001,20.25,25.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,20.25,25.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +166002,20.75,25.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,20.75,25.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +166003,21.25,25.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,21.25,25.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +166004,21.75,25.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,21.75,25.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +166005,22.25,25.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,22.25,25.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +166006,22.75,25.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,22.75,25.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +166007,23.25,25.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,23.25,25.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +166008,23.75,25.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,23.75,25.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +166009,24.25,25.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,24.25,25.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +166010,24.75,25.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,24.75,25.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +166011,25.25,25.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,25.25,25.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +166012,25.75,25.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,25.75,25.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +166013,26.25,25.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,26.25,25.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +166014,26.75,25.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,26.75,25.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +166015,27.25,25.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,27.25,25.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +166016,27.75,25.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,27.75,25.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +166017,28.25,25.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,28.25,25.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +166018,28.75,25.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,28.75,25.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +166019,29.25,25.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,29.25,25.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +166020,29.75,25.25,EGY,1263.0,New Valley,120.0,Egypt,102792.0,Al-Kharga Oasis,29.75,25.25,EGY,1263.0,New Valley,120.0,Egypt,102792.0,Al-Kharga Oasis,both,identical +166021,30.25,25.25,EGY,1263.0,New Valley,120.0,Egypt,102792.0,Al-Kharga Oasis,30.25,25.25,EGY,1263.0,New Valley,120.0,Egypt,102792.0,Al-Kharga Oasis,both,identical +166022,30.75,25.25,EGY,1263.0,New Valley,120.0,Egypt,102792.0,Al-Kharga Oasis,30.75,25.25,EGY,1263.0,New Valley,120.0,Egypt,102792.0,Al-Kharga Oasis,both,identical +166023,31.25,25.25,EGY,1263.0,New Valley,120.0,Egypt,102792.0,Al-Kharga Oasis,31.25,25.25,EGY,1263.0,New Valley,120.0,Egypt,102792.0,Al-Kharga Oasis,both,identical +166024,31.75,25.25,EGY,1263.0,New Valley,120.0,Egypt,102792.0,Al-Kharga Oasis,31.75,25.25,EGY,1263.0,New Valley,120.0,Egypt,102792.0,Al-Kharga Oasis,both,identical +166025,32.25,25.25,EGY,1263.0,New Valley,120.0,Egypt,102792.0,Al-Kharga Oasis,32.25,25.25,EGY,1263.0,New Valley,120.0,Egypt,102792.0,Al-Kharga Oasis,both,identical +166026,32.75,25.25,EGY,1266.0,Qena,120.0,Egypt,102830.0,Zemam Out,32.75,25.25,EGY,1266.0,Qena,120.0,Egypt,102830.0,Zemam Out,both,identical +166027,33.25,25.25,EGY,1247.0,Aswan,120.0,Egypt,102576.0,Zemam Out,33.25,25.25,EGY,1247.0,Aswan,120.0,Egypt,102576.0,Zemam Out,both,identical +166028,33.75,25.25,EGY,1267.0,Red Sea,120.0,Egypt,102833.0,Marsa Alam,33.75,25.25,EGY,1267.0,Red Sea,120.0,Egypt,102833.0,Marsa Alam,both,identical +166029,34.25,25.25,EGY,1267.0,Red Sea,120.0,Egypt,102833.0,Marsa Alam,34.25,25.25,EGY,1267.0,Red Sea,120.0,Egypt,102833.0,Marsa Alam,both,identical +166030,34.75,25.25,EGY,1267.0,Red Sea,120.0,Egypt,102833.0,Marsa Alam,34.75,25.25,EGY,1267.0,Red Sea,120.0,Egypt,102833.0,Marsa Alam,both,identical +166035,37.25,25.25,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130584.0,Umluj,37.25,25.25,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130584.0,Umluj,both,identical +166036,37.75,25.25,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130584.0,Umluj,37.75,25.25,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130584.0,Umluj,both,identical +166037,38.25,25.25,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130454.0,Al Is,38.25,25.25,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130454.0,Al Is,both,identical +166038,38.75,25.25,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130455.0,Al Madinah Al Munawwarah,38.75,25.25,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130455.0,Al Madinah Al Munawwarah,both,identical +166039,39.25,25.25,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130459.0,Khaybar,39.25,25.25,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130459.0,Khaybar,both,identical +166040,39.75,25.25,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130459.0,Khaybar,39.75,25.25,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130459.0,Khaybar,both,identical +166041,40.25,25.25,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130453.0,Al Hinakiyah,40.25,25.25,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130453.0,Al Hinakiyah,both,identical +166042,40.75,25.25,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130453.0,Al Hinakiyah,40.75,25.25,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130453.0,Al Hinakiyah,both,identical +166043,41.25,25.25,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130453.0,Al Hinakiyah,41.25,25.25,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130453.0,Al Hinakiyah,both,identical +166044,41.75,25.25,SAU,2956.0,Al Qaseem,266.0,Saudi Arabia,130472.0,Uqlat As Suqur,41.75,25.25,SAU,2956.0,Al Qaseem,266.0,Saudi Arabia,130472.0,Uqlat As Suqur,both,identical +166045,42.25,25.25,SAU,2956.0,Al Qaseem,266.0,Saudi Arabia,130466.0,An Nabhaniyah,42.25,25.25,SAU,2956.0,Al Qaseem,266.0,Saudi Arabia,130466.0,An Nabhaniyah,both,identical +166046,42.75,25.25,SAU,2956.0,Al Qaseem,266.0,Saudi Arabia,130466.0,An Nabhaniyah,42.75,25.25,SAU,2956.0,Al Qaseem,266.0,Saudi Arabia,130466.0,An Nabhaniyah,both,identical +166047,43.25,25.25,SAU,2956.0,Al Qaseem,266.0,Saudi Arabia,130473.0,Uyun Al Jiwa,43.25,25.25,SAU,2956.0,Al Qaseem,266.0,Saudi Arabia,130473.0,Uyun Al Jiwa,both,identical +166048,43.75,25.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130476.0,Ad Duwadimi,43.75,25.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130476.0,Ad Duwadimi,both,identical +166049,44.25,25.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130476.0,Ad Duwadimi,44.25,25.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130476.0,Ad Duwadimi,both,identical +166050,44.75,25.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130476.0,Ad Duwadimi,44.75,25.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130476.0,Ad Duwadimi,both,identical +166051,45.25,25.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130494.0,Shaqra,45.25,25.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130494.0,Shaqra,both,identical +166052,45.75,25.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130495.0,Thadiq,45.75,25.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130495.0,Thadiq,both,identical +166053,46.25,25.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130491.0,Huraymila,46.25,25.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130491.0,Huraymila,both,identical +166054,46.75,25.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130493.0,Rumah,46.75,25.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130493.0,Rumah,both,identical +166055,47.25,25.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130493.0,Rumah,47.25,25.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130493.0,Rumah,both,identical +166056,47.75,25.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,47.75,25.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +166057,48.25,25.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,48.25,25.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +166058,48.75,25.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,48.75,25.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +166059,49.25,25.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,49.25,25.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +166060,49.75,25.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,49.75,25.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +166061,50.25,25.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,50.25,25.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130520.0,Al Udayd,both,identical +166062,50.75,25.25,QAT,2934.0,Al Sheehaniya Municipality,264.0,Qatar,130358.0,Umm Bab 84,50.75,25.25,QAT,2934.0,Al Sheehaniya Municipality,264.0,Qatar,130358.0,Umm Bab 84,both,identical +166063,51.25,25.25,QAT,2934.0,Al Sheehaniya Municipality,264.0,Qatar,130357.0,Rawdat Rashed 82,51.25,25.25,QAT,2934.0,Al Sheehaniya Municipality,264.0,Qatar,130357.0,Rawdat Rashed 82,both,identical +166064,51.75,25.25,QAT,2935.0,Al Wakra Municipality,264.0,Qatar,130361.0,Al Thumama / Al Wukair/Al Mashaf 91,51.75,25.25,QAT,2935.0,Al Wakra Municipality,264.0,Qatar,130361.0,Al Thumama / Al Wukair/Al Mashaf 91,both,identical +166071,55.25,25.25,ARE,3186.0,Dubai,279.0,United Arab Emirates,132723.0,Administrative Unit Not Available,55.25,25.25,ARE,3186.0,Dubai,279.0,United Arab Emirates,132723.0,Administrative Unit Not Available,both,identical +166072,55.75,25.25,ARE,3189.0,Sharjah,279.0,United Arab Emirates,132726.0,Administrative Unit Not Available,55.75,25.25,ARE,3189.0,Sharjah,279.0,United Arab Emirates,132726.0,Administrative Unit Not Available,both,identical +166073,56.25,25.25,ARE,3187.0,Fujairah,279.0,United Arab Emirates,132724.0,Administrative Unit Not Available,56.25,25.25,ARE,3187.0,Fujairah,279.0,United Arab Emirates,132724.0,Administrative Unit Not Available,both,identical +166078,58.75,25.25,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126641.0,Jask,58.75,25.25,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126641.0,Jask,both,identical +166079,59.25,25.25,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126641.0,Jask,59.25,25.25,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126641.0,Jask,both,identical +166080,59.75,25.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126868.0,Konarak,59.75,25.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126868.0,Konarak,both,identical +166081,60.25,25.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126868.0,Konarak,60.25,25.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126868.0,Konarak,both,identical +166082,60.75,25.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126860.0,Chabahar,60.75,25.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126860.0,Chabahar,both,identical +166083,61.25,25.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126860.0,Chabahar,61.25,25.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126860.0,Chabahar,both,identical +166084,61.75,25.25,PAK,2905.0,Balochistan,260.0,Pakistan,130102.0,Gwadar,61.75,25.25,PAK,2905.0,Balochistan,260.0,Pakistan,130102.0,Gwadar,both,identical +166651,-14.75,25.75,MAR,,,,,,,-14.75,25.75,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +166652,-14.25,25.75,MAR,,,,,,,-14.25,25.75,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +166653,-13.75,25.75,MAR,,,,,,,-13.75,25.75,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +166654,-13.25,25.75,MAR,,,,,,,-13.25,25.75,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +166655,-12.75,25.75,MAR,,,,,,,-12.75,25.75,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +166656,-12.25,25.75,MAR,,,,,,,-12.25,25.75,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +166657,-11.75,25.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104213.0,Bir Mogrein,-11.75,25.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104213.0,Bir Mogrein,both,identical +166658,-11.25,25.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104213.0,Bir Mogrein,-11.25,25.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104213.0,Bir Mogrein,both,identical +166659,-10.75,25.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104213.0,Bir Mogrein,-10.75,25.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104213.0,Bir Mogrein,both,identical +166660,-10.25,25.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104213.0,Bir Mogrein,-10.25,25.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104213.0,Bir Mogrein,both,identical +166661,-9.75,25.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104213.0,Bir Mogrein,-9.75,25.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104213.0,Bir Mogrein,both,identical +166662,-9.25,25.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104213.0,Bir Mogrein,-9.25,25.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104213.0,Bir Mogrein,both,identical +166663,-8.75,25.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104213.0,Bir Mogrein,-8.75,25.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104213.0,Bir Mogrein,both,identical +166664,-8.25,25.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104213.0,Bir Mogrein,-8.25,25.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104213.0,Bir Mogrein,both,identical +166665,-7.75,25.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104213.0,Bir Mogrein,-7.75,25.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104213.0,Bir Mogrein,both,identical +166666,-7.25,25.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104213.0,Bir Mogrein,-7.25,25.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104213.0,Bir Mogrein,both,identical +166667,-6.75,25.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104213.0,Bir Mogrein,-6.75,25.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104213.0,Bir Mogrein,both,identical +166668,-6.25,25.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104213.0,Bir Mogrein,-6.25,25.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104213.0,Bir Mogrein,both,identical +166669,-5.75,25.75,DZA,1044.0,Tindouf,101.0,Algeria,101371.0,Tindouf,-5.75,25.75,DZA,1044.0,Tindouf,101.0,Algeria,101371.0,Tindouf,both,identical +166670,-5.25,25.75,DZA,1044.0,Tindouf,101.0,Algeria,101371.0,Tindouf,-5.25,25.75,DZA,1044.0,Tindouf,101.0,Algeria,101371.0,Tindouf,both,identical +166671,-4.75,25.75,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,-4.75,25.75,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,both,identical +166672,-4.25,25.75,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,-4.25,25.75,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,both,identical +166673,-3.75,25.75,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,-3.75,25.75,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,both,identical +166674,-3.25,25.75,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,-3.25,25.75,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,both,identical +166675,-2.75,25.75,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,-2.75,25.75,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,both,identical +166676,-2.25,25.75,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,-2.25,25.75,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,both,identical +166677,-1.75,25.75,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,-1.75,25.75,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,both,identical +166678,-1.25,25.75,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,-1.25,25.75,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,both,identical +166679,-0.75,25.75,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,-0.75,25.75,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,both,identical +166680,-0.25,25.75,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,-0.25,25.75,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,both,identical +166681,0.25,25.75,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,0.25,25.75,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,both,identical +166682,0.75,25.75,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,0.75,25.75,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,both,identical +166683,1.25,25.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101294.0,In Ghar,1.25,25.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101294.0,In Ghar,both,identical +166684,1.75,25.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101294.0,In Ghar,1.75,25.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101294.0,In Ghar,both,identical +166685,2.25,25.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101294.0,In Ghar,2.25,25.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101294.0,In Ghar,both,identical +166686,2.75,25.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101296.0,In Salah,2.75,25.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101296.0,In Salah,both,identical +166687,3.25,25.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101296.0,In Salah,3.25,25.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101296.0,In Salah,both,identical +166688,3.75,25.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101296.0,In Salah,3.75,25.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101296.0,In Salah,both,identical +166689,4.25,25.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,4.25,25.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,both,identical +166690,4.75,25.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,4.75,25.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,both,identical +166691,5.25,25.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101292.0,Idles,5.25,25.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101292.0,Idles,both,identical +166692,5.75,25.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101292.0,Idles,5.75,25.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101292.0,Idles,both,identical +166693,6.25,25.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101292.0,Idles,6.25,25.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101292.0,Idles,both,identical +166694,6.75,25.75,DZA,1022.0,Illizi,101.0,Algeria,100675.0,Illizi,6.75,25.75,DZA,1022.0,Illizi,101.0,Algeria,100675.0,Illizi,both,identical +166695,7.25,25.75,DZA,1022.0,Illizi,101.0,Algeria,100675.0,Illizi,7.25,25.75,DZA,1022.0,Illizi,101.0,Algeria,100675.0,Illizi,both,identical +166696,7.75,25.75,DZA,1022.0,Illizi,101.0,Algeria,100675.0,Illizi,7.75,25.75,DZA,1022.0,Illizi,101.0,Algeria,100675.0,Illizi,both,identical +166697,8.25,25.75,DZA,1022.0,Illizi,101.0,Algeria,100675.0,Illizi,8.25,25.75,DZA,1022.0,Illizi,101.0,Algeria,100675.0,Illizi,both,identical +166698,8.75,25.75,DZA,1022.0,Illizi,101.0,Algeria,100675.0,Illizi,8.75,25.75,DZA,1022.0,Illizi,101.0,Algeria,100675.0,Illizi,both,identical +166699,9.25,25.75,DZA,1022.0,Illizi,101.0,Algeria,100675.0,Illizi,9.25,25.75,DZA,1022.0,Illizi,101.0,Algeria,100675.0,Illizi,both,identical +166700,9.75,25.75,LBY,1426.0,South,140.0,Libya,104040.0,Ghat,9.75,25.75,LBY,1426.0,South,140.0,Libya,104040.0,Ghat,both,identical +166701,10.25,25.75,LBY,1426.0,South,140.0,Libya,104040.0,Ghat,10.25,25.75,LBY,1426.0,South,140.0,Libya,104040.0,Ghat,both,identical +166702,10.75,25.75,LBY,1426.0,South,140.0,Libya,104040.0,Ghat,10.75,25.75,LBY,1426.0,South,140.0,Libya,104040.0,Ghat,both,identical +166703,11.25,25.75,LBY,1426.0,South,140.0,Libya,104040.0,Ghat,11.25,25.75,LBY,1426.0,South,140.0,Libya,104040.0,Ghat,both,identical +166704,11.75,25.75,LBY,1426.0,South,140.0,Libya,104043.0,Ubari,11.75,25.75,LBY,1426.0,South,140.0,Libya,104043.0,Ubari,both,identical +166705,12.25,25.75,LBY,1426.0,South,140.0,Libya,104043.0,Ubari,12.25,25.75,LBY,1426.0,South,140.0,Libya,104043.0,Ubari,both,identical +166706,12.75,25.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,12.75,25.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +166707,13.25,25.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,13.25,25.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +166708,13.75,25.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,13.75,25.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +166709,14.25,25.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,14.25,25.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +166710,14.75,25.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,14.75,25.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +166711,15.25,25.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,15.25,25.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +166712,15.75,25.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,15.75,25.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +166713,16.25,25.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,16.25,25.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +166714,16.75,25.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,16.75,25.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +166715,17.25,25.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,17.25,25.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +166716,17.75,25.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,17.75,25.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +166717,18.25,25.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,18.25,25.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +166718,18.75,25.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,18.75,25.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +166719,19.25,25.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,19.25,25.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +166720,19.75,25.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,19.75,25.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +166721,20.25,25.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,20.25,25.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +166722,20.75,25.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,20.75,25.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +166723,21.25,25.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,21.25,25.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +166724,21.75,25.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,21.75,25.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +166725,22.25,25.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,22.25,25.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +166726,22.75,25.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,22.75,25.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +166727,23.25,25.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,23.25,25.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +166728,23.75,25.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,23.75,25.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +166729,24.25,25.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,24.25,25.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +166730,24.75,25.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,24.75,25.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +166731,25.25,25.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,25.25,25.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +166732,25.75,25.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,25.75,25.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +166733,26.25,25.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,26.25,25.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +166734,26.75,25.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,26.75,25.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +166735,27.25,25.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,27.25,25.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +166736,27.75,25.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,27.75,25.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +166737,28.25,25.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,28.25,25.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +166738,28.75,25.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,28.75,25.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +166739,29.25,25.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,29.25,25.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +166740,29.75,25.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,29.75,25.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +166741,30.25,25.75,EGY,1263.0,New Valley,120.0,Egypt,102792.0,Al-Kharga Oasis,30.25,25.75,EGY,1263.0,New Valley,120.0,Egypt,102792.0,Al-Kharga Oasis,both,identical +166742,30.75,25.75,EGY,1263.0,New Valley,120.0,Egypt,102792.0,Al-Kharga Oasis,30.75,25.75,EGY,1263.0,New Valley,120.0,Egypt,102792.0,Al-Kharga Oasis,both,identical +166743,31.25,25.75,EGY,1263.0,New Valley,120.0,Egypt,102792.0,Al-Kharga Oasis,31.25,25.75,EGY,1263.0,New Valley,120.0,Egypt,102792.0,Al-Kharga Oasis,both,identical +166744,31.75,25.75,EGY,1263.0,New Valley,120.0,Egypt,102792.0,Al-Kharga Oasis,31.75,25.75,EGY,1263.0,New Valley,120.0,Egypt,102792.0,Al-Kharga Oasis,both,identical +166745,32.25,25.75,EGY,1263.0,New Valley,120.0,Egypt,102792.0,Al-Kharga Oasis,32.25,25.75,EGY,1263.0,New Valley,120.0,Egypt,102792.0,Al-Kharga Oasis,both,identical +166746,32.75,25.75,EGY,1266.0,Qena,120.0,Egypt,102830.0,Zemam Out,32.75,25.75,EGY,1266.0,Qena,120.0,Egypt,102830.0,Zemam Out,both,identical +166747,33.25,25.75,EGY,1266.0,Qena,120.0,Egypt,102830.0,Zemam Out,33.25,25.75,EGY,1266.0,Qena,120.0,Egypt,102830.0,Zemam Out,both,identical +166748,33.75,25.75,EGY,1267.0,Red Sea,120.0,Egypt,102834.0,Qusir,33.75,25.75,EGY,1267.0,Red Sea,120.0,Egypt,102834.0,Qusir,both,identical +166749,34.25,25.75,EGY,1267.0,Red Sea,120.0,Egypt,102834.0,Qusir,34.25,25.75,EGY,1267.0,Red Sea,120.0,Egypt,102834.0,Qusir,both,identical +166750,34.75,25.75,EGY,1267.0,Red Sea,120.0,Egypt,102834.0,Qusir,34.75,25.75,EGY,1267.0,Red Sea,120.0,Egypt,102834.0,Qusir,both,identical +166754,36.75,25.75,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130584.0,Umluj,36.75,25.75,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130584.0,Umluj,both,identical +166755,37.25,25.75,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130584.0,Umluj,37.25,25.75,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130584.0,Umluj,both,identical +166756,37.75,25.75,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130457.0,Al Ula,37.75,25.75,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130457.0,Al Ula,both,identical +166757,38.25,25.75,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130454.0,Al Is,38.25,25.75,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130454.0,Al Is,both,identical +166758,38.75,25.75,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130454.0,Al Is,38.75,25.75,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130454.0,Al Is,both,identical +166759,39.25,25.75,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130459.0,Khaybar,39.25,25.75,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130459.0,Khaybar,both,identical +166760,39.75,25.75,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130459.0,Khaybar,39.75,25.75,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130459.0,Khaybar,both,identical +166761,40.25,25.75,SAU,2960.0,Hail,266.0,Saudi Arabia,130527.0,Al Hait,40.25,25.75,SAU,2960.0,Hail,266.0,Saudi Arabia,130527.0,Al Hait,both,identical +166762,40.75,25.75,SAU,2960.0,Hail,266.0,Saudi Arabia,130527.0,Al Hait,40.75,25.75,SAU,2960.0,Hail,266.0,Saudi Arabia,130527.0,Al Hait,both,identical +166763,41.25,25.75,SAU,2960.0,Hail,266.0,Saudi Arabia,130528.0,As Sulaymi,41.25,25.75,SAU,2960.0,Hail,266.0,Saudi Arabia,130528.0,As Sulaymi,both,identical +166764,41.75,25.75,SAU,2956.0,Al Qaseem,266.0,Saudi Arabia,130472.0,Uqlat As Suqur,41.75,25.75,SAU,2956.0,Al Qaseem,266.0,Saudi Arabia,130472.0,Uqlat As Suqur,both,identical +166765,42.25,25.75,SAU,2956.0,Al Qaseem,266.0,Saudi Arabia,130472.0,Uqlat As Suqur,42.25,25.75,SAU,2956.0,Al Qaseem,266.0,Saudi Arabia,130472.0,Uqlat As Suqur,both,identical +166766,42.75,25.75,SAU,2956.0,Al Qaseem,266.0,Saudi Arabia,130466.0,An Nabhaniyah,42.75,25.75,SAU,2956.0,Al Qaseem,266.0,Saudi Arabia,130466.0,An Nabhaniyah,both,identical +166767,43.25,25.75,SAU,2956.0,Al Qaseem,266.0,Saudi Arabia,130473.0,Uyun Al Jiwa,43.25,25.75,SAU,2956.0,Al Qaseem,266.0,Saudi Arabia,130473.0,Uyun Al Jiwa,both,identical +166768,43.75,25.75,SAU,2956.0,Al Qaseem,266.0,Saudi Arabia,130463.0,Al Badai,43.75,25.75,SAU,2956.0,Al Qaseem,266.0,Saudi Arabia,130463.0,Al Badai,both,identical +166769,44.25,25.75,SAU,2956.0,Al Qaseem,266.0,Saudi Arabia,130465.0,Al Midhnab,44.25,25.75,SAU,2956.0,Al Qaseem,266.0,Saudi Arabia,130465.0,Al Midhnab,both,identical +166770,44.75,25.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130468.0,Ash Shimasiyah,44.75,25.75,SAU,2956.0,Al Qaseem,266.0,Saudi Arabia,130468.0,Ash Shimasiyah,both,admin_reallocation +166771,45.25,25.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130482.0,Al Majmaah,45.25,25.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130482.0,Al Majmaah,both,identical +166772,45.75,25.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130482.0,Al Majmaah,45.75,25.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130482.0,Al Majmaah,both,identical +166773,46.25,25.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130495.0,Thadiq,46.25,25.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130495.0,Thadiq,both,identical +166774,46.75,25.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130493.0,Rumah,46.75,25.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130493.0,Rumah,both,identical +166775,47.25,25.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130493.0,Rumah,47.25,25.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130493.0,Rumah,both,identical +166776,47.75,25.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,47.75,25.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +166777,48.25,25.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,48.25,25.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +166778,48.75,25.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,48.75,25.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +166779,49.25,25.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,49.25,25.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +166780,49.75,25.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130521.0,Buqayq,49.75,25.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130521.0,Buqayq,both,identical +166781,50.25,25.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,50.25,25.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +166782,50.75,25.75,QAT,2934.0,Al Sheehaniya Municipality,264.0,Qatar,130356.0,Lijmiliya 73,50.75,25.75,QAT,2934.0,Al Sheehaniya Municipality,264.0,Qatar,130356.0,Lijmiliya 73,both,identical +166783,51.25,25.75,QAT,2931.0,Al Khor And Al Thakhira Municipality,264.0,Qatar,130336.0,Al Ghuwairiya 76,51.25,25.75,QAT,2931.0,Al Khor And Al Thakhira Municipality,264.0,Qatar,130336.0,Al Ghuwairiya 76,both,identical +166784,51.75,25.75,QAT,2931.0,Al Khor And Al Thakhira Municipality,264.0,Qatar,130337.0,Al Thakhira/Rass Laffan/Umm Birka 75,51.75,25.75,QAT,2931.0,Al Khor And Al Thakhira Municipality,264.0,Qatar,130337.0,Al Thakhira/Rass Laffan/Umm Birka 75,both,identical +166792,55.75,25.75,ARE,3188.0,Ras Al Khaimah,279.0,United Arab Emirates,132725.0,Administrative Unit Not Available,55.75,25.75,ARE,3188.0,Ras Al Khaimah,279.0,United Arab Emirates,132725.0,Administrative Unit Not Available,both,identical +166793,56.25,25.75,ARE,3188.0,Ras Al Khaimah,279.0,United Arab Emirates,132725.0,Administrative Unit Not Available,56.25,25.75,ARE,3188.0,Ras Al Khaimah,279.0,United Arab Emirates,132725.0,Administrative Unit Not Available,both,identical +166795,57.25,25.75,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126641.0,Jask,57.25,25.75,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126641.0,Jask,both,identical +166796,57.75,25.75,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126641.0,Jask,57.75,25.75,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126641.0,Jask,both,identical +166797,58.25,25.75,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126641.0,Jask,58.25,25.75,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126641.0,Jask,both,identical +166798,58.75,25.75,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126641.0,Jask,58.75,25.75,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126641.0,Jask,both,identical +166799,59.25,25.75,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126868.0,Konarak,59.25,25.75,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126868.0,Konarak,both,identical +166800,59.75,25.75,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126868.0,Konarak,59.75,25.75,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126868.0,Konarak,both,identical +166801,60.25,25.75,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126868.0,Konarak,60.25,25.75,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126868.0,Konarak,both,identical +166802,60.75,25.75,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126860.0,Chabahar,60.75,25.75,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126860.0,Chabahar,both,identical +166803,61.25,25.75,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126860.0,Chabahar,61.25,25.75,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126860.0,Chabahar,both,identical +166804,61.75,25.75,PAK,2905.0,Balochistan,260.0,Pakistan,130102.0,Gwadar,61.75,25.75,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126860.0,Chabahar,both,country_reassignment +167372,-14.25,26.25,MAR,,,,,,,-14.25,26.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +167373,-13.75,26.25,MAR,,,,,,,-13.75,26.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +167374,-13.25,26.25,MAR,,,,,,,-13.25,26.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +167375,-12.75,26.25,MAR,,,,,,,-12.75,26.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +167376,-12.25,26.25,MAR,,,,,,,-12.25,26.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +167377,-11.75,26.25,MAR,,,,,,,-11.75,26.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +167378,-11.25,26.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,-11.25,26.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,identical +167379,-10.75,26.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,-10.75,26.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,identical +167380,-10.25,26.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,-10.25,26.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,identical +167381,-9.75,26.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,-9.75,26.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,identical +167382,-9.25,26.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,-9.25,26.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,identical +167383,-8.75,26.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,-8.75,26.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,identical +167384,-8.25,26.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104213.0,Bir Mogrein,-8.25,26.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104213.0,Bir Mogrein,both,identical +167385,-7.75,26.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104213.0,Bir Mogrein,-7.75,26.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104213.0,Bir Mogrein,both,identical +167386,-7.25,26.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104213.0,Bir Mogrein,-7.25,26.25,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104213.0,Bir Mogrein,both,identical +167387,-6.75,26.25,DZA,1044.0,Tindouf,101.0,Algeria,101371.0,Tindouf,-6.75,26.25,DZA,1044.0,Tindouf,101.0,Algeria,101371.0,Tindouf,both,identical +167388,-6.25,26.25,DZA,1044.0,Tindouf,101.0,Algeria,101371.0,Tindouf,-6.25,26.25,DZA,1044.0,Tindouf,101.0,Algeria,101371.0,Tindouf,both,identical +167389,-5.75,26.25,DZA,1044.0,Tindouf,101.0,Algeria,101371.0,Tindouf,-5.75,26.25,DZA,1044.0,Tindouf,101.0,Algeria,101371.0,Tindouf,both,identical +167390,-5.25,26.25,DZA,1044.0,Tindouf,101.0,Algeria,101371.0,Tindouf,-5.25,26.25,DZA,1044.0,Tindouf,101.0,Algeria,101371.0,Tindouf,both,identical +167391,-4.75,26.25,DZA,1044.0,Tindouf,101.0,Algeria,101371.0,Tindouf,-4.75,26.25,DZA,1044.0,Tindouf,101.0,Algeria,101371.0,Tindouf,both,identical +167392,-4.25,26.25,DZA,1044.0,Tindouf,101.0,Algeria,101371.0,Tindouf,-4.25,26.25,DZA,1044.0,Tindouf,101.0,Algeria,101371.0,Tindouf,both,identical +167393,-3.75,26.25,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,-3.75,26.25,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,both,identical +167394,-3.25,26.25,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,-3.25,26.25,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,both,identical +167395,-2.75,26.25,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,-2.75,26.25,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,both,identical +167396,-2.25,26.25,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,-2.25,26.25,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,both,identical +167397,-1.75,26.25,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,-1.75,26.25,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,both,identical +167398,-1.25,26.25,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,-1.25,26.25,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,both,identical +167399,-0.75,26.25,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,-0.75,26.25,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,both,identical +167400,-0.25,26.25,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,-0.25,26.25,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,both,identical +167401,0.25,26.25,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,0.25,26.25,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,both,identical +167402,0.75,26.25,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,0.75,26.25,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,both,identical +167403,1.25,26.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101294.0,In Ghar,1.25,26.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101294.0,In Ghar,both,identical +167404,1.75,26.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101294.0,In Ghar,1.75,26.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101294.0,In Ghar,both,identical +167405,2.25,26.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101294.0,In Ghar,2.25,26.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101294.0,In Ghar,both,identical +167406,2.75,26.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101296.0,In Salah,2.75,26.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101296.0,In Salah,both,identical +167407,3.25,26.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101296.0,In Salah,3.25,26.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101296.0,In Salah,both,identical +167408,3.75,26.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101296.0,In Salah,3.75,26.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101296.0,In Salah,both,identical +167409,4.25,26.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,4.25,26.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,both,identical +167410,4.75,26.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,4.75,26.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101293.0,In Amguel,both,identical +167411,5.25,26.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101292.0,Idles,5.25,26.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101292.0,Idles,both,identical +167412,5.75,26.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101292.0,Idles,5.75,26.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101292.0,Idles,both,identical +167413,6.25,26.25,DZA,1022.0,Illizi,101.0,Algeria,100675.0,Illizi,6.25,26.25,DZA,1022.0,Illizi,101.0,Algeria,100675.0,Illizi,both,identical +167414,6.75,26.25,DZA,1022.0,Illizi,101.0,Algeria,100675.0,Illizi,6.75,26.25,DZA,1022.0,Illizi,101.0,Algeria,100675.0,Illizi,both,identical +167415,7.25,26.25,DZA,1022.0,Illizi,101.0,Algeria,100675.0,Illizi,7.25,26.25,DZA,1022.0,Illizi,101.0,Algeria,100675.0,Illizi,both,identical +167416,7.75,26.25,DZA,1022.0,Illizi,101.0,Algeria,100675.0,Illizi,7.75,26.25,DZA,1022.0,Illizi,101.0,Algeria,100675.0,Illizi,both,identical +167417,8.25,26.25,DZA,1022.0,Illizi,101.0,Algeria,100675.0,Illizi,8.25,26.25,DZA,1022.0,Illizi,101.0,Algeria,100675.0,Illizi,both,identical +167418,8.75,26.25,DZA,1022.0,Illizi,101.0,Algeria,100675.0,Illizi,8.75,26.25,DZA,1022.0,Illizi,101.0,Algeria,100675.0,Illizi,both,identical +167419,9.25,26.25,DZA,1022.0,Illizi,101.0,Algeria,100675.0,Illizi,9.25,26.25,DZA,1022.0,Illizi,101.0,Algeria,100675.0,Illizi,both,identical +167420,9.75,26.25,LBY,1426.0,South,140.0,Libya,104040.0,Ghat,9.75,26.25,LBY,1426.0,South,140.0,Libya,104040.0,Ghat,both,identical +167421,10.25,26.25,LBY,1426.0,South,140.0,Libya,104040.0,Ghat,10.25,26.25,LBY,1426.0,South,140.0,Libya,104040.0,Ghat,both,identical +167422,10.75,26.25,LBY,1426.0,South,140.0,Libya,104040.0,Ghat,10.75,26.25,LBY,1426.0,South,140.0,Libya,104040.0,Ghat,both,identical +167423,11.25,26.25,LBY,1426.0,South,140.0,Libya,104040.0,Ghat,11.25,26.25,LBY,1426.0,South,140.0,Libya,104040.0,Ghat,both,identical +167424,11.75,26.25,LBY,1426.0,South,140.0,Libya,104043.0,Ubari,11.75,26.25,LBY,1426.0,South,140.0,Libya,104043.0,Ubari,both,identical +167425,12.25,26.25,LBY,1426.0,South,140.0,Libya,104043.0,Ubari,12.25,26.25,LBY,1426.0,South,140.0,Libya,104043.0,Ubari,both,identical +167426,12.75,26.25,LBY,1426.0,South,140.0,Libya,104043.0,Ubari,12.75,26.25,LBY,1426.0,South,140.0,Libya,104043.0,Ubari,both,identical +167427,13.25,26.25,LBY,1426.0,South,140.0,Libya,104043.0,Ubari,13.25,26.25,LBY,1426.0,South,140.0,Libya,104043.0,Ubari,both,identical +167428,13.75,26.25,LBY,1426.0,South,140.0,Libya,104043.0,Ubari,13.75,26.25,LBY,1426.0,South,140.0,Libya,104043.0,Ubari,both,identical +167429,14.25,26.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,14.25,26.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +167430,14.75,26.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,14.75,26.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +167431,15.25,26.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,15.25,26.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +167432,15.75,26.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,15.75,26.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +167433,16.25,26.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,16.25,26.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +167434,16.75,26.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,16.75,26.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +167435,17.25,26.25,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,17.25,26.25,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,both,identical +167436,17.75,26.25,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,17.75,26.25,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,both,identical +167437,18.25,26.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,18.25,26.25,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +167438,18.75,26.25,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,18.75,26.25,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,both,identical +167439,19.25,26.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,19.25,26.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +167440,19.75,26.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,19.75,26.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +167441,20.25,26.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,20.25,26.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +167442,20.75,26.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,20.75,26.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +167443,21.25,26.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,21.25,26.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +167444,21.75,26.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,21.75,26.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +167445,22.25,26.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,22.25,26.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +167446,22.75,26.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,22.75,26.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +167447,23.25,26.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,23.25,26.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +167448,23.75,26.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,23.75,26.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +167449,24.25,26.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,24.25,26.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +167450,24.75,26.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,24.75,26.25,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +167451,25.25,26.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,25.25,26.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +167452,25.75,26.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,25.75,26.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +167453,26.25,26.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,26.25,26.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +167454,26.75,26.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,26.75,26.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +167455,27.25,26.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,27.25,26.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +167456,27.75,26.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,27.75,26.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +167457,28.25,26.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,28.25,26.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +167458,28.75,26.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,28.75,26.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +167459,29.25,26.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,29.25,26.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +167460,29.75,26.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,29.75,26.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +167461,30.25,26.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,30.25,26.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +167462,30.75,26.25,EGY,1263.0,New Valley,120.0,Egypt,102792.0,Al-Kharga Oasis,30.75,26.25,EGY,1263.0,New Valley,120.0,Egypt,102792.0,Al-Kharga Oasis,both,identical +167463,31.25,26.25,EGY,1263.0,New Valley,120.0,Egypt,102792.0,Al-Kharga Oasis,31.25,26.25,EGY,1263.0,New Valley,120.0,Egypt,102792.0,Al-Kharga Oasis,both,identical +167464,31.75,26.25,EGY,1263.0,New Valley,120.0,Egypt,102792.0,Al-Kharga Oasis,31.75,26.25,EGY,1263.0,New Valley,120.0,Egypt,102792.0,Al-Kharga Oasis,both,identical +167465,32.25,26.25,EGY,1271.0,Suhag,120.0,Egypt,102893.0,Zemam Out,32.25,26.25,EGY,1271.0,Suhag,120.0,Egypt,102893.0,Zemam Out,both,identical +167466,32.75,26.25,EGY,1266.0,Qena,120.0,Egypt,102830.0,Zemam Out,32.75,26.25,EGY,1266.0,Qena,120.0,Egypt,102830.0,Zemam Out,both,identical +167467,33.25,26.25,EGY,1266.0,Qena,120.0,Egypt,102830.0,Zemam Out,33.25,26.25,EGY,1266.0,Qena,120.0,Egypt,102830.0,Zemam Out,both,identical +167468,33.75,26.25,EGY,1267.0,Red Sea,120.0,Egypt,102834.0,Qusir,33.75,26.25,EGY,1267.0,Red Sea,120.0,Egypt,102834.0,Qusir,both,identical +167469,34.25,26.25,EGY,1267.0,Red Sea,120.0,Egypt,102834.0,Qusir,34.25,26.25,EGY,1267.0,Red Sea,120.0,Egypt,102834.0,Qusir,both,identical +167473,36.25,26.25,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130579.0,Al Wajh,36.25,26.25,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130579.0,Al Wajh,both,identical +167474,36.75,26.25,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130579.0,Al Wajh,36.75,26.25,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130579.0,Al Wajh,both,identical +167475,37.25,26.25,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130579.0,Al Wajh,37.25,26.25,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130579.0,Al Wajh,both,identical +167476,37.75,26.25,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130457.0,Al Ula,37.75,26.25,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130457.0,Al Ula,both,identical +167477,38.25,26.25,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130457.0,Al Ula,38.25,26.25,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130457.0,Al Ula,both,identical +167478,38.75,26.25,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130459.0,Khaybar,38.75,26.25,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130459.0,Khaybar,both,identical +167479,39.25,26.25,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130459.0,Khaybar,39.25,26.25,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130459.0,Khaybar,both,identical +167480,39.75,26.25,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130459.0,Khaybar,39.75,26.25,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130459.0,Khaybar,both,identical +167481,40.25,26.25,SAU,2960.0,Hail,266.0,Saudi Arabia,130527.0,Al Hait,40.25,26.25,SAU,2960.0,Hail,266.0,Saudi Arabia,130527.0,Al Hait,both,identical +167482,40.75,26.25,SAU,2960.0,Hail,266.0,Saudi Arabia,130527.0,Al Hait,40.75,26.25,SAU,2960.0,Hail,266.0,Saudi Arabia,130527.0,Al Hait,both,identical +167483,41.25,26.25,SAU,2960.0,Hail,266.0,Saudi Arabia,130528.0,As Sulaymi,41.25,26.25,SAU,2960.0,Hail,266.0,Saudi Arabia,130528.0,As Sulaymi,both,identical +167484,41.75,26.25,SAU,2960.0,Hail,266.0,Saudi Arabia,130528.0,As Sulaymi,41.75,26.25,SAU,2960.0,Hail,266.0,Saudi Arabia,130528.0,As Sulaymi,both,identical +167485,42.25,26.25,SAU,2956.0,Al Qaseem,266.0,Saudi Arabia,130534.0,Simira,42.25,26.25,SAU,2960.0,Hail,266.0,Saudi Arabia,130534.0,Simira,both,admin_reallocation +167486,42.75,26.25,SAU,2956.0,Al Qaseem,266.0,Saudi Arabia,130473.0,Uyun Al Jiwa,42.75,26.25,SAU,2956.0,Al Qaseem,266.0,Saudi Arabia,130473.0,Uyun Al Jiwa,both,identical +167487,43.25,26.25,SAU,2956.0,Al Qaseem,266.0,Saudi Arabia,130473.0,Uyun Al Jiwa,43.25,26.25,SAU,2956.0,Al Qaseem,266.0,Saudi Arabia,130473.0,Uyun Al Jiwa,both,identical +167488,43.75,26.25,SAU,2956.0,Al Qaseem,266.0,Saudi Arabia,130473.0,Uyun Al Jiwa,43.75,26.25,SAU,2956.0,Al Qaseem,266.0,Saudi Arabia,130473.0,Uyun Al Jiwa,both,identical +167489,44.25,26.25,SAU,2956.0,Al Qaseem,266.0,Saudi Arabia,130468.0,Ash Shimasiyah,44.25,26.25,SAU,2956.0,Al Qaseem,266.0,Saudi Arabia,130468.0,Ash Shimasiyah,both,identical +167490,44.75,26.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130488.0,Az Zulfi,44.75,26.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130488.0,Az Zulfi,both,identical +167491,45.25,26.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130482.0,Al Majmaah,45.25,26.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130482.0,Al Majmaah,both,identical +167492,45.75,26.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130482.0,Al Majmaah,45.75,26.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130482.0,Al Majmaah,both,identical +167493,46.25,26.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130482.0,Al Majmaah,46.25,26.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130482.0,Al Majmaah,both,identical +167494,46.75,26.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130493.0,Rumah,46.75,26.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130493.0,Rumah,both,identical +167495,47.25,26.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130493.0,Rumah,47.25,26.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130493.0,Rumah,both,identical +167496,47.75,26.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,47.75,26.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +167497,48.25,26.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,48.25,26.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130514.0,Al Ahsa,both,identical +167498,48.75,26.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130518.0,Al Nuayriyah,48.75,26.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130518.0,Al Nuayriyah,both,identical +167499,49.25,26.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130521.0,Buqayq,49.25,26.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130521.0,Buqayq,both,identical +167500,49.75,26.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130521.0,Buqayq,49.75,26.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130521.0,Buqayq,both,identical +167501,50.25,26.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130522.0,Dammam,50.25,26.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130522.0,Dammam,both,identical +167502,50.75,26.25,BHR,2469.0,Riffa,228.0,Bahrain,124239.0,Administrative Unit Not Available,50.75,26.25,BHR,2469.0,Riffa,228.0,Bahrain,124239.0,Administrative Unit Not Available,both,identical +167503,51.25,26.25,QAT,2933.0,Al Shamal Municipality,264.0,Qatar,130350.0,Al Ruwais/Al Shamal 79,51.25,26.25,QAT,2933.0,Al Shamal Municipality,264.0,Qatar,130350.0,Al Ruwais/Al Shamal 79,both,identical +167510,54.75,26.25,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126635.0,Abumusa,54.75,26.25,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126635.0,Abumusa,both,identical +167513,56.25,26.25,OMN,2903.0,Musandam,259.0,Oman,130087.0,Al Khasab,56.25,26.25,OMN,2903.0,Musandam,259.0,Oman,130087.0,Al Khasab,both,identical +167515,57.25,26.25,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126647.0,Sirik,57.25,26.25,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126647.0,Sirik,both,identical +167516,57.75,26.25,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126638.0,Bashagard,57.75,26.25,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126638.0,Bashagard,both,identical +167517,58.25,26.25,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126638.0,Bashagard,58.25,26.25,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126638.0,Bashagard,both,identical +167518,58.75,26.25,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126638.0,Bashagard,58.75,26.25,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126638.0,Bashagard,both,identical +167519,59.25,26.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126871.0,Nikshahr,59.25,26.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126871.0,Nikshahr,both,identical +167520,59.75,26.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126871.0,Nikshahr,59.75,26.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126871.0,Nikshahr,both,identical +167521,60.25,26.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126871.0,Nikshahr,60.25,26.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126871.0,Nikshahr,both,identical +167522,60.75,26.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126863.0,Ghasre Ghand,60.75,26.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126863.0,Ghasre Ghand,both,identical +167523,61.25,26.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126874.0,Sarbaz,61.25,26.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126874.0,Sarbaz,both,identical +167524,61.75,26.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126874.0,Sarbaz,61.75,26.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126874.0,Sarbaz,both,identical +167525,62.25,26.25,PAK,2905.0,Balochistan,260.0,Pakistan,130108.0,Kech,62.25,26.25,PAK,2905.0,Balochistan,260.0,Pakistan,130108.0,Kech,both,identical +168093,-13.75,26.75,MAR,,,,,,,-13.75,26.75,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +168094,-13.25,26.75,MAR,,,,,,,-13.25,26.75,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +168095,-12.75,26.75,MAR,,,,,,,-12.75,26.75,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +168096,-12.25,26.75,MAR,,,,,,,-12.25,26.75,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +168097,-11.75,26.75,MAR,,,,,,,-11.75,26.75,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +168098,-11.25,26.75,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,-11.25,26.75,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,identical +168099,-10.75,26.75,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,-10.75,26.75,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,identical +168100,-10.25,26.75,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,-10.25,26.75,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,identical +168101,-9.75,26.75,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,-9.75,26.75,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,identical +168102,-9.25,26.75,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,-9.25,26.75,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,identical +168103,-8.75,26.75,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,-8.75,26.75,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,identical +168104,-8.25,26.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104213.0,Bir Mogrein,-8.25,26.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104213.0,Bir Mogrein,both,identical +168105,-7.75,26.75,DZA,1044.0,Tindouf,101.0,Algeria,101371.0,Tindouf,-7.75,26.75,MRT,1459.0,Tiris-Zemmou,144.0,Mauritania,104213.0,Bir Mogrein,both,country_reassignment +168106,-7.25,26.75,DZA,1044.0,Tindouf,101.0,Algeria,101371.0,Tindouf,-7.25,26.75,DZA,1044.0,Tindouf,101.0,Algeria,101371.0,Tindouf,both,identical +168107,-6.75,26.75,DZA,1044.0,Tindouf,101.0,Algeria,101371.0,Tindouf,-6.75,26.75,DZA,1044.0,Tindouf,101.0,Algeria,101371.0,Tindouf,both,identical +168108,-6.25,26.75,DZA,1044.0,Tindouf,101.0,Algeria,101371.0,Tindouf,-6.25,26.75,DZA,1044.0,Tindouf,101.0,Algeria,101371.0,Tindouf,both,identical +168109,-5.75,26.75,DZA,1044.0,Tindouf,101.0,Algeria,101371.0,Tindouf,-5.75,26.75,DZA,1044.0,Tindouf,101.0,Algeria,101371.0,Tindouf,both,identical +168110,-5.25,26.75,DZA,1044.0,Tindouf,101.0,Algeria,101371.0,Tindouf,-5.25,26.75,DZA,1044.0,Tindouf,101.0,Algeria,101371.0,Tindouf,both,identical +168111,-4.75,26.75,DZA,1044.0,Tindouf,101.0,Algeria,101371.0,Tindouf,-4.75,26.75,DZA,1044.0,Tindouf,101.0,Algeria,101371.0,Tindouf,both,identical +168112,-4.25,26.75,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,-4.25,26.75,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,both,identical +168113,-3.75,26.75,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,-3.75,26.75,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,both,identical +168114,-3.25,26.75,DZA,1001.0,Adrar,101.0,Algeria,100017.0,Sali,-3.25,26.75,DZA,1001.0,Adrar,101.0,Algeria,100017.0,Sali,both,identical +168115,-2.75,26.75,DZA,1001.0,Adrar,101.0,Algeria,100017.0,Sali,-2.75,26.75,DZA,1001.0,Adrar,101.0,Algeria,100017.0,Sali,both,identical +168116,-2.25,26.75,DZA,1001.0,Adrar,101.0,Algeria,100017.0,Sali,-2.25,26.75,DZA,1001.0,Adrar,101.0,Algeria,100017.0,Sali,both,identical +168117,-1.75,26.75,DZA,1001.0,Adrar,101.0,Algeria,100017.0,Sali,-1.75,26.75,DZA,1001.0,Adrar,101.0,Algeria,100017.0,Sali,both,identical +168118,-1.25,26.75,DZA,1001.0,Adrar,101.0,Algeria,100017.0,Sali,-1.25,26.75,DZA,1001.0,Adrar,101.0,Algeria,100017.0,Sali,both,identical +168119,-0.75,26.75,DZA,1001.0,Adrar,101.0,Algeria,100017.0,Sali,-0.75,26.75,DZA,1001.0,Adrar,101.0,Algeria,100017.0,Sali,both,identical +168120,-0.25,26.75,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,-0.25,26.75,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,both,identical +168121,0.25,26.75,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,0.25,26.75,DZA,1001.0,Adrar,101.0,Algeria,100016.0,Reggane,both,identical +168122,0.75,26.75,DZA,1001.0,Adrar,101.0,Algeria,100004.0,Aoulef,0.75,26.75,DZA,1001.0,Adrar,101.0,Algeria,100004.0,Aoulef,both,identical +168123,1.25,26.75,DZA,1001.0,Adrar,101.0,Algeria,100002.0,Akabili,1.25,26.75,DZA,1001.0,Adrar,101.0,Algeria,100002.0,Akabili,both,identical +168124,1.75,26.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101294.0,In Ghar,1.75,26.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101294.0,In Ghar,both,identical +168125,2.25,26.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101296.0,In Salah,2.25,26.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101296.0,In Salah,both,identical +168126,2.75,26.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101296.0,In Salah,2.75,26.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101296.0,In Salah,both,identical +168127,3.25,26.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101296.0,In Salah,3.25,26.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101296.0,In Salah,both,identical +168128,3.75,26.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101291.0,Fouggarat Ez Zouaia,3.75,26.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101291.0,Fouggarat Ez Zouaia,both,identical +168129,4.25,26.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101291.0,Fouggarat Ez Zouaia,4.25,26.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101291.0,Fouggarat Ez Zouaia,both,identical +168130,4.75,26.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101291.0,Fouggarat Ez Zouaia,4.75,26.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101291.0,Fouggarat Ez Zouaia,both,identical +168131,5.25,26.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101292.0,Idles,5.25,26.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101292.0,Idles,both,identical +168132,5.75,26.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101292.0,Idles,5.75,26.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101292.0,Idles,both,identical +168133,6.25,26.75,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,6.25,26.75,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,both,identical +168134,6.75,26.75,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,6.75,26.75,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,both,identical +168135,7.25,26.75,DZA,1022.0,Illizi,101.0,Algeria,100675.0,Illizi,7.25,26.75,DZA,1022.0,Illizi,101.0,Algeria,100675.0,Illizi,both,identical +168136,7.75,26.75,DZA,1022.0,Illizi,101.0,Algeria,100675.0,Illizi,7.75,26.75,DZA,1022.0,Illizi,101.0,Algeria,100675.0,Illizi,both,identical +168137,8.25,26.75,DZA,1022.0,Illizi,101.0,Algeria,100675.0,Illizi,8.25,26.75,DZA,1022.0,Illizi,101.0,Algeria,100675.0,Illizi,both,identical +168138,8.75,26.75,DZA,1022.0,Illizi,101.0,Algeria,100675.0,Illizi,8.75,26.75,DZA,1022.0,Illizi,101.0,Algeria,100675.0,Illizi,both,identical +168139,9.25,26.75,DZA,1022.0,Illizi,101.0,Algeria,100675.0,Illizi,9.25,26.75,DZA,1022.0,Illizi,101.0,Algeria,100675.0,Illizi,both,identical +168140,9.75,26.75,DZA,1022.0,Illizi,101.0,Algeria,100675.0,Illizi,9.75,26.75,DZA,1022.0,Illizi,101.0,Algeria,100675.0,Illizi,both,identical +168141,10.25,26.75,LBY,1426.0,South,140.0,Libya,104040.0,Ghat,10.25,26.75,LBY,1426.0,South,140.0,Libya,104040.0,Ghat,both,identical +168142,10.75,26.75,LBY,1426.0,South,140.0,Libya,104040.0,Ghat,10.75,26.75,LBY,1426.0,South,140.0,Libya,104040.0,Ghat,both,identical +168143,11.25,26.75,LBY,1426.0,South,140.0,Libya,104040.0,Ghat,11.25,26.75,LBY,1426.0,South,140.0,Libya,104040.0,Ghat,both,identical +168144,11.75,26.75,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,11.75,26.75,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,both,identical +168145,12.25,26.75,LBY,1426.0,South,140.0,Libya,104043.0,Ubari,12.25,26.75,LBY,1426.0,South,140.0,Libya,104043.0,Ubari,both,identical +168146,12.75,26.75,LBY,1426.0,South,140.0,Libya,104043.0,Ubari,12.75,26.75,LBY,1426.0,South,140.0,Libya,104043.0,Ubari,both,identical +168147,13.25,26.75,LBY,1426.0,South,140.0,Libya,104043.0,Ubari,13.25,26.75,LBY,1426.0,South,140.0,Libya,104043.0,Ubari,both,identical +168148,13.75,26.75,LBY,1426.0,South,140.0,Libya,104043.0,Ubari,13.75,26.75,LBY,1426.0,South,140.0,Libya,104043.0,Ubari,both,identical +168149,14.25,26.75,LBY,1426.0,South,140.0,Libya,104042.0,Sebha,14.25,26.75,LBY,1426.0,South,140.0,Libya,104042.0,Sebha,both,identical +168150,14.75,26.75,LBY,1426.0,South,140.0,Libya,104042.0,Sebha,14.75,26.75,LBY,1426.0,South,140.0,Libya,104042.0,Sebha,both,identical +168151,15.25,26.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,15.25,26.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +168152,15.75,26.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,15.75,26.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +168153,16.25,26.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,16.25,26.75,LBY,1426.0,South,140.0,Libya,104041.0,Murzuq,both,identical +168154,16.75,26.75,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,16.75,26.75,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,both,identical +168155,17.25,26.75,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,17.25,26.75,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,both,identical +168156,17.75,26.75,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,17.75,26.75,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,both,identical +168157,18.25,26.75,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,18.25,26.75,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,both,identical +168158,18.75,26.75,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,18.75,26.75,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,both,identical +168159,19.25,26.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,19.25,26.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +168160,19.75,26.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,19.75,26.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +168161,20.25,26.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,20.25,26.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +168162,20.75,26.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,20.75,26.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +168163,21.25,26.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,21.25,26.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +168164,21.75,26.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,21.75,26.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +168165,22.25,26.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,22.25,26.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +168166,22.75,26.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,22.75,26.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +168167,23.25,26.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,23.25,26.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +168168,23.75,26.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,23.75,26.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +168169,24.25,26.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,24.25,26.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +168170,24.75,26.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,24.75,26.75,LBY,1425.0,East,140.0,Libya,104033.0,Alkufra,both,identical +168171,25.25,26.75,EGY,1263.0,New Valley,120.0,Egypt,102791.0,Al Farafra Oasis,25.25,26.75,EGY,1263.0,New Valley,120.0,Egypt,102791.0,Al Farafra Oasis,both,identical +168172,25.75,26.75,EGY,1263.0,New Valley,120.0,Egypt,102791.0,Al Farafra Oasis,25.75,26.75,EGY,1263.0,New Valley,120.0,Egypt,102791.0,Al Farafra Oasis,both,identical +168173,26.25,26.75,EGY,1263.0,New Valley,120.0,Egypt,102791.0,Al Farafra Oasis,26.25,26.75,EGY,1263.0,New Valley,120.0,Egypt,102791.0,Al Farafra Oasis,both,identical +168174,26.75,26.75,EGY,1263.0,New Valley,120.0,Egypt,102791.0,Al Farafra Oasis,26.75,26.75,EGY,1263.0,New Valley,120.0,Egypt,102791.0,Al Farafra Oasis,both,identical +168175,27.25,26.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,27.25,26.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +168176,27.75,26.75,EGY,1263.0,New Valley,120.0,Egypt,102791.0,Al Farafra Oasis,27.75,26.75,EGY,1263.0,New Valley,120.0,Egypt,102791.0,Al Farafra Oasis,both,identical +168177,28.25,26.75,EGY,1263.0,New Valley,120.0,Egypt,102791.0,Al Farafra Oasis,28.25,26.75,EGY,1263.0,New Valley,120.0,Egypt,102791.0,Al Farafra Oasis,both,identical +168178,28.75,26.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,28.75,26.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +168179,29.25,26.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,29.25,26.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +168180,29.75,26.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,29.75,26.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +168181,30.25,26.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,30.25,26.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +168182,30.75,26.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,30.75,26.75,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +168183,31.25,26.75,EGY,1263.0,New Valley,120.0,Egypt,102792.0,Al-Kharga Oasis,31.25,26.75,EGY,1263.0,New Valley,120.0,Egypt,102792.0,Al-Kharga Oasis,both,identical +168184,31.75,26.75,EGY,1271.0,Suhag,120.0,Egypt,102893.0,Zemam Out,31.75,26.75,EGY,1271.0,Suhag,120.0,Egypt,102893.0,Zemam Out,both,identical +168185,32.25,26.75,EGY,1271.0,Suhag,120.0,Egypt,102893.0,Zemam Out,32.25,26.75,EGY,1271.0,Suhag,120.0,Egypt,102893.0,Zemam Out,both,identical +168186,32.75,26.75,EGY,1271.0,Suhag,120.0,Egypt,102893.0,Zemam Out,32.75,26.75,EGY,1271.0,Suhag,120.0,Egypt,102893.0,Zemam Out,both,identical +168187,33.25,26.75,EGY,1267.0,Red Sea,120.0,Egypt,102836.0,Safaga,33.25,26.75,EGY,1267.0,Red Sea,120.0,Egypt,102836.0,Safaga,both,identical +168188,33.75,26.75,EGY,1267.0,Red Sea,120.0,Egypt,102836.0,Safaga,33.75,26.75,EGY,1267.0,Red Sea,120.0,Egypt,102836.0,Safaga,both,identical +168189,34.25,26.75,EGY,1267.0,Red Sea,120.0,Egypt,102834.0,Qusir,34.25,26.75,EGY,1267.0,Red Sea,120.0,Egypt,102834.0,Qusir,both,identical +168192,35.75,26.75,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130580.0,Duba,35.75,26.75,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130580.0,Duba,both,identical +168193,36.25,26.75,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130579.0,Al Wajh,36.25,26.75,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130579.0,Al Wajh,both,identical +168194,36.75,26.75,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130579.0,Al Wajh,36.75,26.75,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130579.0,Al Wajh,both,identical +168195,37.25,26.75,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130579.0,Al Wajh,37.25,26.75,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130579.0,Al Wajh,both,identical +168196,37.75,26.75,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130457.0,Al Ula,37.75,26.75,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130457.0,Al Ula,both,identical +168197,38.25,26.75,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130457.0,Al Ula,38.25,26.75,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130457.0,Al Ula,both,identical +168198,38.75,26.75,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130457.0,Al Ula,38.75,26.75,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130457.0,Al Ula,both,identical +168199,39.25,26.75,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130459.0,Khaybar,39.25,26.75,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130459.0,Khaybar,both,identical +168200,39.75,26.75,SAU,2960.0,Hail,266.0,Saudi Arabia,130529.0,Ash Shamli,39.75,26.75,SAU,2960.0,Hail,266.0,Saudi Arabia,130529.0,Ash Shamli,both,identical +168201,40.25,26.75,SAU,2960.0,Hail,266.0,Saudi Arabia,130529.0,Ash Shamli,40.25,26.75,SAU,2960.0,Hail,266.0,Saudi Arabia,130529.0,Ash Shamli,both,identical +168202,40.75,26.75,SAU,2960.0,Hail,266.0,Saudi Arabia,130529.0,Ash Shamli,40.75,26.75,SAU,2960.0,Hail,266.0,Saudi Arabia,130529.0,Ash Shamli,both,identical +168203,41.25,26.75,SAU,2960.0,Hail,266.0,Saudi Arabia,130526.0,Al Ghazalah,41.25,26.75,SAU,2960.0,Hail,266.0,Saudi Arabia,130526.0,Al Ghazalah,both,identical +168204,41.75,26.75,SAU,2960.0,Hail,266.0,Saudi Arabia,130526.0,Al Ghazalah,41.75,26.75,SAU,2960.0,Hail,266.0,Saudi Arabia,130526.0,Al Ghazalah,both,identical +168205,42.25,26.75,SAU,2960.0,Hail,266.0,Saudi Arabia,130534.0,Simira,42.25,26.75,SAU,2960.0,Hail,266.0,Saudi Arabia,130534.0,Simira,both,identical +168206,42.75,26.75,SAU,2960.0,Hail,266.0,Saudi Arabia,130530.0,Ash Shinan,42.75,26.75,SAU,2960.0,Hail,266.0,Saudi Arabia,130530.0,Ash Shinan,both,identical +168207,43.25,26.75,SAU,2956.0,Al Qaseem,266.0,Saudi Arabia,130473.0,Uyun Al Jiwa,43.25,26.75,SAU,2956.0,Al Qaseem,266.0,Saudi Arabia,130473.0,Uyun Al Jiwa,both,identical +168208,43.75,26.75,SAU,2956.0,Al Qaseem,266.0,Saudi Arabia,130473.0,Uyun Al Jiwa,43.75,26.75,SAU,2956.0,Al Qaseem,266.0,Saudi Arabia,130473.0,Uyun Al Jiwa,both,identical +168209,44.25,26.75,SAU,2956.0,Al Qaseem,266.0,Saudi Arabia,130462.0,Al Asyah,44.25,26.75,SAU,2956.0,Al Qaseem,266.0,Saudi Arabia,130462.0,Al Asyah,both,identical +168210,44.75,26.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130488.0,Az Zulfi,44.75,26.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130488.0,Az Zulfi,both,identical +168211,45.25,26.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130482.0,Al Majmaah,45.25,26.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130482.0,Al Majmaah,both,identical +168212,45.75,26.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130482.0,Al Majmaah,45.75,26.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130482.0,Al Majmaah,both,identical +168213,46.25,26.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130482.0,Al Majmaah,46.25,26.75,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130482.0,Al Majmaah,both,identical +168214,46.75,26.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130524.0,Qaryah Al Ulya,46.75,26.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130524.0,Qaryah Al Ulya,both,identical +168215,47.25,26.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130524.0,Qaryah Al Ulya,47.25,26.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130524.0,Qaryah Al Ulya,both,identical +168216,47.75,26.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130524.0,Qaryah Al Ulya,47.75,26.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130524.0,Qaryah Al Ulya,both,identical +168217,48.25,26.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130518.0,Al Nuayriyah,48.25,26.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130518.0,Al Nuayriyah,both,identical +168218,48.75,26.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130518.0,Al Nuayriyah,48.75,26.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130518.0,Al Nuayriyah,both,identical +168219,49.25,26.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130515.0,Al Jubayl,49.25,26.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130515.0,Al Jubayl,both,identical +168220,49.75,26.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130515.0,Al Jubayl,49.75,26.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130515.0,Al Jubayl,both,identical +168221,50.25,26.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130525.0,Ras Tannurah,50.25,26.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130525.0,Ras Tannurah,both,identical +168227,53.25,26.75,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126637.0,Bandar-Lengeh,53.25,26.75,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126637.0,Bandar-Lengeh,both,identical +168228,53.75,26.75,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126637.0,Bandar-Lengeh,53.75,26.75,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126637.0,Bandar-Lengeh,both,identical +168229,54.25,26.75,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126637.0,Bandar-Lengeh,54.25,26.75,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126637.0,Bandar-Lengeh,both,identical +168230,54.75,26.75,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126637.0,Bandar-Lengeh,54.75,26.75,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126637.0,Bandar-Lengeh,both,identical +168231,55.25,26.75,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126637.0,Bandar-Lengeh,55.25,26.75,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126637.0,Bandar-Lengeh,both,identical +168232,55.75,26.75,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126645.0,Qeshm,55.75,26.75,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126645.0,Qeshm,both,identical +168234,56.75,26.75,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126643.0,Minab,56.75,26.75,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126643.0,Minab,both,identical +168235,57.25,26.75,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126643.0,Minab,57.25,26.75,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126643.0,Minab,both,identical +168236,57.75,26.75,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126638.0,Bashagard,57.75,26.75,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126638.0,Bashagard,both,identical +168237,58.25,26.75,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126638.0,Bashagard,58.25,26.75,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126638.0,Bashagard,both,identical +168238,58.75,26.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126690.0,Ghaleye-Ganj,58.75,26.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126690.0,Ghaleye-Ganj,both,identical +168239,59.25,26.75,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126862.0,Fanouj,59.25,26.75,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126862.0,Fanouj,both,identical +168240,59.75,26.75,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126862.0,Fanouj,59.75,26.75,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126862.0,Fanouj,both,identical +168241,60.25,26.75,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126871.0,Nikshahr,60.25,26.75,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126871.0,Nikshahr,both,identical +168242,60.75,26.75,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126871.0,Nikshahr,60.75,26.75,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126871.0,Nikshahr,both,identical +168243,61.25,26.75,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126874.0,Sarbaz,61.25,26.75,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126874.0,Sarbaz,both,identical +168244,61.75,26.75,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126869.0,Mehrestan,61.75,26.75,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126869.0,Mehrestan,both,identical +168245,62.25,26.75,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126875.0,Sibo Soran,62.25,26.75,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126875.0,Sibo Soran,both,identical +168246,62.75,26.75,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126873.0,Saravan,62.75,26.75,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126873.0,Saravan,both,identical +168247,63.25,26.75,PAK,2905.0,Balochistan,260.0,Pakistan,130121.0,Panjgur,63.25,26.75,PAK,2905.0,Balochistan,260.0,Pakistan,130121.0,Panjgur,both,identical +168814,-13.25,27.25,MAR,,,,,,,-13.25,27.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +168815,-12.75,27.25,MAR,,,,,,,-12.75,27.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +168816,-12.25,27.25,MAR,,,,,,,-12.25,27.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +168817,-11.75,27.25,MAR,,,,,,,-11.75,27.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +168818,-11.25,27.25,MAR,,,,,,,-11.25,27.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +168819,-10.75,27.25,MAR,,,,,,,-10.75,27.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +168820,-10.25,27.25,MAR,,,,,,,-10.25,27.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +168821,-9.75,27.25,MAR,,,,,,,-9.75,27.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +168822,-9.25,27.25,MAR,,,,,,,-9.25,27.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +168823,-8.75,27.25,MAR,,,,,,,-8.75,27.25,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +168824,-8.25,27.25,DZA,1044.0,Tindouf,101.0,Algeria,101371.0,Tindouf,-8.25,27.25,DZA,1044.0,Tindouf,101.0,Algeria,101371.0,Tindouf,both,identical +168825,-7.75,27.25,DZA,1044.0,Tindouf,101.0,Algeria,101371.0,Tindouf,-7.75,27.25,DZA,1044.0,Tindouf,101.0,Algeria,101371.0,Tindouf,both,identical +168826,-7.25,27.25,DZA,1044.0,Tindouf,101.0,Algeria,101371.0,Tindouf,-7.25,27.25,DZA,1044.0,Tindouf,101.0,Algeria,101371.0,Tindouf,both,identical +168827,-6.75,27.25,DZA,1044.0,Tindouf,101.0,Algeria,101371.0,Tindouf,-6.75,27.25,DZA,1044.0,Tindouf,101.0,Algeria,101371.0,Tindouf,both,identical +168828,-6.25,27.25,DZA,1044.0,Tindouf,101.0,Algeria,101371.0,Tindouf,-6.25,27.25,DZA,1044.0,Tindouf,101.0,Algeria,101371.0,Tindouf,both,identical +168829,-5.75,27.25,DZA,1044.0,Tindouf,101.0,Algeria,101371.0,Tindouf,-5.75,27.25,DZA,1044.0,Tindouf,101.0,Algeria,101371.0,Tindouf,both,identical +168830,-5.25,27.25,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,-5.25,27.25,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,both,identical +168831,-4.75,27.25,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,-4.75,27.25,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,both,identical +168832,-4.25,27.25,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,-4.25,27.25,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,both,identical +168833,-3.75,27.25,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,-3.75,27.25,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,both,identical +168834,-3.25,27.25,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,-3.25,27.25,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,both,identical +168835,-2.75,27.25,DZA,1001.0,Adrar,101.0,Algeria,100028.0,Zaouiet Kounta,-2.75,27.25,DZA,1001.0,Adrar,101.0,Algeria,100028.0,Zaouiet Kounta,both,identical +168836,-2.25,27.25,DZA,1001.0,Adrar,101.0,Algeria,100028.0,Zaouiet Kounta,-2.25,27.25,DZA,1001.0,Adrar,101.0,Algeria,100028.0,Zaouiet Kounta,both,identical +168837,-1.75,27.25,DZA,1001.0,Adrar,101.0,Algeria,100028.0,Zaouiet Kounta,-1.75,27.25,DZA,1001.0,Adrar,101.0,Algeria,100028.0,Zaouiet Kounta,both,identical +168838,-1.25,27.25,DZA,1001.0,Adrar,101.0,Algeria,100028.0,Zaouiet Kounta,-1.25,27.25,DZA,1001.0,Adrar,101.0,Algeria,100028.0,Zaouiet Kounta,both,identical +168839,-0.75,27.25,DZA,1001.0,Adrar,101.0,Algeria,100028.0,Zaouiet Kounta,-0.75,27.25,DZA,1001.0,Adrar,101.0,Algeria,100028.0,Zaouiet Kounta,both,identical +168840,-0.25,27.25,DZA,1001.0,Adrar,101.0,Algeria,100028.0,Zaouiet Kounta,-0.25,27.25,DZA,1001.0,Adrar,101.0,Algeria,100028.0,Zaouiet Kounta,both,identical +168841,0.25,27.25,DZA,1001.0,Adrar,101.0,Algeria,100028.0,Zaouiet Kounta,0.25,27.25,DZA,1001.0,Adrar,101.0,Algeria,100028.0,Zaouiet Kounta,both,identical +168842,0.75,27.25,DZA,1001.0,Adrar,101.0,Algeria,100024.0,Timokten,0.75,27.25,DZA,1001.0,Adrar,101.0,Algeria,100024.0,Timokten,both,identical +168843,1.25,27.25,DZA,1001.0,Adrar,101.0,Algeria,100024.0,Timokten,1.25,27.25,DZA,1001.0,Adrar,101.0,Algeria,100024.0,Timokten,both,identical +168844,1.75,27.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101294.0,In Ghar,1.75,27.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101294.0,In Ghar,both,identical +168845,2.25,27.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101296.0,In Salah,2.25,27.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101296.0,In Salah,both,identical +168846,2.75,27.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101296.0,In Salah,2.75,27.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101296.0,In Salah,both,identical +168847,3.25,27.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101291.0,Fouggarat Ez Zouaia,3.25,27.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101291.0,Fouggarat Ez Zouaia,both,identical +168848,3.75,27.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101291.0,Fouggarat Ez Zouaia,3.75,27.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101291.0,Fouggarat Ez Zouaia,both,identical +168849,4.25,27.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101291.0,Fouggarat Ez Zouaia,4.25,27.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101291.0,Fouggarat Ez Zouaia,both,identical +168850,4.75,27.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101291.0,Fouggarat Ez Zouaia,4.75,27.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101291.0,Fouggarat Ez Zouaia,both,identical +168851,5.25,27.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101291.0,Fouggarat Ez Zouaia,5.25,27.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101291.0,Fouggarat Ez Zouaia,both,identical +168852,5.75,27.25,DZA,1041.0,Tamanrasset,101.0,Algeria,100672.0,Bordj Omar Driss,5.75,27.25,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,both,admin_reallocation +168853,6.25,27.25,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,6.25,27.25,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,both,identical +168854,6.75,27.25,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,6.75,27.25,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,both,identical +168855,7.25,27.25,DZA,1022.0,Illizi,101.0,Algeria,100675.0,Illizi,7.25,27.25,DZA,1022.0,Illizi,101.0,Algeria,100675.0,Illizi,both,identical +168856,7.75,27.25,DZA,1022.0,Illizi,101.0,Algeria,100675.0,Illizi,7.75,27.25,DZA,1022.0,Illizi,101.0,Algeria,100675.0,Illizi,both,identical +168857,8.25,27.25,DZA,1022.0,Illizi,101.0,Algeria,100675.0,Illizi,8.25,27.25,DZA,1022.0,Illizi,101.0,Algeria,100675.0,Illizi,both,identical +168858,8.75,27.25,DZA,1022.0,Illizi,101.0,Algeria,100675.0,Illizi,8.75,27.25,DZA,1022.0,Illizi,101.0,Algeria,100675.0,Illizi,both,identical +168859,9.25,27.25,DZA,1022.0,Illizi,101.0,Algeria,100675.0,Illizi,9.25,27.25,DZA,1022.0,Illizi,101.0,Algeria,100675.0,Illizi,both,identical +168860,9.75,27.25,DZA,1022.0,Illizi,101.0,Algeria,100675.0,Illizi,9.75,27.25,DZA,1022.0,Illizi,101.0,Algeria,100675.0,Illizi,both,identical +168861,10.25,27.25,LBY,1426.0,South,140.0,Libya,104040.0,Ghat,10.25,27.25,LBY,1426.0,South,140.0,Libya,104040.0,Ghat,both,identical +168862,10.75,27.25,LBY,1426.0,South,140.0,Libya,104040.0,Ghat,10.75,27.25,LBY,1426.0,South,140.0,Libya,104040.0,Ghat,both,identical +168863,11.25,27.25,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,11.25,27.25,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,both,identical +168864,11.75,27.25,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,11.75,27.25,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,both,identical +168865,12.25,27.25,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,12.25,27.25,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,both,identical +168866,12.75,27.25,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,12.75,27.25,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,both,identical +168867,13.25,27.25,LBY,1426.0,South,140.0,Libya,104043.0,Ubari,13.25,27.25,LBY,1426.0,South,140.0,Libya,104043.0,Ubari,both,identical +168868,13.75,27.25,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,13.75,27.25,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,both,identical +168869,14.25,27.25,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,14.25,27.25,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,both,identical +168870,14.75,27.25,LBY,1426.0,South,140.0,Libya,104042.0,Sebha,14.75,27.25,LBY,1426.0,South,140.0,Libya,104042.0,Sebha,both,identical +168871,15.25,27.25,LBY,1426.0,South,140.0,Libya,104042.0,Sebha,15.25,27.25,LBY,1426.0,South,140.0,Libya,104042.0,Sebha,both,identical +168872,15.75,27.25,LBY,1426.0,South,140.0,Libya,104042.0,Sebha,15.75,27.25,LBY,1426.0,South,140.0,Libya,104042.0,Sebha,both,identical +168873,16.25,27.25,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,16.25,27.25,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,both,identical +168874,16.75,27.25,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,16.75,27.25,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,both,identical +168875,17.25,27.25,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,17.25,27.25,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,both,identical +168876,17.75,27.25,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,17.75,27.25,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,both,identical +168877,18.25,27.25,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,18.25,27.25,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,both,identical +168878,18.75,27.25,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,18.75,27.25,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,both,identical +168879,19.25,27.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,19.25,27.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +168880,19.75,27.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,19.75,27.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +168881,20.25,27.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,20.25,27.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +168882,20.75,27.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,20.75,27.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +168883,21.25,27.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,21.25,27.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +168884,21.75,27.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,21.75,27.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +168885,22.25,27.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,22.25,27.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +168886,22.75,27.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,22.75,27.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +168887,23.25,27.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,23.25,27.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +168888,23.75,27.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,23.75,27.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +168889,24.25,27.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,24.25,27.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +168890,24.75,27.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,24.75,27.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +168891,25.25,27.25,EGY,1263.0,New Valley,120.0,Egypt,102791.0,Al Farafra Oasis,25.25,27.25,EGY,1263.0,New Valley,120.0,Egypt,102791.0,Al Farafra Oasis,both,identical +168892,25.75,27.25,EGY,1263.0,New Valley,120.0,Egypt,102791.0,Al Farafra Oasis,25.75,27.25,EGY,1263.0,New Valley,120.0,Egypt,102791.0,Al Farafra Oasis,both,identical +168893,26.25,27.25,EGY,1263.0,New Valley,120.0,Egypt,102791.0,Al Farafra Oasis,26.25,27.25,EGY,1263.0,New Valley,120.0,Egypt,102791.0,Al Farafra Oasis,both,identical +168894,26.75,27.25,EGY,1263.0,New Valley,120.0,Egypt,102791.0,Al Farafra Oasis,26.75,27.25,EGY,1263.0,New Valley,120.0,Egypt,102791.0,Al Farafra Oasis,both,identical +168895,27.25,27.25,EGY,1263.0,New Valley,120.0,Egypt,102791.0,Al Farafra Oasis,27.25,27.25,EGY,1263.0,New Valley,120.0,Egypt,102791.0,Al Farafra Oasis,both,identical +168896,27.75,27.25,EGY,1263.0,New Valley,120.0,Egypt,102791.0,Al Farafra Oasis,27.75,27.25,EGY,1263.0,New Valley,120.0,Egypt,102791.0,Al Farafra Oasis,both,identical +168897,28.25,27.25,EGY,1263.0,New Valley,120.0,Egypt,102791.0,Al Farafra Oasis,28.25,27.25,EGY,1263.0,New Valley,120.0,Egypt,102791.0,Al Farafra Oasis,both,identical +168898,28.75,27.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,28.75,27.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +168899,29.25,27.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,29.25,27.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +168900,29.75,27.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,29.75,27.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +168901,30.25,27.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,30.25,27.25,EGY,1263.0,New Valley,120.0,Egypt,102790.0,A-Dakhla Oasis,both,identical +168902,30.75,27.25,EGY,1246.0,Assiut,120.0,Egypt,102566.0,Zemam Out,30.75,27.25,EGY,1246.0,Assiut,120.0,Egypt,102566.0,Zemam Out,both,identical +168903,31.25,27.25,EGY,1246.0,Assiut,120.0,Egypt,102566.0,Zemam Out,31.25,27.25,EGY,1246.0,Assiut,120.0,Egypt,102566.0,Zemam Out,both,identical +168904,31.75,27.25,EGY,1246.0,Assiut,120.0,Egypt,102566.0,Zemam Out,31.75,27.25,EGY,1246.0,Assiut,120.0,Egypt,102566.0,Zemam Out,both,identical +168905,32.25,27.25,EGY,1246.0,Assiut,120.0,Egypt,102566.0,Zemam Out,32.25,27.25,EGY,1246.0,Assiut,120.0,Egypt,102566.0,Zemam Out,both,identical +168906,32.75,27.25,EGY,1267.0,Red Sea,120.0,Egypt,102831.0,Hurghada 1,32.75,27.25,EGY,1267.0,Red Sea,120.0,Egypt,102831.0,Hurghada 1,both,identical +168907,33.25,27.25,EGY,1267.0,Red Sea,120.0,Egypt,102831.0,Hurghada 1,33.25,27.25,EGY,1267.0,Red Sea,120.0,Egypt,102831.0,Hurghada 1,both,identical +168908,33.75,27.25,EGY,1267.0,Red Sea,120.0,Egypt,102831.0,Hurghada 1,33.75,27.25,EGY,1267.0,Red Sea,120.0,Egypt,102831.0,Hurghada 1,both,identical +168912,35.75,27.25,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130580.0,Duba,35.75,27.25,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130580.0,Duba,both,identical +168913,36.25,27.25,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130580.0,Duba,36.25,27.25,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130580.0,Duba,both,identical +168914,36.75,27.25,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130579.0,Al Wajh,36.75,27.25,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130579.0,Al Wajh,both,identical +168915,37.25,27.25,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130579.0,Al Wajh,37.25,27.25,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130579.0,Al Wajh,both,identical +168916,37.75,27.25,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130457.0,Al Ula,37.75,27.25,SAU,2955.0,Al Madinah Al Munawwarah,266.0,Saudi Arabia,130457.0,Al Ula,both,identical +168917,38.25,27.25,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130583.0,Tayma,38.25,27.25,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130583.0,Tayma,both,identical +168918,38.75,27.25,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130583.0,Tayma,38.75,27.25,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130583.0,Tayma,both,identical +168919,39.25,27.25,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130583.0,Tayma,39.25,27.25,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130583.0,Tayma,both,identical +168920,39.75,27.25,SAU,2960.0,Hail,266.0,Saudi Arabia,130529.0,Ash Shamli,39.75,27.25,SAU,2960.0,Hail,266.0,Saudi Arabia,130529.0,Ash Shamli,both,identical +168921,40.25,27.25,SAU,2960.0,Hail,266.0,Saudi Arabia,130529.0,Ash Shamli,40.25,27.25,SAU,2960.0,Hail,266.0,Saudi Arabia,130529.0,Ash Shamli,both,identical +168922,40.75,27.25,SAU,2960.0,Hail,266.0,Saudi Arabia,130533.0,Mawqaq,40.75,27.25,SAU,2960.0,Hail,266.0,Saudi Arabia,130533.0,Mawqaq,both,identical +168923,41.25,27.25,SAU,2960.0,Hail,266.0,Saudi Arabia,130533.0,Mawqaq,41.25,27.25,SAU,2960.0,Hail,266.0,Saudi Arabia,130533.0,Mawqaq,both,identical +168924,41.75,27.25,SAU,2960.0,Hail,266.0,Saudi Arabia,130532.0,Hail,41.75,27.25,SAU,2960.0,Hail,266.0,Saudi Arabia,130532.0,Hail,both,identical +168925,42.25,27.25,SAU,2960.0,Hail,266.0,Saudi Arabia,130530.0,Ash Shinan,42.25,27.25,SAU,2960.0,Hail,266.0,Saudi Arabia,130530.0,Ash Shinan,both,identical +168926,42.75,27.25,SAU,2960.0,Hail,266.0,Saudi Arabia,130530.0,Ash Shinan,42.75,27.25,SAU,2960.0,Hail,266.0,Saudi Arabia,130530.0,Ash Shinan,both,identical +168927,43.25,27.25,SAU,2960.0,Hail,266.0,Saudi Arabia,130530.0,Ash Shinan,43.25,27.25,SAU,2960.0,Hail,266.0,Saudi Arabia,130530.0,Ash Shinan,both,identical +168928,43.75,27.25,SAU,2956.0,Al Qaseem,266.0,Saudi Arabia,130473.0,Uyun Al Jiwa,43.75,27.25,SAU,2956.0,Al Qaseem,266.0,Saudi Arabia,130473.0,Uyun Al Jiwa,both,identical +168929,44.25,27.25,SAU,2956.0,Al Qaseem,266.0,Saudi Arabia,130462.0,Al Asyah,44.25,27.25,SAU,2956.0,Al Qaseem,266.0,Saudi Arabia,130462.0,Al Asyah,both,identical +168930,44.75,27.25,SAU,2956.0,Al Qaseem,266.0,Saudi Arabia,130462.0,Al Asyah,44.75,27.25,SAU,2956.0,Al Qaseem,266.0,Saudi Arabia,130462.0,Al Asyah,both,identical +168931,45.25,27.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130482.0,Al Majmaah,45.25,27.25,SAU,2957.0,Ar Riyad,266.0,Saudi Arabia,130482.0,Al Majmaah,both,identical +168932,45.75,27.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130523.0,Hafar Al Batin,45.75,27.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130523.0,Hafar Al Batin,both,identical +168933,46.25,27.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130524.0,Qaryah Al Ulya,46.25,27.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130524.0,Qaryah Al Ulya,both,identical +168934,46.75,27.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130524.0,Qaryah Al Ulya,46.75,27.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130524.0,Qaryah Al Ulya,both,identical +168935,47.25,27.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130524.0,Qaryah Al Ulya,47.25,27.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130524.0,Qaryah Al Ulya,both,identical +168936,47.75,27.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130524.0,Qaryah Al Ulya,47.75,27.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130524.0,Qaryah Al Ulya,both,identical +168937,48.25,27.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130518.0,Al Nuayriyah,48.25,27.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130518.0,Al Nuayriyah,both,identical +168938,48.75,27.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130518.0,Al Nuayriyah,48.75,27.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130518.0,Al Nuayriyah,both,identical +168939,49.25,27.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130515.0,Al Jubayl,49.25,27.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130515.0,Al Jubayl,both,identical +168940,49.75,27.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130515.0,Al Jubayl,49.75,27.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130515.0,Al Jubayl,both,identical +168946,52.75,27.25,IRN,2651.0,Bushehr,242.0,Iran (Islamic Republic Of),126528.0,Asaluyeh,52.75,27.25,IRN,2651.0,Bushehr,242.0,Iran (Islamic Republic Of),126528.0,Asaluyeh,both,identical +168947,53.25,27.25,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126583.0,Lamerd,53.25,27.25,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126583.0,Lamerd,both,identical +168948,53.75,27.25,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126583.0,Lamerd,53.75,27.25,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126583.0,Lamerd,both,identical +168949,54.25,27.25,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126639.0,Bastak,54.25,27.25,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126639.0,Bastak,both,identical +168950,54.75,27.25,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126639.0,Bastak,54.75,27.25,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126639.0,Bastak,both,identical +168951,55.25,27.25,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126642.0,Khamir,55.25,27.25,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126642.0,Khamir,both,identical +168952,55.75,27.25,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126642.0,Khamir,55.75,27.25,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126642.0,Khamir,both,identical +168953,56.25,27.25,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126636.0,Bandar-Abbas,56.25,27.25,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126636.0,Bandar-Abbas,both,identical +168954,56.75,27.25,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126636.0,Bandar-Abbas,56.75,27.25,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126636.0,Bandar-Abbas,both,identical +168955,57.25,27.25,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126643.0,Minab,57.25,27.25,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126643.0,Minab,both,identical +168956,57.75,27.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126695.0,Manujan,57.75,27.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126695.0,Manujan,both,identical +168957,58.25,27.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126690.0,Ghaleye-Ganj,58.25,27.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126690.0,Ghaleye-Ganj,both,identical +168958,58.75,27.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126690.0,Ghaleye-Ganj,58.75,27.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126690.0,Ghaleye-Ganj,both,identical +168959,59.25,27.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126861.0,Dalgan,59.25,27.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126861.0,Dalgan,both,identical +168960,59.75,27.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126861.0,Dalgan,59.75,27.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126861.0,Dalgan,both,identical +168961,60.25,27.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126866.0,Iranshahr,60.25,27.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126866.0,Iranshahr,both,identical +168962,60.75,27.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126866.0,Iranshahr,60.75,27.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126866.0,Iranshahr,both,identical +168963,61.25,27.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126869.0,Mehrestan,61.25,27.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126869.0,Mehrestan,both,identical +168964,61.75,27.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126875.0,Sibo Soran,61.75,27.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126875.0,Sibo Soran,both,identical +168965,62.25,27.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126875.0,Sibo Soran,62.25,27.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126875.0,Sibo Soran,both,identical +168966,62.75,27.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126873.0,Saravan,62.75,27.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126873.0,Saravan,both,identical +168967,63.25,27.25,PAK,2905.0,Balochistan,260.0,Pakistan,130128.0,Washuk,63.25,27.25,PAK,2905.0,Balochistan,260.0,Pakistan,130128.0,Washuk,both,identical +169534,-13.25,27.75,MAR,1478.0,Guelmim-Oued Noun,147.0,Morocco,104267.0,Tan-Tan,-13.25,27.75,ESH,1710.0,Administrative Unit Not Available,167.0,Western Sahara,106530.0,Administrative Unit Not Available,both,country_reassignment +169535,-12.75,27.75,MAR,1478.0,Guelmim-Oued Noun,147.0,Morocco,104267.0,Tan-Tan,-12.75,27.75,MAR,1478.0,Guelmim-Oued Noun,147.0,Morocco,104267.0,Tan-Tan,both,identical +169536,-12.25,27.75,MAR,1478.0,Guelmim-Oued Noun,147.0,Morocco,104267.0,Tan-Tan,-12.25,27.75,MAR,1478.0,Guelmim-Oued Noun,147.0,Morocco,104267.0,Tan-Tan,both,identical +169537,-11.75,27.75,MAR,1478.0,Guelmim-Oued Noun,147.0,Morocco,104267.0,Tan-Tan,-11.75,27.75,MAR,1478.0,Guelmim-Oued Noun,147.0,Morocco,104267.0,Tan-Tan,both,identical +169538,-11.25,27.75,MAR,1478.0,Guelmim-Oued Noun,147.0,Morocco,104267.0,Tan-Tan,-11.25,27.75,MAR,1478.0,Guelmim-Oued Noun,147.0,Morocco,104267.0,Tan-Tan,both,identical +169539,-10.75,27.75,MAR,1478.0,Guelmim-Oued Noun,147.0,Morocco,104267.0,Tan-Tan,-10.75,27.75,MAR,1478.0,Guelmim-Oued Noun,147.0,Morocco,104267.0,Tan-Tan,both,identical +169540,-10.25,27.75,MAR,1478.0,Guelmim-Oued Noun,147.0,Morocco,104264.0,Assa-Zag,-10.25,27.75,MAR,1478.0,Guelmim-Oued Noun,147.0,Morocco,104264.0,Assa-Zag,both,identical +169541,-9.75,27.75,MAR,1478.0,Guelmim-Oued Noun,147.0,Morocco,104264.0,Assa-Zag,-9.75,27.75,MAR,1478.0,Guelmim-Oued Noun,147.0,Morocco,104264.0,Assa-Zag,both,identical +169542,-9.25,27.75,MAR,1478.0,Guelmim-Oued Noun,147.0,Morocco,104264.0,Assa-Zag,-9.25,27.75,MAR,1478.0,Guelmim-Oued Noun,147.0,Morocco,104264.0,Assa-Zag,both,identical +169543,-8.75,27.75,MAR,1478.0,Guelmim-Oued Noun,147.0,Morocco,104264.0,Assa-Zag,-8.75,27.75,MAR,1478.0,Guelmim-Oued Noun,147.0,Morocco,104264.0,Assa-Zag,both,identical +169544,-8.25,27.75,DZA,1044.0,Tindouf,101.0,Algeria,101371.0,Tindouf,-8.25,27.75,DZA,1044.0,Tindouf,101.0,Algeria,101371.0,Tindouf,both,identical +169545,-7.75,27.75,DZA,1044.0,Tindouf,101.0,Algeria,101371.0,Tindouf,-7.75,27.75,DZA,1044.0,Tindouf,101.0,Algeria,101371.0,Tindouf,both,identical +169546,-7.25,27.75,DZA,1044.0,Tindouf,101.0,Algeria,101371.0,Tindouf,-7.25,27.75,DZA,1044.0,Tindouf,101.0,Algeria,101371.0,Tindouf,both,identical +169547,-6.75,27.75,DZA,1044.0,Tindouf,101.0,Algeria,101371.0,Tindouf,-6.75,27.75,DZA,1044.0,Tindouf,101.0,Algeria,101371.0,Tindouf,both,identical +169548,-6.25,27.75,DZA,1044.0,Tindouf,101.0,Algeria,101371.0,Tindouf,-6.25,27.75,DZA,1044.0,Tindouf,101.0,Algeria,101371.0,Tindouf,both,identical +169549,-5.75,27.75,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,-5.75,27.75,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,both,identical +169550,-5.25,27.75,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,-5.25,27.75,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,both,identical +169551,-4.75,27.75,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,-4.75,27.75,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,both,identical +169552,-4.25,27.75,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,-4.25,27.75,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,both,identical +169553,-3.75,27.75,DZA,1007.0,Bechar,101.0,Algeria,100240.0,Tabelbala,-3.75,27.75,DZA,1007.0,Bechar,101.0,Algeria,100240.0,Tabelbala,both,identical +169554,-3.25,27.75,DZA,1007.0,Bechar,101.0,Algeria,100240.0,Tabelbala,-3.25,27.75,DZA,1007.0,Bechar,101.0,Algeria,100240.0,Tabelbala,both,identical +169555,-2.75,27.75,DZA,1001.0,Adrar,101.0,Algeria,100008.0,Fenoughil,-2.75,27.75,DZA,1001.0,Adrar,101.0,Algeria,100008.0,Fenoughil,both,identical +169556,-2.25,27.75,DZA,1001.0,Adrar,101.0,Algeria,100008.0,Fenoughil,-2.25,27.75,DZA,1001.0,Adrar,101.0,Algeria,100008.0,Fenoughil,both,identical +169557,-1.75,27.75,DZA,1001.0,Adrar,101.0,Algeria,100008.0,Fenoughil,-1.75,27.75,DZA,1001.0,Adrar,101.0,Algeria,100008.0,Fenoughil,both,identical +169558,-1.25,27.75,DZA,1001.0,Adrar,101.0,Algeria,100008.0,Fenoughil,-1.25,27.75,DZA,1001.0,Adrar,101.0,Algeria,100008.0,Fenoughil,both,identical +169559,-0.75,27.75,DZA,1001.0,Adrar,101.0,Algeria,100008.0,Fenoughil,-0.75,27.75,DZA,1001.0,Adrar,101.0,Algeria,100008.0,Fenoughil,both,identical +169560,-0.25,27.75,DZA,1001.0,Adrar,101.0,Algeria,100008.0,Fenoughil,-0.25,27.75,DZA,1001.0,Adrar,101.0,Algeria,100008.0,Fenoughil,both,identical +169561,0.25,27.75,DZA,1001.0,Adrar,101.0,Algeria,100020.0,Tamentit,0.25,27.75,DZA,1001.0,Adrar,101.0,Algeria,100020.0,Tamentit,both,identical +169562,0.75,27.75,DZA,1001.0,Adrar,101.0,Algeria,100024.0,Timokten,0.75,27.75,DZA,1001.0,Adrar,101.0,Algeria,100024.0,Timokten,both,identical +169563,1.25,27.75,DZA,1001.0,Adrar,101.0,Algeria,100024.0,Timokten,1.25,27.75,DZA,1001.0,Adrar,101.0,Algeria,100024.0,Timokten,both,identical +169564,1.75,27.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101294.0,In Ghar,1.75,27.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101294.0,In Ghar,both,identical +169565,2.25,27.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101296.0,In Salah,2.25,27.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101296.0,In Salah,both,identical +169566,2.75,27.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101296.0,In Salah,2.75,27.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101296.0,In Salah,both,identical +169567,3.25,27.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101291.0,Fouggarat Ez Zouaia,3.25,27.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101291.0,Fouggarat Ez Zouaia,both,identical +169568,3.75,27.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101291.0,Fouggarat Ez Zouaia,3.75,27.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101291.0,Fouggarat Ez Zouaia,both,identical +169569,4.25,27.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101291.0,Fouggarat Ez Zouaia,4.25,27.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101291.0,Fouggarat Ez Zouaia,both,identical +169570,4.75,27.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101291.0,Fouggarat Ez Zouaia,4.75,27.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101291.0,Fouggarat Ez Zouaia,both,identical +169571,5.25,27.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101291.0,Fouggarat Ez Zouaia,5.25,27.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101291.0,Fouggarat Ez Zouaia,both,identical +169572,5.75,27.75,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,5.75,27.75,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,both,identical +169573,6.25,27.75,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,6.25,27.75,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,both,identical +169574,6.75,27.75,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,6.75,27.75,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,both,identical +169575,7.25,27.75,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,7.25,27.75,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,both,identical +169576,7.75,27.75,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,7.75,27.75,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,both,identical +169577,8.25,27.75,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,8.25,27.75,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,both,identical +169578,8.75,27.75,DZA,1022.0,Illizi,101.0,Algeria,100676.0,In Amenas,8.75,27.75,DZA,1022.0,Illizi,101.0,Algeria,100676.0,In Amenas,both,identical +169579,9.25,27.75,DZA,1022.0,Illizi,101.0,Algeria,100676.0,In Amenas,9.25,27.75,DZA,1022.0,Illizi,101.0,Algeria,100676.0,In Amenas,both,identical +169580,9.75,27.75,DZA,1022.0,Illizi,101.0,Algeria,100676.0,In Amenas,9.75,27.75,DZA,1022.0,Illizi,101.0,Algeria,100676.0,In Amenas,both,identical +169581,10.25,27.75,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,10.25,27.75,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,both,identical +169582,10.75,27.75,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,10.75,27.75,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,both,identical +169583,11.25,27.75,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,11.25,27.75,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,both,identical +169584,11.75,27.75,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,11.75,27.75,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,both,identical +169585,12.25,27.75,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,12.25,27.75,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,both,identical +169586,12.75,27.75,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,12.75,27.75,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,both,identical +169587,13.25,27.75,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,13.25,27.75,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,both,identical +169588,13.75,27.75,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,13.75,27.75,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,both,identical +169589,14.25,27.75,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,14.25,27.75,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,both,identical +169590,14.75,27.75,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,14.75,27.75,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,both,identical +169591,15.25,27.75,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,15.25,27.75,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,both,identical +169592,15.75,27.75,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,15.75,27.75,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,both,identical +169593,16.25,27.75,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,16.25,27.75,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,both,identical +169594,16.75,27.75,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,16.75,27.75,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,both,identical +169595,17.25,27.75,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,17.25,27.75,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,both,identical +169596,17.75,27.75,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,17.75,27.75,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,both,identical +169597,18.25,27.75,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,18.25,27.75,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,both,identical +169598,18.75,27.75,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,18.75,27.75,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,both,identical +169599,19.25,27.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,19.25,27.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +169600,19.75,27.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,19.75,27.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +169601,20.25,27.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,20.25,27.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +169602,20.75,27.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,20.75,27.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +169603,21.25,27.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,21.25,27.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +169604,21.75,27.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,21.75,27.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +169605,22.25,27.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,22.25,27.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +169606,22.75,27.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,22.75,27.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +169607,23.25,27.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,23.25,27.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +169608,23.75,27.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,23.75,27.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +169609,24.25,27.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,24.25,27.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +169610,24.75,27.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,24.75,27.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +169611,25.25,27.75,EGY,1260.0,Matrouh,120.0,Egypt,102764.0,Siwa,25.25,27.75,EGY,1260.0,Matrouh,120.0,Egypt,102764.0,Siwa,both,identical +169612,25.75,27.75,EGY,1260.0,Matrouh,120.0,Egypt,102764.0,Siwa,25.75,27.75,EGY,1260.0,Matrouh,120.0,Egypt,102764.0,Siwa,both,identical +169613,26.25,27.75,EGY,1260.0,Matrouh,120.0,Egypt,102764.0,Siwa,26.25,27.75,EGY,1260.0,Matrouh,120.0,Egypt,102764.0,Siwa,both,identical +169614,26.75,27.75,EGY,1260.0,Matrouh,120.0,Egypt,102764.0,Siwa,26.75,27.75,EGY,1260.0,Matrouh,120.0,Egypt,102764.0,Siwa,both,identical +169615,27.25,27.75,EGY,1260.0,Matrouh,120.0,Egypt,102764.0,Siwa,27.25,27.75,EGY,1260.0,Matrouh,120.0,Egypt,102764.0,Siwa,both,identical +169616,27.75,27.75,EGY,1255.0,Giza,120.0,Egypt,102720.0,Zemam Out,27.75,27.75,EGY,1255.0,Giza,120.0,Egypt,102720.0,Zemam Out,both,identical +169617,28.25,27.75,EGY,1255.0,Giza,120.0,Egypt,102720.0,Zemam Out,28.25,27.75,EGY,1255.0,Giza,120.0,Egypt,102720.0,Zemam Out,both,identical +169618,28.75,27.75,EGY,1261.0,Menia,120.0,Egypt,102777.0,Zemam Out,28.75,27.75,EGY,1261.0,Menia,120.0,Egypt,102777.0,Zemam Out,both,identical +169619,29.25,27.75,EGY,1261.0,Menia,120.0,Egypt,102777.0,Zemam Out,29.25,27.75,EGY,1261.0,Menia,120.0,Egypt,102777.0,Zemam Out,both,identical +169620,29.75,27.75,EGY,1261.0,Menia,120.0,Egypt,102777.0,Zemam Out,29.75,27.75,EGY,1261.0,Menia,120.0,Egypt,102777.0,Zemam Out,both,identical +169621,30.25,27.75,EGY,1261.0,Menia,120.0,Egypt,102777.0,Zemam Out,30.25,27.75,EGY,1261.0,Menia,120.0,Egypt,102777.0,Zemam Out,both,identical +169622,30.75,27.75,EGY,1261.0,Menia,120.0,Egypt,102777.0,Zemam Out,30.75,27.75,EGY,1261.0,Menia,120.0,Egypt,102777.0,Zemam Out,both,identical +169623,31.25,27.75,EGY,1261.0,Menia,120.0,Egypt,102777.0,Zemam Out,31.25,27.75,EGY,1261.0,Menia,120.0,Egypt,102777.0,Zemam Out,both,identical +169624,31.75,27.75,EGY,1261.0,Menia,120.0,Egypt,102777.0,Zemam Out,31.75,27.75,EGY,1261.0,Menia,120.0,Egypt,102777.0,Zemam Out,both,identical +169625,32.25,27.75,EGY,1246.0,Assiut,120.0,Egypt,102566.0,Zemam Out,32.25,27.75,EGY,1246.0,Assiut,120.0,Egypt,102566.0,Zemam Out,both,identical +169626,32.75,27.75,EGY,1267.0,Red Sea,120.0,Egypt,102832.0,Hurghada 2,32.75,27.75,EGY,1267.0,Red Sea,120.0,Egypt,102832.0,Hurghada 2,both,identical +169627,33.25,27.75,EGY,1267.0,Red Sea,120.0,Egypt,102832.0,Hurghada 2,33.25,27.75,EGY,1267.0,Red Sea,120.0,Egypt,102832.0,Hurghada 2,both,identical +169628,33.75,27.75,EGY,1267.0,Red Sea,120.0,Egypt,102832.0,Hurghada 2,33.75,27.75,EGY,1267.0,Red Sea,120.0,Egypt,102832.0,Hurghada 2,both,identical +169629,34.25,27.75,EGY,1269.0,South Sinai,120.0,Egypt,102866.0,Sharm El-Sheikh,34.25,27.75,EGY,1269.0,South Sinai,120.0,Egypt,102866.0,Sharm El-Sheikh,both,identical +169631,35.25,27.75,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130580.0,Duba,35.25,27.75,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130580.0,Duba,both,identical +169632,35.75,27.75,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130580.0,Duba,35.75,27.75,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130580.0,Duba,both,identical +169633,36.25,27.75,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130580.0,Duba,36.25,27.75,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130580.0,Duba,both,identical +169634,36.75,27.75,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130582.0,Tabuk,36.75,27.75,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130582.0,Tabuk,both,identical +169635,37.25,27.75,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130582.0,Tabuk,37.25,27.75,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130582.0,Tabuk,both,identical +169636,37.75,27.75,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130582.0,Tabuk,37.75,27.75,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130582.0,Tabuk,both,identical +169637,38.25,27.75,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130583.0,Tayma,38.25,27.75,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130583.0,Tayma,both,identical +169638,38.75,27.75,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130583.0,Tayma,38.75,27.75,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130583.0,Tayma,both,identical +169639,39.25,27.75,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130583.0,Tayma,39.25,27.75,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130583.0,Tayma,both,identical +169640,39.75,27.75,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130583.0,Tayma,39.75,27.75,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130583.0,Tayma,both,identical +169641,40.25,27.75,SAU,2960.0,Hail,266.0,Saudi Arabia,130533.0,Mawqaq,40.25,27.75,SAU,2960.0,Hail,266.0,Saudi Arabia,130533.0,Mawqaq,both,identical +169642,40.75,27.75,SAU,2960.0,Hail,266.0,Saudi Arabia,130533.0,Mawqaq,40.75,27.75,SAU,2960.0,Hail,266.0,Saudi Arabia,130533.0,Mawqaq,both,identical +169643,41.25,27.75,SAU,2960.0,Hail,266.0,Saudi Arabia,130532.0,Hail,41.25,27.75,SAU,2960.0,Hail,266.0,Saudi Arabia,130532.0,Hail,both,identical +169644,41.75,27.75,SAU,2960.0,Hail,266.0,Saudi Arabia,130532.0,Hail,41.75,27.75,SAU,2960.0,Hail,266.0,Saudi Arabia,130532.0,Hail,both,identical +169645,42.25,27.75,SAU,2960.0,Hail,266.0,Saudi Arabia,130531.0,Baqa,42.25,27.75,SAU,2960.0,Hail,266.0,Saudi Arabia,130531.0,Baqa,both,identical +169646,42.75,27.75,SAU,2960.0,Hail,266.0,Saudi Arabia,130531.0,Baqa,42.75,27.75,SAU,2960.0,Hail,266.0,Saudi Arabia,130531.0,Baqa,both,identical +169647,43.25,27.75,SAU,2960.0,Hail,266.0,Saudi Arabia,130531.0,Baqa,43.25,27.75,SAU,2960.0,Hail,266.0,Saudi Arabia,130531.0,Baqa,both,identical +169648,43.75,27.75,SAU,2956.0,Al Qaseem,266.0,Saudi Arabia,130462.0,Al Asyah,43.75,27.75,SAU,2956.0,Al Qaseem,266.0,Saudi Arabia,130462.0,Al Asyah,both,identical +169649,44.25,27.75,SAU,2956.0,Al Qaseem,266.0,Saudi Arabia,130462.0,Al Asyah,44.25,27.75,SAU,2956.0,Al Qaseem,266.0,Saudi Arabia,130462.0,Al Asyah,both,identical +169650,44.75,27.75,SAU,2956.0,Al Qaseem,266.0,Saudi Arabia,130462.0,Al Asyah,44.75,27.75,SAU,2956.0,Al Qaseem,266.0,Saudi Arabia,130462.0,Al Asyah,both,identical +169651,45.25,27.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130523.0,Hafar Al Batin,45.25,27.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130523.0,Hafar Al Batin,both,identical +169652,45.75,27.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130523.0,Hafar Al Batin,45.75,27.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130523.0,Hafar Al Batin,both,identical +169653,46.25,27.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130523.0,Hafar Al Batin,46.25,27.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130523.0,Hafar Al Batin,both,identical +169654,46.75,27.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130523.0,Hafar Al Batin,46.75,27.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130523.0,Hafar Al Batin,both,identical +169655,47.25,27.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130524.0,Qaryah Al Ulya,47.25,27.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130524.0,Qaryah Al Ulya,both,identical +169656,47.75,27.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130524.0,Qaryah Al Ulya,47.75,27.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130524.0,Qaryah Al Ulya,both,identical +169657,48.25,27.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130518.0,Al Nuayriyah,48.25,27.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130518.0,Al Nuayriyah,both,identical +169658,48.75,27.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130516.0,Al Khafji,48.75,27.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130516.0,Al Khafji,both,identical +169659,49.25,27.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130515.0,Al Jubayl,49.25,27.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130515.0,Al Jubayl,both,identical +169663,51.25,27.75,IRN,2651.0,Bushehr,242.0,Iran (Islamic Republic Of),126532.0,Dayyer,51.25,27.75,IRN,2651.0,Bushehr,242.0,Iran (Islamic Republic Of),126532.0,Dayyer,both,identical +169664,51.75,27.75,IRN,2651.0,Bushehr,242.0,Iran (Islamic Republic Of),126532.0,Dayyer,51.75,27.75,IRN,2651.0,Bushehr,242.0,Iran (Islamic Republic Of),126532.0,Dayyer,both,identical +169665,52.25,27.75,IRN,2651.0,Bushehr,242.0,Iran (Islamic Republic Of),126535.0,Jam,52.25,27.75,IRN,2651.0,Bushehr,242.0,Iran (Islamic Republic Of),126535.0,Jam,both,identical +169666,52.75,27.75,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126587.0,Mehr,52.75,27.75,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126587.0,Mehr,both,identical +169667,53.25,27.75,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126581.0,Khonj,53.25,27.75,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126581.0,Khonj,both,identical +169668,53.75,27.75,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126584.0,Larestan,53.75,27.75,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126584.0,Larestan,both,identical +169669,54.25,27.75,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126584.0,Larestan,54.25,27.75,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126584.0,Larestan,both,identical +169670,54.75,27.75,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126584.0,Larestan,54.75,27.75,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126584.0,Larestan,both,identical +169671,55.25,27.75,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126584.0,Larestan,55.25,27.75,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126584.0,Larestan,both,identical +169672,55.75,27.75,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126636.0,Bandar-Abbas,55.75,27.75,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126636.0,Bandar-Abbas,both,identical +169673,56.25,27.75,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126636.0,Bandar-Abbas,56.25,27.75,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126636.0,Bandar-Abbas,both,identical +169674,56.75,27.75,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126636.0,Bandar-Abbas,56.75,27.75,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126636.0,Bandar-Abbas,both,identical +169675,57.25,27.75,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126646.0,Rudan,57.25,27.75,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126646.0,Rudan,both,identical +169676,57.75,27.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126692.0,Kahnuj,57.75,27.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126692.0,Kahnuj,both,identical +169677,58.25,27.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126701.0,Roudbar-E-Jonub,58.25,27.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126701.0,Roudbar-E-Jonub,both,identical +169678,58.75,27.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126701.0,Roudbar-E-Jonub,58.75,27.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126701.0,Roudbar-E-Jonub,both,identical +169679,59.25,27.75,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126861.0,Dalgan,59.25,27.75,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126861.0,Dalgan,both,identical +169680,59.75,27.75,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126866.0,Iranshahr,59.75,27.75,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126866.0,Iranshahr,both,identical +169681,60.25,27.75,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126866.0,Iranshahr,60.25,27.75,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126866.0,Iranshahr,both,identical +169682,60.75,27.75,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126867.0,Khash,60.75,27.75,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126867.0,Khash,both,identical +169683,61.25,27.75,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126867.0,Khash,61.25,27.75,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126867.0,Khash,both,identical +169684,61.75,27.75,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126875.0,Sibo Soran,61.75,27.75,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126875.0,Sibo Soran,both,identical +169685,62.25,27.75,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126873.0,Saravan,62.25,27.75,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126873.0,Saravan,both,identical +169686,62.75,27.75,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126873.0,Saravan,62.75,27.75,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126873.0,Saravan,both,identical +170255,-12.75,28.25,,,,,,,,-12.75,28.25,MAR,1478.0,Guelmim-Oued Noun,147.0,Morocco,104267.0,Tan-Tan,new_only,coastal_recovery +170256,-12.25,28.25,MAR,1478.0,Guelmim-Oued Noun,147.0,Morocco,104267.0,Tan-Tan,-12.25,28.25,MAR,1478.0,Guelmim-Oued Noun,147.0,Morocco,104267.0,Tan-Tan,both,identical +170257,-11.75,28.25,MAR,1478.0,Guelmim-Oued Noun,147.0,Morocco,104267.0,Tan-Tan,-11.75,28.25,MAR,1478.0,Guelmim-Oued Noun,147.0,Morocco,104267.0,Tan-Tan,both,identical +170258,-11.25,28.25,MAR,1478.0,Guelmim-Oued Noun,147.0,Morocco,104267.0,Tan-Tan,-11.25,28.25,MAR,1478.0,Guelmim-Oued Noun,147.0,Morocco,104267.0,Tan-Tan,both,identical +170259,-10.75,28.25,MAR,1478.0,Guelmim-Oued Noun,147.0,Morocco,104267.0,Tan-Tan,-10.75,28.25,MAR,1478.0,Guelmim-Oued Noun,147.0,Morocco,104267.0,Tan-Tan,both,identical +170260,-10.25,28.25,MAR,1478.0,Guelmim-Oued Noun,147.0,Morocco,104264.0,Assa-Zag,-10.25,28.25,MAR,1478.0,Guelmim-Oued Noun,147.0,Morocco,104264.0,Assa-Zag,both,identical +170261,-9.75,28.25,MAR,1478.0,Guelmim-Oued Noun,147.0,Morocco,104264.0,Assa-Zag,-9.75,28.25,MAR,1478.0,Guelmim-Oued Noun,147.0,Morocco,104264.0,Assa-Zag,both,identical +170262,-9.25,28.25,MAR,1478.0,Guelmim-Oued Noun,147.0,Morocco,104264.0,Assa-Zag,-9.25,28.25,MAR,1478.0,Guelmim-Oued Noun,147.0,Morocco,104264.0,Assa-Zag,both,identical +170263,-8.75,28.25,MAR,1478.0,Guelmim-Oued Noun,147.0,Morocco,104264.0,Assa-Zag,-8.75,28.25,MAR,1478.0,Guelmim-Oued Noun,147.0,Morocco,104264.0,Assa-Zag,both,identical +170264,-8.25,28.25,DZA,1044.0,Tindouf,101.0,Algeria,101371.0,Tindouf,-8.25,28.25,DZA,1044.0,Tindouf,101.0,Algeria,101371.0,Tindouf,both,identical +170265,-7.75,28.25,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,-7.75,28.25,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,both,identical +170266,-7.25,28.25,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,-7.25,28.25,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,both,identical +170267,-6.75,28.25,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,-6.75,28.25,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,both,identical +170268,-6.25,28.25,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,-6.25,28.25,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,both,identical +170269,-5.75,28.25,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,-5.75,28.25,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,both,identical +170270,-5.25,28.25,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,-5.25,28.25,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,both,identical +170271,-4.75,28.25,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,-4.75,28.25,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,both,identical +170272,-4.25,28.25,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,-4.25,28.25,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,both,identical +170273,-3.75,28.25,DZA,1007.0,Bechar,101.0,Algeria,100240.0,Tabelbala,-3.75,28.25,DZA,1007.0,Bechar,101.0,Algeria,100240.0,Tabelbala,both,identical +170274,-3.25,28.25,DZA,1007.0,Bechar,101.0,Algeria,100240.0,Tabelbala,-3.25,28.25,DZA,1007.0,Bechar,101.0,Algeria,100240.0,Tabelbala,both,identical +170275,-2.75,28.25,DZA,1007.0,Bechar,101.0,Algeria,100240.0,Tabelbala,-2.75,28.25,DZA,1007.0,Bechar,101.0,Algeria,100240.0,Tabelbala,both,identical +170276,-2.25,28.25,DZA,1001.0,Adrar,101.0,Algeria,100027.0,Tsabit,-2.25,28.25,DZA,1001.0,Adrar,101.0,Algeria,100027.0,Tsabit,both,identical +170277,-1.75,28.25,DZA,1001.0,Adrar,101.0,Algeria,100027.0,Tsabit,-1.75,28.25,DZA,1001.0,Adrar,101.0,Algeria,100027.0,Tsabit,both,identical +170278,-1.25,28.25,DZA,1001.0,Adrar,101.0,Algeria,100027.0,Tsabit,-1.25,28.25,DZA,1001.0,Adrar,101.0,Algeria,100027.0,Tsabit,both,identical +170279,-0.75,28.25,DZA,1001.0,Adrar,101.0,Algeria,100027.0,Tsabit,-0.75,28.25,DZA,1001.0,Adrar,101.0,Algeria,100027.0,Tsabit,both,identical +170280,-0.25,28.25,DZA,1001.0,Adrar,101.0,Algeria,100027.0,Tsabit,-0.25,28.25,DZA,1001.0,Adrar,101.0,Algeria,100027.0,Tsabit,both,identical +170281,0.25,28.25,DZA,1001.0,Adrar,101.0,Algeria,100020.0,Tamentit,0.25,28.25,DZA,1001.0,Adrar,101.0,Algeria,100020.0,Tamentit,both,identical +170282,0.75,28.25,DZA,1001.0,Adrar,101.0,Algeria,100020.0,Tamentit,0.75,28.25,DZA,1001.0,Adrar,101.0,Algeria,100020.0,Tamentit,both,identical +170283,1.25,28.25,DZA,1001.0,Adrar,101.0,Algeria,100024.0,Timokten,1.25,28.25,DZA,1001.0,Adrar,101.0,Algeria,100024.0,Timokten,both,identical +170284,1.75,28.25,DZA,1001.0,Adrar,101.0,Algeria,100024.0,Timokten,1.75,28.25,DZA,1001.0,Adrar,101.0,Algeria,100024.0,Timokten,both,identical +170285,2.25,28.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101296.0,In Salah,2.25,28.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101296.0,In Salah,both,identical +170286,2.75,28.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101296.0,In Salah,2.75,28.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101296.0,In Salah,both,identical +170287,3.25,28.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101296.0,In Salah,3.25,28.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101296.0,In Salah,both,identical +170288,3.75,28.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101291.0,Fouggarat Ez Zouaia,3.75,28.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101291.0,Fouggarat Ez Zouaia,both,identical +170289,4.25,28.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101291.0,Fouggarat Ez Zouaia,4.25,28.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101291.0,Fouggarat Ez Zouaia,both,identical +170290,4.75,28.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101291.0,Fouggarat Ez Zouaia,4.75,28.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101291.0,Fouggarat Ez Zouaia,both,identical +170291,5.25,28.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101291.0,Fouggarat Ez Zouaia,5.25,28.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101291.0,Fouggarat Ez Zouaia,both,identical +170292,5.75,28.25,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,5.75,28.25,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,both,identical +170293,6.25,28.25,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,6.25,28.25,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,both,identical +170294,6.75,28.25,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,6.75,28.25,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,both,identical +170295,7.25,28.25,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,7.25,28.25,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,both,identical +170296,7.75,28.25,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,7.75,28.25,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,both,identical +170297,8.25,28.25,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,8.25,28.25,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,both,identical +170298,8.75,28.25,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,8.75,28.25,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,both,identical +170299,9.25,28.25,DZA,1022.0,Illizi,101.0,Algeria,100676.0,In Amenas,9.25,28.25,DZA,1022.0,Illizi,101.0,Algeria,100676.0,In Amenas,both,identical +170300,9.75,28.25,DZA,1022.0,Illizi,101.0,Algeria,100676.0,In Amenas,9.75,28.25,DZA,1022.0,Illizi,101.0,Algeria,100676.0,In Amenas,both,identical +170301,10.25,28.25,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,10.25,28.25,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,both,identical +170302,10.75,28.25,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,10.75,28.25,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,both,identical +170303,11.25,28.25,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,11.25,28.25,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,both,identical +170304,11.75,28.25,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,11.75,28.25,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,both,identical +170305,12.25,28.25,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,12.25,28.25,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,both,identical +170306,12.75,28.25,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,12.75,28.25,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,both,identical +170307,13.25,28.25,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,13.25,28.25,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,both,identical +170308,13.75,28.25,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,13.75,28.25,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,both,identical +170309,14.25,28.25,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,14.25,28.25,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,both,identical +170310,14.75,28.25,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,14.75,28.25,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,both,identical +170311,15.25,28.25,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,15.25,28.25,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,both,identical +170312,15.75,28.25,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,15.75,28.25,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,both,identical +170313,16.25,28.25,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,16.25,28.25,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,both,identical +170314,16.75,28.25,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,16.75,28.25,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,both,identical +170315,17.25,28.25,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,17.25,28.25,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,both,identical +170316,17.75,28.25,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,17.75,28.25,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,both,identical +170317,18.25,28.25,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,18.25,28.25,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,both,identical +170318,18.75,28.25,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,18.75,28.25,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,both,identical +170319,19.25,28.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,19.25,28.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +170320,19.75,28.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,19.75,28.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +170321,20.25,28.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,20.25,28.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +170322,20.75,28.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,20.75,28.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +170323,21.25,28.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,21.25,28.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +170324,21.75,28.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,21.75,28.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +170325,22.25,28.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,22.25,28.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +170326,22.75,28.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,22.75,28.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +170327,23.25,28.25,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,23.25,28.25,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,both,identical +170328,23.75,28.25,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,23.75,28.25,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,both,identical +170329,24.25,28.25,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,24.25,28.25,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,both,identical +170330,24.75,28.25,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,24.75,28.25,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,both,identical +170331,25.25,28.25,EGY,1260.0,Matrouh,120.0,Egypt,102764.0,Siwa,25.25,28.25,EGY,1260.0,Matrouh,120.0,Egypt,102764.0,Siwa,both,identical +170332,25.75,28.25,EGY,1260.0,Matrouh,120.0,Egypt,102764.0,Siwa,25.75,28.25,EGY,1260.0,Matrouh,120.0,Egypt,102764.0,Siwa,both,identical +170333,26.25,28.25,EGY,1260.0,Matrouh,120.0,Egypt,102764.0,Siwa,26.25,28.25,EGY,1260.0,Matrouh,120.0,Egypt,102764.0,Siwa,both,identical +170334,26.75,28.25,EGY,1260.0,Matrouh,120.0,Egypt,102764.0,Siwa,26.75,28.25,EGY,1260.0,Matrouh,120.0,Egypt,102764.0,Siwa,both,identical +170335,27.25,28.25,EGY,1260.0,Matrouh,120.0,Egypt,102764.0,Siwa,27.25,28.25,EGY,1260.0,Matrouh,120.0,Egypt,102764.0,Siwa,both,identical +170336,27.75,28.25,EGY,1255.0,Giza,120.0,Egypt,102720.0,Zemam Out,27.75,28.25,EGY,1255.0,Giza,120.0,Egypt,102720.0,Zemam Out,both,identical +170337,28.25,28.25,EGY,1255.0,Giza,120.0,Egypt,102720.0,Zemam Out,28.25,28.25,EGY,1255.0,Giza,120.0,Egypt,102720.0,Zemam Out,both,identical +170338,28.75,28.25,EGY,1255.0,Giza,120.0,Egypt,102720.0,Zemam Out,28.75,28.25,EGY,1255.0,Giza,120.0,Egypt,102720.0,Zemam Out,both,identical +170339,29.25,28.25,EGY,1255.0,Giza,120.0,Egypt,102720.0,Zemam Out,29.25,28.25,EGY,1255.0,Giza,120.0,Egypt,102720.0,Zemam Out,both,identical +170340,29.75,28.25,EGY,1261.0,Menia,120.0,Egypt,102777.0,Zemam Out,29.75,28.25,EGY,1261.0,Menia,120.0,Egypt,102777.0,Zemam Out,both,identical +170341,30.25,28.25,EGY,1261.0,Menia,120.0,Egypt,102777.0,Zemam Out,30.25,28.25,EGY,1261.0,Menia,120.0,Egypt,102777.0,Zemam Out,both,identical +170342,30.75,28.25,EGY,1261.0,Menia,120.0,Egypt,102777.0,Zemam Out,30.75,28.25,EGY,1261.0,Menia,120.0,Egypt,102777.0,Zemam Out,both,identical +170343,31.25,28.25,EGY,1261.0,Menia,120.0,Egypt,102777.0,Zemam Out,31.25,28.25,EGY,1261.0,Menia,120.0,Egypt,102777.0,Zemam Out,both,identical +170344,31.75,28.25,EGY,1261.0,Menia,120.0,Egypt,102777.0,Zemam Out,31.75,28.25,EGY,1261.0,Menia,120.0,Egypt,102777.0,Zemam Out,both,identical +170345,32.25,28.25,EGY,1261.0,Menia,120.0,Egypt,102777.0,Zemam Out,32.25,28.25,EGY,1261.0,Menia,120.0,Egypt,102777.0,Zemam Out,both,identical +170346,32.75,28.25,EGY,1267.0,Red Sea,120.0,Egypt,102835.0,Ras Gharib,32.75,28.25,EGY,1267.0,Red Sea,120.0,Egypt,102835.0,Ras Gharib,both,identical +170347,33.25,28.25,EGY,1267.0,Red Sea,120.0,Egypt,102832.0,Hurghada 2,33.25,28.25,EGY,1267.0,Red Sea,120.0,Egypt,102832.0,Hurghada 2,both,identical +170348,33.75,28.25,EGY,1269.0,South Sinai,120.0,Egypt,102861.0,Al-Tur,33.75,28.25,EGY,1269.0,South Sinai,120.0,Egypt,102861.0,Al-Tur,both,identical +170349,34.25,28.25,EGY,1269.0,South Sinai,120.0,Egypt,102866.0,Sharm El-Sheikh,34.25,28.25,EGY,1269.0,South Sinai,120.0,Egypt,102866.0,Sharm El-Sheikh,both,identical +170350,34.75,28.25,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130578.0,Al Bad,34.75,28.25,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130578.0,Al Bad,both,identical +170351,35.25,28.25,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130580.0,Duba,35.25,28.25,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130580.0,Duba,both,identical +170352,35.75,28.25,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130582.0,Tabuk,35.75,28.25,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130582.0,Tabuk,both,identical +170353,36.25,28.25,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130582.0,Tabuk,36.25,28.25,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130582.0,Tabuk,both,identical +170354,36.75,28.25,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130582.0,Tabuk,36.75,28.25,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130582.0,Tabuk,both,identical +170355,37.25,28.25,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130582.0,Tabuk,37.25,28.25,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130582.0,Tabuk,both,identical +170356,37.75,28.25,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130582.0,Tabuk,37.75,28.25,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130582.0,Tabuk,both,identical +170357,38.25,28.25,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130582.0,Tabuk,38.25,28.25,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130582.0,Tabuk,both,identical +170358,38.75,28.25,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130583.0,Tayma,38.75,28.25,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130583.0,Tayma,both,identical +170359,39.25,28.25,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130583.0,Tayma,39.25,28.25,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130583.0,Tayma,both,identical +170360,39.75,28.25,SAU,2960.0,Hail,266.0,Saudi Arabia,130532.0,Hail,39.75,28.25,SAU,2960.0,Hail,266.0,Saudi Arabia,130532.0,Hail,both,identical +170361,40.25,28.25,SAU,2960.0,Hail,266.0,Saudi Arabia,130532.0,Hail,40.25,28.25,SAU,2960.0,Hail,266.0,Saudi Arabia,130532.0,Hail,both,identical +170362,40.75,28.25,SAU,2960.0,Hail,266.0,Saudi Arabia,130532.0,Hail,40.75,28.25,SAU,2960.0,Hail,266.0,Saudi Arabia,130532.0,Hail,both,identical +170363,41.25,28.25,SAU,2960.0,Hail,266.0,Saudi Arabia,130532.0,Hail,41.25,28.25,SAU,2960.0,Hail,266.0,Saudi Arabia,130532.0,Hail,both,identical +170364,41.75,28.25,SAU,2960.0,Hail,266.0,Saudi Arabia,130532.0,Hail,41.75,28.25,SAU,2960.0,Hail,266.0,Saudi Arabia,130532.0,Hail,both,identical +170365,42.25,28.25,SAU,2960.0,Hail,266.0,Saudi Arabia,130531.0,Baqa,42.25,28.25,SAU,2960.0,Hail,266.0,Saudi Arabia,130531.0,Baqa,both,identical +170366,42.75,28.25,SAU,2960.0,Hail,266.0,Saudi Arabia,130531.0,Baqa,42.75,28.25,SAU,2960.0,Hail,266.0,Saudi Arabia,130531.0,Baqa,both,identical +170367,43.25,28.25,SAU,2960.0,Hail,266.0,Saudi Arabia,130531.0,Baqa,43.25,28.25,SAU,2960.0,Hail,266.0,Saudi Arabia,130531.0,Baqa,both,identical +170368,43.75,28.25,SAU,2960.0,Hail,266.0,Saudi Arabia,130531.0,Baqa,43.75,28.25,SAU,2960.0,Hail,266.0,Saudi Arabia,130531.0,Baqa,both,identical +170369,44.25,28.25,SAU,2960.0,Hail,266.0,Saudi Arabia,130531.0,Baqa,44.25,28.25,SAU,2960.0,Hail,266.0,Saudi Arabia,130531.0,Baqa,both,identical +170370,44.75,28.25,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130576.0,Rafha,44.75,28.25,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130576.0,Rafha,both,identical +170371,45.25,28.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130523.0,Hafar Al Batin,45.25,28.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130523.0,Hafar Al Batin,both,identical +170372,45.75,28.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130523.0,Hafar Al Batin,45.75,28.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130523.0,Hafar Al Batin,both,identical +170373,46.25,28.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130523.0,Hafar Al Batin,46.25,28.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130523.0,Hafar Al Batin,both,identical +170374,46.75,28.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130523.0,Hafar Al Batin,46.75,28.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130523.0,Hafar Al Batin,both,identical +170375,47.25,28.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130523.0,Hafar Al Batin,47.25,28.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130523.0,Hafar Al Batin,both,identical +170376,47.75,28.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130516.0,Al Khafji,47.75,28.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130516.0,Al Khafji,both,identical +170377,48.25,28.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130516.0,Al Khafji,48.25,28.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130516.0,Al Khafji,both,identical +170378,48.75,28.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130516.0,Al Khafji,48.75,28.25,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130516.0,Al Khafji,both,identical +170383,51.25,28.25,IRN,2651.0,Bushehr,242.0,Iran (Islamic Republic Of),126531.0,Dashti,51.25,28.25,IRN,2651.0,Bushehr,242.0,Iran (Islamic Republic Of),126531.0,Dashti,both,identical +170384,51.75,28.25,IRN,2651.0,Bushehr,242.0,Iran (Islamic Republic Of),126531.0,Dashti,51.75,28.25,IRN,2651.0,Bushehr,242.0,Iran (Islamic Republic Of),126531.0,Dashti,both,identical +170385,52.25,28.25,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126573.0,Farashband,52.25,28.25,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126573.0,Farashband,both,identical +170386,52.75,28.25,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126590.0,Qir-O-Karzin,52.75,28.25,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126590.0,Qir-O-Karzin,both,identical +170387,53.25,28.25,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126590.0,Qir-O-Karzin,53.25,28.25,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126590.0,Qir-O-Karzin,both,identical +170388,53.75,28.25,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126584.0,Larestan,53.75,28.25,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126584.0,Larestan,both,identical +170389,54.25,28.25,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126595.0,Zarrindasht,54.25,28.25,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126595.0,Zarrindasht,both,identical +170390,54.75,28.25,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126595.0,Zarrindasht,54.75,28.25,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126595.0,Zarrindasht,both,identical +170391,55.25,28.25,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126570.0,Darab,55.25,28.25,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126570.0,Darab,both,identical +170392,55.75,28.25,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126640.0,Hajiabad,55.75,28.25,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126640.0,Hajiabad,both,identical +170393,56.25,28.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126684.0,Arzuiyeh,56.25,28.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126684.0,Arzuiyeh,both,identical +170394,56.75,28.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126684.0,Arzuiyeh,56.75,28.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126684.0,Arzuiyeh,both,identical +170395,57.25,28.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126689.0,Faryab,57.25,28.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126689.0,Faryab,both,identical +170396,57.75,28.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126691.0,Jiroft,57.75,28.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126691.0,Jiroft,both,identical +170397,58.25,28.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126683.0,Anbarabad,58.25,28.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126683.0,Anbarabad,both,identical +170398,58.75,28.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126700.0,Rigan,58.75,28.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126700.0,Rigan,both,identical +170399,59.25,28.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126866.0,Iranshahr,59.25,28.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126866.0,Iranshahr,both,identical +170400,59.75,28.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126866.0,Iranshahr,59.75,28.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126866.0,Iranshahr,both,identical +170401,60.25,28.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126866.0,Iranshahr,60.25,28.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126866.0,Iranshahr,both,identical +170402,60.75,28.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126867.0,Khash,60.75,28.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126867.0,Khash,both,identical +170403,61.25,28.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126867.0,Khash,61.25,28.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126867.0,Khash,both,identical +170404,61.75,28.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126867.0,Khash,61.75,28.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126867.0,Khash,both,identical +170405,62.25,28.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126867.0,Khash,62.25,28.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126867.0,Khash,both,identical +170406,62.75,28.25,PAK,2905.0,Balochistan,260.0,Pakistan,130098.0,Chagai,62.75,28.25,PAK,2905.0,Balochistan,260.0,Pakistan,130098.0,Chagai,both,identical +170978,-11.25,28.75,MAR,1478.0,Guelmim-Oued Noun,147.0,Morocco,104267.0,Tan-Tan,-11.25,28.75,MAR,1478.0,Guelmim-Oued Noun,147.0,Morocco,104267.0,Tan-Tan,both,identical +170979,-10.75,28.75,MAR,1478.0,Guelmim-Oued Noun,147.0,Morocco,104265.0,Guelmim,-10.75,28.75,MAR,1478.0,Guelmim-Oued Noun,147.0,Morocco,104265.0,Guelmim,both,identical +170980,-10.25,28.75,MAR,1478.0,Guelmim-Oued Noun,147.0,Morocco,104265.0,Guelmim,-10.25,28.75,MAR,1478.0,Guelmim-Oued Noun,147.0,Morocco,104265.0,Guelmim,both,identical +170981,-9.75,28.75,MAR,1478.0,Guelmim-Oued Noun,147.0,Morocco,104265.0,Guelmim,-9.75,28.75,MAR,1478.0,Guelmim-Oued Noun,147.0,Morocco,104265.0,Guelmim,both,identical +170982,-9.25,28.75,MAR,1478.0,Guelmim-Oued Noun,147.0,Morocco,104264.0,Assa-Zag,-9.25,28.75,MAR,1478.0,Guelmim-Oued Noun,147.0,Morocco,104264.0,Assa-Zag,both,identical +170983,-8.75,28.75,MAR,1482.0,Souss-Massa,147.0,Morocco,104295.0,Tata,-8.75,28.75,MAR,1482.0,Souss-Massa,147.0,Morocco,104295.0,Tata,both,identical +170984,-8.25,28.75,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,-8.25,28.75,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,both,identical +170985,-7.75,28.75,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,-7.75,28.75,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,both,identical +170986,-7.25,28.75,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,-7.25,28.75,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,both,identical +170987,-6.75,28.75,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,-6.75,28.75,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,both,identical +170988,-6.25,28.75,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,-6.25,28.75,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,both,identical +170989,-5.75,28.75,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,-5.75,28.75,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,both,identical +170990,-5.25,28.75,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,-5.25,28.75,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,both,identical +170991,-4.75,28.75,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,-4.75,28.75,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,both,identical +170992,-4.25,28.75,DZA,1007.0,Bechar,101.0,Algeria,100240.0,Tabelbala,-4.25,28.75,DZA,1007.0,Bechar,101.0,Algeria,100240.0,Tabelbala,both,identical +170993,-3.75,28.75,DZA,1007.0,Bechar,101.0,Algeria,100240.0,Tabelbala,-3.75,28.75,DZA,1007.0,Bechar,101.0,Algeria,100240.0,Tabelbala,both,identical +170994,-3.25,28.75,DZA,1007.0,Bechar,101.0,Algeria,100240.0,Tabelbala,-3.25,28.75,DZA,1007.0,Bechar,101.0,Algeria,100240.0,Tabelbala,both,identical +170995,-2.75,28.75,DZA,1007.0,Bechar,101.0,Algeria,100240.0,Tabelbala,-2.75,28.75,DZA,1007.0,Bechar,101.0,Algeria,100240.0,Tabelbala,both,identical +170996,-2.25,28.75,DZA,1007.0,Bechar,101.0,Algeria,100240.0,Tabelbala,-2.25,28.75,DZA,1007.0,Bechar,101.0,Algeria,100240.0,Tabelbala,both,identical +170997,-1.75,28.75,DZA,1001.0,Adrar,101.0,Algeria,100027.0,Tsabit,-1.75,28.75,DZA,1001.0,Adrar,101.0,Algeria,100027.0,Tsabit,both,identical +170998,-1.25,28.75,DZA,1001.0,Adrar,101.0,Algeria,100027.0,Tsabit,-1.25,28.75,DZA,1001.0,Adrar,101.0,Algeria,100027.0,Tsabit,both,identical +170999,-0.75,28.75,DZA,1001.0,Adrar,101.0,Algeria,100027.0,Tsabit,-0.75,28.75,DZA,1001.0,Adrar,101.0,Algeria,100027.0,Tsabit,both,identical +171000,-0.25,28.75,DZA,1001.0,Adrar,101.0,Algeria,100009.0,Gharouine,-0.25,28.75,DZA,1001.0,Adrar,101.0,Algeria,100009.0,Gharouine,both,identical +171001,0.25,28.75,DZA,1001.0,Adrar,101.0,Algeria,100003.0,Aougrout,0.25,28.75,DZA,1001.0,Adrar,101.0,Algeria,100003.0,Aougrout,both,identical +171002,0.75,28.75,DZA,1001.0,Adrar,101.0,Algeria,100003.0,Aougrout,0.75,28.75,DZA,1001.0,Adrar,101.0,Algeria,100003.0,Aougrout,both,identical +171003,1.25,28.75,DZA,1001.0,Adrar,101.0,Algeria,100003.0,Aougrout,1.25,28.75,DZA,1001.0,Adrar,101.0,Algeria,100003.0,Aougrout,both,identical +171004,1.75,28.75,DZA,1001.0,Adrar,101.0,Algeria,100003.0,Aougrout,1.75,28.75,DZA,1001.0,Adrar,101.0,Algeria,100003.0,Aougrout,both,identical +171005,2.25,28.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101296.0,In Salah,2.25,28.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101296.0,In Salah,both,identical +171006,2.75,28.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101296.0,In Salah,2.75,28.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101296.0,In Salah,both,identical +171007,3.25,28.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101296.0,In Salah,3.25,28.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101296.0,In Salah,both,identical +171008,3.75,28.75,DZA,1033.0,Ouargla,101.0,Algeria,101017.0,Hassi Messaoud,3.75,28.75,DZA,1033.0,Ouargla,101.0,Algeria,101017.0,Hassi Messaoud,both,identical +171009,4.25,28.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101291.0,Fouggarat Ez Zouaia,4.25,28.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101291.0,Fouggarat Ez Zouaia,both,identical +171010,4.75,28.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101291.0,Fouggarat Ez Zouaia,4.75,28.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101291.0,Fouggarat Ez Zouaia,both,identical +171011,5.25,28.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101291.0,Fouggarat Ez Zouaia,5.25,28.75,DZA,1041.0,Tamanrasset,101.0,Algeria,101291.0,Fouggarat Ez Zouaia,both,identical +171012,5.75,28.75,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,5.75,28.75,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,both,identical +171013,6.25,28.75,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,6.25,28.75,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,both,identical +171014,6.75,28.75,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,6.75,28.75,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,both,identical +171015,7.25,28.75,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,7.25,28.75,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,both,identical +171016,7.75,28.75,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,7.75,28.75,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,both,identical +171017,8.25,28.75,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,8.25,28.75,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,both,identical +171018,8.75,28.75,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,8.75,28.75,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,both,identical +171019,9.25,28.75,DZA,1022.0,Illizi,101.0,Algeria,100673.0,Debdeb,9.25,28.75,DZA,1022.0,Illizi,101.0,Algeria,100673.0,Debdeb,both,identical +171020,9.75,28.75,DZA,1022.0,Illizi,101.0,Algeria,100673.0,Debdeb,9.75,28.75,DZA,1022.0,Illizi,101.0,Algeria,100673.0,Debdeb,both,identical +171021,10.25,28.75,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,10.25,28.75,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,both,identical +171022,10.75,28.75,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,10.75,28.75,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,both,identical +171023,11.25,28.75,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,11.25,28.75,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,both,identical +171024,11.75,28.75,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,11.75,28.75,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,both,identical +171025,12.25,28.75,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,12.25,28.75,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,both,identical +171026,12.75,28.75,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,12.75,28.75,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,both,identical +171027,13.25,28.75,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,13.25,28.75,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,both,identical +171028,13.75,28.75,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,13.75,28.75,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,both,identical +171029,14.25,28.75,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,14.25,28.75,LBY,1426.0,South,140.0,Libya,104044.0,Wadi Ashshati,both,identical +171030,14.75,28.75,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,14.75,28.75,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,both,identical +171031,15.25,28.75,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,15.25,28.75,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,both,identical +171032,15.75,28.75,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,15.75,28.75,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,both,identical +171033,16.25,28.75,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,16.25,28.75,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,both,identical +171034,16.75,28.75,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,16.75,28.75,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,both,identical +171035,17.25,28.75,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,17.25,28.75,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,both,identical +171036,17.75,28.75,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,17.75,28.75,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,both,identical +171037,18.25,28.75,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,18.25,28.75,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,both,identical +171038,18.75,28.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,18.75,28.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +171039,19.25,28.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,19.25,28.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +171040,19.75,28.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,19.75,28.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +171041,20.25,28.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,20.25,28.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +171042,20.75,28.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,20.75,28.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +171043,21.25,28.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,21.25,28.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +171044,21.75,28.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,21.75,28.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +171045,22.25,28.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,22.25,28.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +171046,22.75,28.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,22.75,28.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +171047,23.25,28.75,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,23.25,28.75,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,both,identical +171048,23.75,28.75,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,23.75,28.75,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,both,identical +171049,24.25,28.75,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,24.25,28.75,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,both,identical +171050,24.75,28.75,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,24.75,28.75,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,both,identical +171051,25.25,28.75,EGY,1260.0,Matrouh,120.0,Egypt,102764.0,Siwa,25.25,28.75,EGY,1260.0,Matrouh,120.0,Egypt,102764.0,Siwa,both,identical +171052,25.75,28.75,EGY,1260.0,Matrouh,120.0,Egypt,102764.0,Siwa,25.75,28.75,EGY,1260.0,Matrouh,120.0,Egypt,102764.0,Siwa,both,identical +171053,26.25,28.75,EGY,1260.0,Matrouh,120.0,Egypt,102760.0,Marsa Matruh,26.25,28.75,EGY,1260.0,Matrouh,120.0,Egypt,102760.0,Marsa Matruh,both,identical +171054,26.75,28.75,EGY,1260.0,Matrouh,120.0,Egypt,102760.0,Marsa Matruh,26.75,28.75,EGY,1260.0,Matrouh,120.0,Egypt,102760.0,Marsa Matruh,both,identical +171055,27.25,28.75,EGY,1260.0,Matrouh,120.0,Egypt,102760.0,Marsa Matruh,27.25,28.75,EGY,1260.0,Matrouh,120.0,Egypt,102760.0,Marsa Matruh,both,identical +171056,27.75,28.75,EGY,1260.0,Matrouh,120.0,Egypt,102760.0,Marsa Matruh,27.75,28.75,EGY,1260.0,Matrouh,120.0,Egypt,102760.0,Marsa Matruh,both,identical +171057,28.25,28.75,EGY,1260.0,Matrouh,120.0,Egypt,102759.0,Daba,28.25,28.75,EGY,1260.0,Matrouh,120.0,Egypt,102759.0,Daba,both,identical +171058,28.75,28.75,EGY,1255.0,Giza,120.0,Egypt,102720.0,Zemam Out,28.75,28.75,EGY,1255.0,Giza,120.0,Egypt,102720.0,Zemam Out,both,identical +171059,29.25,28.75,EGY,1255.0,Giza,120.0,Egypt,102720.0,Zemam Out,29.25,28.75,EGY,1255.0,Giza,120.0,Egypt,102720.0,Zemam Out,both,identical +171060,29.75,28.75,EGY,1255.0,Giza,120.0,Egypt,102720.0,Zemam Out,29.75,28.75,EGY,1255.0,Giza,120.0,Egypt,102720.0,Zemam Out,both,identical +171061,30.25,28.75,EGY,1261.0,Menia,120.0,Egypt,102777.0,Zemam Out,30.25,28.75,EGY,1261.0,Menia,120.0,Egypt,102777.0,Zemam Out,both,identical +171062,30.75,28.75,EGY,1249.0,Beni Suef,120.0,Egypt,102605.0,Zemam Out,30.75,28.75,EGY,1249.0,Beni Suef,120.0,Egypt,102605.0,Zemam Out,both,identical +171063,31.25,28.75,EGY,1249.0,Beni Suef,120.0,Egypt,102605.0,Zemam Out,31.25,28.75,EGY,1249.0,Beni Suef,120.0,Egypt,102605.0,Zemam Out,both,identical +171064,31.75,28.75,EGY,1249.0,Beni Suef,120.0,Egypt,102605.0,Zemam Out,31.75,28.75,EGY,1249.0,Beni Suef,120.0,Egypt,102605.0,Zemam Out,both,identical +171065,32.25,28.75,EGY,1267.0,Red Sea,120.0,Egypt,102835.0,Ras Gharib,32.25,28.75,EGY,1267.0,Red Sea,120.0,Egypt,102835.0,Ras Gharib,both,identical +171066,32.75,28.75,EGY,1267.0,Red Sea,120.0,Egypt,102835.0,Ras Gharib,32.75,28.75,EGY,1267.0,Red Sea,120.0,Egypt,102835.0,Ras Gharib,both,identical +171067,33.25,28.75,EGY,1269.0,South Sinai,120.0,Egypt,102861.0,Al-Tur,33.25,28.75,EGY,1269.0,South Sinai,120.0,Egypt,102861.0,Al-Tur,both,identical +171068,33.75,28.75,EGY,1269.0,South Sinai,120.0,Egypt,102865.0,Sant Katrin,33.75,28.75,EGY,1269.0,South Sinai,120.0,Egypt,102865.0,Sant Katrin,both,identical +171069,34.25,28.75,EGY,1269.0,South Sinai,120.0,Egypt,102865.0,Sant Katrin,34.25,28.75,EGY,1269.0,South Sinai,120.0,Egypt,102865.0,Sant Katrin,both,identical +171070,34.75,28.75,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130578.0,Al Bad,34.75,28.75,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130578.0,Al Bad,both,identical +171071,35.25,28.75,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130578.0,Al Bad,35.25,28.75,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130578.0,Al Bad,both,identical +171072,35.75,28.75,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130582.0,Tabuk,35.75,28.75,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130582.0,Tabuk,both,identical +171073,36.25,28.75,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130582.0,Tabuk,36.25,28.75,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130582.0,Tabuk,both,identical +171074,36.75,28.75,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130582.0,Tabuk,36.75,28.75,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130582.0,Tabuk,both,identical +171075,37.25,28.75,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130582.0,Tabuk,37.25,28.75,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130582.0,Tabuk,both,identical +171076,37.75,28.75,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130582.0,Tabuk,37.75,28.75,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130582.0,Tabuk,both,identical +171077,38.25,28.75,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130582.0,Tabuk,38.25,28.75,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130582.0,Tabuk,both,identical +171078,38.75,28.75,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130582.0,Tabuk,38.75,28.75,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130582.0,Tabuk,both,identical +171079,39.25,28.75,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130450.0,Dawamat Al Jandal,39.25,28.75,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130450.0,Dawamat Al Jandal,both,identical +171080,39.75,28.75,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130450.0,Dawamat Al Jandal,39.75,28.75,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130450.0,Dawamat Al Jandal,both,identical +171081,40.25,28.75,SAU,2960.0,Hail,266.0,Saudi Arabia,130532.0,Hail,40.25,28.75,SAU,2960.0,Hail,266.0,Saudi Arabia,130532.0,Hail,both,identical +171082,40.75,28.75,SAU,2960.0,Hail,266.0,Saudi Arabia,130532.0,Hail,40.75,28.75,SAU,2960.0,Hail,266.0,Saudi Arabia,130532.0,Hail,both,identical +171083,41.25,28.75,SAU,2960.0,Hail,266.0,Saudi Arabia,130532.0,Hail,41.25,28.75,SAU,2960.0,Hail,266.0,Saudi Arabia,130532.0,Hail,both,identical +171084,41.75,28.75,SAU,2960.0,Hail,266.0,Saudi Arabia,130532.0,Hail,41.75,28.75,SAU,2960.0,Hail,266.0,Saudi Arabia,130532.0,Hail,both,identical +171085,42.25,28.75,SAU,2960.0,Hail,266.0,Saudi Arabia,130531.0,Baqa,42.25,28.75,SAU,2960.0,Hail,266.0,Saudi Arabia,130531.0,Baqa,both,identical +171086,42.75,28.75,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130576.0,Rafha,42.75,28.75,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130576.0,Rafha,both,identical +171087,43.25,28.75,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130576.0,Rafha,43.25,28.75,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130576.0,Rafha,both,identical +171088,43.75,28.75,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130576.0,Rafha,43.75,28.75,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130576.0,Rafha,both,identical +171089,44.25,28.75,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130576.0,Rafha,44.25,28.75,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130576.0,Rafha,both,identical +171090,44.75,28.75,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130576.0,Rafha,44.75,28.75,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130576.0,Rafha,both,identical +171091,45.25,28.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130523.0,Hafar Al Batin,45.25,28.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130523.0,Hafar Al Batin,both,identical +171092,45.75,28.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130523.0,Hafar Al Batin,45.75,28.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130523.0,Hafar Al Batin,both,identical +171093,46.25,28.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130523.0,Hafar Al Batin,46.25,28.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130523.0,Hafar Al Batin,both,identical +171094,46.75,28.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130523.0,Hafar Al Batin,46.75,28.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130523.0,Hafar Al Batin,both,identical +171095,47.25,28.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130523.0,Hafar Al Batin,47.25,28.75,SAU,2959.0,Eastern Region,266.0,Saudi Arabia,130523.0,Hafar Al Batin,both,identical +171096,47.75,28.75,KWT,2787.0,Al Ahmadi,250.0,Kuwait,129218.0,Administrative Unit Not Available,47.75,28.75,KWT,2787.0,Al Ahmadi,250.0,Kuwait,129218.0,Administrative Unit Not Available,both,identical +171097,48.25,28.75,KWT,2787.0,Al Ahmadi,250.0,Kuwait,129218.0,Administrative Unit Not Available,48.25,28.75,KWT,2787.0,Al Ahmadi,250.0,Kuwait,129218.0,Administrative Unit Not Available,both,identical +171102,50.75,28.75,IRN,2651.0,Bushehr,242.0,Iran (Islamic Republic Of),126529.0,Bushehr,50.75,28.75,IRN,2651.0,Bushehr,242.0,Iran (Islamic Republic Of),126529.0,Bushehr,both,identical +171103,51.25,28.75,IRN,2651.0,Bushehr,242.0,Iran (Islamic Republic Of),126537.0,Tangestan,51.25,28.75,IRN,2651.0,Bushehr,242.0,Iran (Islamic Republic Of),126537.0,Tangestan,both,identical +171104,51.75,28.75,IRN,2651.0,Bushehr,242.0,Iran (Islamic Republic Of),126530.0,Dashtestan,51.75,28.75,IRN,2651.0,Bushehr,242.0,Iran (Islamic Republic Of),126530.0,Dashtestan,both,identical +171105,52.25,28.75,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126573.0,Farashband,52.25,28.75,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126573.0,Farashband,both,identical +171106,52.75,28.75,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126575.0,Firuzabad,52.75,28.75,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126575.0,Firuzabad,both,identical +171107,53.25,28.75,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126577.0,Jahrom,53.25,28.75,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126577.0,Jahrom,both,identical +171108,53.75,28.75,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126574.0,Fasa,53.75,28.75,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126574.0,Fasa,both,identical +171109,54.25,28.75,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126570.0,Darab,54.25,28.75,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126570.0,Darab,both,identical +171110,54.75,28.75,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126570.0,Darab,54.75,28.75,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126570.0,Darab,both,identical +171111,55.25,28.75,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126570.0,Darab,55.25,28.75,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126570.0,Darab,both,identical +171112,55.75,28.75,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126640.0,Hajiabad,55.75,28.75,IRN,2658.0,Hormozgan,242.0,Iran (Islamic Republic Of),126640.0,Hajiabad,both,identical +171113,56.25,28.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126685.0,Baft,56.25,28.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126685.0,Baft,both,identical +171114,56.75,28.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126685.0,Baft,56.75,28.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126685.0,Baft,both,identical +171115,57.25,28.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126691.0,Jiroft,57.25,28.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126691.0,Jiroft,both,identical +171116,57.75,28.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126691.0,Jiroft,57.75,28.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126691.0,Jiroft,both,identical +171117,58.25,28.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126686.0,Bam,58.25,28.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126686.0,Bam,both,identical +171118,58.75,28.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126700.0,Rigan,58.75,28.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126700.0,Rigan,both,identical +171119,59.25,28.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126700.0,Rigan,59.25,28.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126700.0,Rigan,both,identical +171120,59.75,28.75,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126877.0,Zahedan,59.75,28.75,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126877.0,Zahedan,both,identical +171121,60.25,28.75,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126877.0,Zahedan,60.25,28.75,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126877.0,Zahedan,both,identical +171122,60.75,28.75,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126867.0,Khash,60.75,28.75,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126867.0,Khash,both,identical +171123,61.25,28.75,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126870.0,Mirjaveh,61.25,28.75,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126870.0,Mirjaveh,both,identical +171124,61.75,28.75,PAK,2905.0,Balochistan,260.0,Pakistan,130098.0,Chagai,61.75,28.75,PAK,2905.0,Balochistan,260.0,Pakistan,130098.0,Chagai,both,identical +171125,62.25,28.75,PAK,2905.0,Balochistan,260.0,Pakistan,130098.0,Chagai,62.25,28.75,PAK,2905.0,Balochistan,260.0,Pakistan,130098.0,Chagai,both,identical +171699,-10.75,29.25,MAR,1478.0,Guelmim-Oued Noun,147.0,Morocco,104265.0,Guelmim,-10.75,29.25,MAR,1478.0,Guelmim-Oued Noun,147.0,Morocco,104265.0,Guelmim,both,identical +171700,-10.25,29.25,MAR,1478.0,Guelmim-Oued Noun,147.0,Morocco,104266.0,Sidi Ifni,-10.25,29.25,MAR,1478.0,Guelmim-Oued Noun,147.0,Morocco,104266.0,Sidi Ifni,both,identical +171701,-9.75,29.25,MAR,1478.0,Guelmim-Oued Noun,147.0,Morocco,104265.0,Guelmim,-9.75,29.25,MAR,1478.0,Guelmim-Oued Noun,147.0,Morocco,104265.0,Guelmim,both,identical +171702,-9.25,29.25,MAR,1478.0,Guelmim-Oued Noun,147.0,Morocco,104265.0,Guelmim,-9.25,29.25,MAR,1478.0,Guelmim-Oued Noun,147.0,Morocco,104265.0,Guelmim,both,identical +171703,-8.75,29.25,MAR,1482.0,Souss-Massa,147.0,Morocco,104295.0,Tata,-8.75,29.25,MAR,1482.0,Souss-Massa,147.0,Morocco,104295.0,Tata,both,identical +171704,-8.25,29.25,MAR,1482.0,Souss-Massa,147.0,Morocco,104295.0,Tata,-8.25,29.25,MAR,1482.0,Souss-Massa,147.0,Morocco,104295.0,Tata,both,identical +171705,-7.75,29.25,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,-7.75,29.25,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,both,identical +171706,-7.25,29.25,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,-7.25,29.25,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,both,identical +171707,-6.75,29.25,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,-6.75,29.25,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,both,identical +171708,-6.25,29.25,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,-6.25,29.25,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,both,identical +171709,-5.75,29.25,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,-5.75,29.25,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,both,identical +171710,-5.25,29.25,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,-5.25,29.25,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,both,identical +171711,-4.75,29.25,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,-4.75,29.25,DZA,1044.0,Tindouf,101.0,Algeria,101370.0,Oum El Assel,both,identical +171712,-4.25,29.25,DZA,1007.0,Bechar,101.0,Algeria,100240.0,Tabelbala,-4.25,29.25,DZA,1007.0,Bechar,101.0,Algeria,100240.0,Tabelbala,both,identical +171713,-3.75,29.25,DZA,1007.0,Bechar,101.0,Algeria,100240.0,Tabelbala,-3.75,29.25,DZA,1007.0,Bechar,101.0,Algeria,100240.0,Tabelbala,both,identical +171714,-3.25,29.25,DZA,1007.0,Bechar,101.0,Algeria,100240.0,Tabelbala,-3.25,29.25,DZA,1007.0,Bechar,101.0,Algeria,100240.0,Tabelbala,both,identical +171715,-2.75,29.25,DZA,1007.0,Bechar,101.0,Algeria,100240.0,Tabelbala,-2.75,29.25,DZA,1007.0,Bechar,101.0,Algeria,100240.0,Tabelbala,both,identical +171716,-2.25,29.25,DZA,1007.0,Bechar,101.0,Algeria,100233.0,Kerzaz,-2.25,29.25,DZA,1007.0,Bechar,101.0,Algeria,100233.0,Kerzaz,both,identical +171717,-1.75,29.25,DZA,1007.0,Bechar,101.0,Algeria,100243.0,Timmoudi,-1.75,29.25,DZA,1007.0,Bechar,101.0,Algeria,100243.0,Timmoudi,both,identical +171718,-1.25,29.25,DZA,1007.0,Bechar,101.0,Algeria,100243.0,Timmoudi,-1.25,29.25,DZA,1007.0,Bechar,101.0,Algeria,100243.0,Timmoudi,both,identical +171719,-0.75,29.25,DZA,1007.0,Bechar,101.0,Algeria,100019.0,Talmine,-0.75,29.25,DZA,1001.0,Adrar,101.0,Algeria,100019.0,Talmine,both,admin_reallocation +171720,-0.25,29.25,DZA,1001.0,Adrar,101.0,Algeria,100009.0,Gharouine,-0.25,29.25,DZA,1001.0,Adrar,101.0,Algeria,100009.0,Gharouine,both,identical +171721,0.25,29.25,DZA,1001.0,Adrar,101.0,Algeria,100023.0,Timimoun,0.25,29.25,DZA,1001.0,Adrar,101.0,Algeria,100023.0,Timimoun,both,identical +171722,0.75,29.25,DZA,1001.0,Adrar,101.0,Algeria,100023.0,Timimoun,0.75,29.25,DZA,1001.0,Adrar,101.0,Algeria,100023.0,Timimoun,both,identical +171723,1.25,29.25,DZA,1001.0,Adrar,101.0,Algeria,100003.0,Aougrout,1.25,29.25,DZA,1001.0,Adrar,101.0,Algeria,100003.0,Aougrout,both,identical +171724,1.75,29.25,DZA,1001.0,Adrar,101.0,Algeria,100003.0,Aougrout,1.75,29.25,DZA,1001.0,Adrar,101.0,Algeria,100003.0,Aougrout,both,identical +171725,2.25,29.25,DZA,1020.0,Ghardaia,101.0,Algeria,100632.0,Hassi El Garaa,2.25,29.25,DZA,1020.0,Ghardaia,101.0,Algeria,100632.0,Hassi El Garaa,both,identical +171726,2.75,29.25,DZA,1020.0,Ghardaia,101.0,Algeria,100632.0,Hassi El Garaa,2.75,29.25,DZA,1020.0,Ghardaia,101.0,Algeria,100632.0,Hassi El Garaa,both,identical +171727,3.25,29.25,DZA,1020.0,Ghardaia,101.0,Algeria,100632.0,Hassi El Garaa,3.25,29.25,DZA,1020.0,Ghardaia,101.0,Algeria,100632.0,Hassi El Garaa,both,identical +171728,3.75,29.25,DZA,1033.0,Ouargla,101.0,Algeria,101017.0,Hassi Messaoud,3.75,29.25,DZA,1033.0,Ouargla,101.0,Algeria,101017.0,Hassi Messaoud,both,identical +171729,4.25,29.25,DZA,1033.0,Ouargla,101.0,Algeria,101017.0,Hassi Messaoud,4.25,29.25,DZA,1033.0,Ouargla,101.0,Algeria,101017.0,Hassi Messaoud,both,identical +171730,4.75,29.25,DZA,1033.0,Ouargla,101.0,Algeria,101017.0,Hassi Messaoud,4.75,29.25,DZA,1033.0,Ouargla,101.0,Algeria,101017.0,Hassi Messaoud,both,identical +171731,5.25,29.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101291.0,Fouggarat Ez Zouaia,5.25,29.25,DZA,1041.0,Tamanrasset,101.0,Algeria,101291.0,Fouggarat Ez Zouaia,both,identical +171732,5.75,29.25,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,5.75,29.25,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,both,identical +171733,6.25,29.25,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,6.25,29.25,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,both,identical +171734,6.75,29.25,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,6.75,29.25,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,both,identical +171735,7.25,29.25,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,7.25,29.25,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,both,identical +171736,7.75,29.25,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,7.75,29.25,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,both,identical +171737,8.25,29.25,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,8.25,29.25,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,both,identical +171738,8.75,29.25,DZA,1022.0,Illizi,101.0,Algeria,100673.0,Debdeb,8.75,29.25,DZA,1022.0,Illizi,101.0,Algeria,100673.0,Debdeb,both,identical +171739,9.25,29.25,DZA,1022.0,Illizi,101.0,Algeria,100673.0,Debdeb,9.25,29.25,DZA,1022.0,Illizi,101.0,Algeria,100673.0,Debdeb,both,identical +171740,9.75,29.25,DZA,1022.0,Illizi,101.0,Algeria,100673.0,Debdeb,9.75,29.25,DZA,1022.0,Illizi,101.0,Algeria,100673.0,Debdeb,both,identical +171741,10.25,29.25,LBY,1427.0,West,140.0,Libya,104050.0,Nalut,10.25,29.25,LBY,1427.0,West,140.0,Libya,104050.0,Nalut,both,identical +171742,10.75,29.25,LBY,1427.0,West,140.0,Libya,104050.0,Nalut,10.75,29.25,LBY,1427.0,West,140.0,Libya,104050.0,Nalut,both,identical +171743,11.25,29.25,LBY,1427.0,West,140.0,Libya,104050.0,Nalut,11.25,29.25,LBY,1427.0,West,140.0,Libya,104050.0,Nalut,both,identical +171744,11.75,29.25,LBY,1427.0,West,140.0,Libya,104050.0,Nalut,11.75,29.25,LBY,1427.0,West,140.0,Libya,104050.0,Nalut,both,identical +171745,12.25,29.25,LBY,1427.0,West,140.0,Libya,104045.0,Al Jabal Al Gharbi,12.25,29.25,LBY,1427.0,West,140.0,Libya,104045.0,Al Jabal Al Gharbi,both,identical +171746,12.75,29.25,LBY,1427.0,West,140.0,Libya,104045.0,Al Jabal Al Gharbi,12.75,29.25,LBY,1427.0,West,140.0,Libya,104045.0,Al Jabal Al Gharbi,both,identical +171747,13.25,29.25,LBY,1427.0,West,140.0,Libya,104045.0,Al Jabal Al Gharbi,13.25,29.25,LBY,1427.0,West,140.0,Libya,104045.0,Al Jabal Al Gharbi,both,identical +171748,13.75,29.25,LBY,1427.0,West,140.0,Libya,104045.0,Al Jabal Al Gharbi,13.75,29.25,LBY,1427.0,West,140.0,Libya,104045.0,Al Jabal Al Gharbi,both,identical +171749,14.25,29.25,LBY,1427.0,West,140.0,Libya,104045.0,Al Jabal Al Gharbi,14.25,29.25,LBY,1427.0,West,140.0,Libya,104045.0,Al Jabal Al Gharbi,both,identical +171750,14.75,29.25,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,14.75,29.25,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,both,identical +171751,15.25,29.25,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,15.25,29.25,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,both,identical +171752,15.75,29.25,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,15.75,29.25,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,both,identical +171753,16.25,29.25,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,16.25,29.25,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,both,identical +171754,16.75,29.25,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,16.75,29.25,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,both,identical +171755,17.25,29.25,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,17.25,29.25,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,both,identical +171756,17.75,29.25,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,17.75,29.25,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,both,identical +171757,18.25,29.25,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,18.25,29.25,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,both,identical +171758,18.75,29.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,18.75,29.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +171759,19.25,29.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,19.25,29.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +171760,19.75,29.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,19.75,29.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +171761,20.25,29.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,20.25,29.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +171762,20.75,29.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,20.75,29.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +171763,21.25,29.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,21.25,29.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +171764,21.75,29.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,21.75,29.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +171765,22.25,29.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,22.25,29.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +171766,22.75,29.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,22.75,29.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +171767,23.25,29.25,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,23.25,29.25,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,both,identical +171768,23.75,29.25,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,23.75,29.25,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,both,identical +171769,24.25,29.25,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,24.25,29.25,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,both,identical +171770,24.75,29.25,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,24.75,29.25,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,both,identical +171771,25.25,29.25,EGY,1260.0,Matrouh,120.0,Egypt,102764.0,Siwa,25.25,29.25,EGY,1260.0,Matrouh,120.0,Egypt,102764.0,Siwa,both,identical +171772,25.75,29.25,EGY,1260.0,Matrouh,120.0,Egypt,102764.0,Siwa,25.75,29.25,EGY,1260.0,Matrouh,120.0,Egypt,102764.0,Siwa,both,identical +171773,26.25,29.25,EGY,1260.0,Matrouh,120.0,Egypt,102760.0,Marsa Matruh,26.25,29.25,EGY,1260.0,Matrouh,120.0,Egypt,102760.0,Marsa Matruh,both,identical +171774,26.75,29.25,EGY,1260.0,Matrouh,120.0,Egypt,102760.0,Marsa Matruh,26.75,29.25,EGY,1260.0,Matrouh,120.0,Egypt,102760.0,Marsa Matruh,both,identical +171775,27.25,29.25,EGY,1260.0,Matrouh,120.0,Egypt,102760.0,Marsa Matruh,27.25,29.25,EGY,1260.0,Matrouh,120.0,Egypt,102760.0,Marsa Matruh,both,identical +171776,27.75,29.25,EGY,1260.0,Matrouh,120.0,Egypt,102760.0,Marsa Matruh,27.75,29.25,EGY,1260.0,Matrouh,120.0,Egypt,102760.0,Marsa Matruh,both,identical +171777,28.25,29.25,EGY,1260.0,Matrouh,120.0,Egypt,102759.0,Daba,28.25,29.25,EGY,1260.0,Matrouh,120.0,Egypt,102759.0,Daba,both,identical +171778,28.75,29.25,EGY,1260.0,Matrouh,120.0,Egypt,102757.0,Al-Hammam,28.75,29.25,EGY,1260.0,Matrouh,120.0,Egypt,102757.0,Al-Hammam,both,identical +171779,29.25,29.25,EGY,1260.0,Matrouh,120.0,Egypt,102757.0,Al-Hammam,29.25,29.25,EGY,1260.0,Matrouh,120.0,Egypt,102757.0,Al-Hammam,both,identical +171780,29.75,29.25,EGY,1255.0,Giza,120.0,Egypt,102720.0,Zemam Out,29.75,29.25,EGY,1255.0,Giza,120.0,Egypt,102720.0,Zemam Out,both,identical +171781,30.25,29.25,EGY,1253.0,Fayoum,120.0,Egypt,102686.0,Zemam Out,30.25,29.25,EGY,1253.0,Fayoum,120.0,Egypt,102686.0,Zemam Out,both,identical +171782,30.75,29.25,EGY,1253.0,Fayoum,120.0,Egypt,102686.0,Zemam Out,30.75,29.25,EGY,1253.0,Fayoum,120.0,Egypt,102686.0,Zemam Out,both,identical +171783,31.25,29.25,EGY,1249.0,Beni Suef,120.0,Egypt,102720.0,Zemam Out,31.25,29.25,EGY,1255.0,Giza,120.0,Egypt,102720.0,Zemam Out,both,admin_reallocation +171784,31.75,29.25,EGY,1255.0,Giza,120.0,Egypt,102720.0,Zemam Out,31.75,29.25,EGY,1255.0,Giza,120.0,Egypt,102720.0,Zemam Out,both,identical +171785,32.25,29.25,EGY,1270.0,Suez,120.0,Egypt,102870.0,Ataqa,32.25,29.25,EGY,1270.0,Suez,120.0,Egypt,102870.0,Ataqa,both,identical +171786,32.75,29.25,EGY,1269.0,South Sinai,120.0,Egypt,102864.0,Ras Sidr,32.75,29.25,EGY,1269.0,South Sinai,120.0,Egypt,102864.0,Ras Sidr,both,identical +171787,33.25,29.25,EGY,1269.0,South Sinai,120.0,Egypt,102864.0,Ras Sidr,33.25,29.25,EGY,1269.0,South Sinai,120.0,Egypt,102864.0,Ras Sidr,both,identical +171788,33.75,29.25,EGY,1269.0,South Sinai,120.0,Egypt,102860.0,Abu Radis,33.75,29.25,EGY,1269.0,South Sinai,120.0,Egypt,102860.0,Abu Radis,both,identical +171789,34.25,29.25,EGY,1269.0,South Sinai,120.0,Egypt,102863.0,Nuweiba,34.25,29.25,EGY,1269.0,South Sinai,120.0,Egypt,102863.0,Nuweiba,both,identical +171790,34.75,29.25,EGY,1269.0,South Sinai,120.0,Egypt,102863.0,Nuweiba,34.75,29.25,EGY,1269.0,South Sinai,120.0,Egypt,102863.0,Nuweiba,both,identical +171791,35.25,29.25,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130581.0,Haqil,35.25,29.25,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130581.0,Haqil,both,identical +171792,35.75,29.25,JOR,2760.0,Ma'An,247.0,Jordan,128984.0,Ma'An,35.75,29.25,JOR,2760.0,Ma'An,247.0,Jordan,128984.0,Ma'An,both,identical +171793,36.25,29.25,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130582.0,Tabuk,36.25,29.25,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130582.0,Tabuk,both,identical +171794,36.75,29.25,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130582.0,Tabuk,36.75,29.25,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130582.0,Tabuk,both,identical +171795,37.25,29.25,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130582.0,Tabuk,37.25,29.25,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130582.0,Tabuk,both,identical +171796,37.75,29.25,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130582.0,Tabuk,37.75,29.25,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130582.0,Tabuk,both,identical +171797,38.25,29.25,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130582.0,Tabuk,38.25,29.25,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130582.0,Tabuk,both,identical +171798,38.75,29.25,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130452.0,Tubarjal,38.75,29.25,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130452.0,Tubarjal,both,identical +171799,39.25,29.25,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130450.0,Dawamat Al Jandal,39.25,29.25,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130450.0,Dawamat Al Jandal,both,identical +171800,39.75,29.25,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130450.0,Dawamat Al Jandal,39.75,29.25,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130450.0,Dawamat Al Jandal,both,identical +171801,40.25,29.25,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130450.0,Dawamat Al Jandal,40.25,29.25,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130450.0,Dawamat Al Jandal,both,identical +171802,40.75,29.25,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130450.0,Dawamat Al Jandal,40.75,29.25,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130450.0,Dawamat Al Jandal,both,identical +171803,41.25,29.25,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130451.0,Sakaka,41.25,29.25,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130451.0,Sakaka,both,identical +171804,41.75,29.25,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130574.0,Al Uwayqilah,41.75,29.25,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130574.0,Al Uwayqilah,both,identical +171805,42.25,29.25,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130576.0,Rafha,42.25,29.25,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130576.0,Rafha,both,identical +171806,42.75,29.25,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130576.0,Rafha,42.75,29.25,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130576.0,Rafha,both,identical +171807,43.25,29.25,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130576.0,Rafha,43.25,29.25,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130576.0,Rafha,both,identical +171808,43.75,29.25,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130576.0,Rafha,43.75,29.25,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130576.0,Rafha,both,identical +171809,44.25,29.25,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130576.0,Rafha,44.25,29.25,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130576.0,Rafha,both,identical +171810,44.75,29.25,IRQ,2683.0,Al-Muthanna,243.0,Iraq,126957.0,Al-Salman,44.75,29.25,IRQ,2683.0,Al-Muthanna,243.0,Iraq,126957.0,Al-Salman,both,identical +171811,45.25,29.25,IRQ,2683.0,Al-Muthanna,243.0,Iraq,126957.0,Al-Salman,45.25,29.25,IRQ,2683.0,Al-Muthanna,243.0,Iraq,126957.0,Al-Salman,both,identical +171812,45.75,29.25,IRQ,2683.0,Al-Muthanna,243.0,Iraq,126957.0,Al-Salman,45.75,29.25,IRQ,2683.0,Al-Muthanna,243.0,Iraq,126957.0,Al-Salman,both,identical +171813,46.25,29.25,IRQ,2683.0,Al-Muthanna,243.0,Iraq,126957.0,Al-Salman,46.25,29.25,IRQ,2683.0,Al-Muthanna,243.0,Iraq,126957.0,Al-Salman,both,identical +171814,46.75,29.25,KWT,2789.0,Al Jahrah,250.0,Kuwait,129220.0,Administrative Unit Not Available,46.75,29.25,KWT,2789.0,Al Jahrah,250.0,Kuwait,129220.0,Administrative Unit Not Available,both,identical +171815,47.25,29.25,KWT,2789.0,Al Jahrah,250.0,Kuwait,129220.0,Administrative Unit Not Available,47.25,29.25,KWT,2789.0,Al Jahrah,250.0,Kuwait,129220.0,Administrative Unit Not Available,both,identical +171816,47.75,29.25,KWT,2789.0,Al Jahrah,250.0,Kuwait,129220.0,Administrative Unit Not Available,47.75,29.25,KWT,2789.0,Al Jahrah,250.0,Kuwait,129220.0,Administrative Unit Not Available,both,identical +171817,48.25,29.25,KWT,2787.0,Al Ahmadi,250.0,Kuwait,129218.0,Administrative Unit Not Available,48.25,29.25,KWT,2787.0,Al Ahmadi,250.0,Kuwait,129218.0,Administrative Unit Not Available,both,identical +171822,50.75,29.25,IRN,2651.0,Bushehr,242.0,Iran (Islamic Republic Of),126529.0,Bushehr,50.75,29.25,IRN,2651.0,Bushehr,242.0,Iran (Islamic Republic Of),126529.0,Bushehr,both,identical +171823,51.25,29.25,IRN,2651.0,Bushehr,242.0,Iran (Islamic Republic Of),126530.0,Dashtestan,51.25,29.25,IRN,2651.0,Bushehr,242.0,Iran (Islamic Republic Of),126530.0,Dashtestan,both,identical +171824,51.75,29.25,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126579.0,Kazerun,51.75,29.25,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126579.0,Kazerun,both,identical +171825,52.25,29.25,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126594.0,Shiraz,52.25,29.25,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126594.0,Shiraz,both,identical +171826,52.75,29.25,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126578.0,Kavar,52.75,29.25,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126578.0,Kavar,both,identical +171827,53.25,29.25,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126592.0,Sarvestan,53.25,29.25,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126592.0,Sarvestan,both,identical +171828,53.75,29.25,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126572.0,Estahban,53.75,29.25,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126572.0,Estahban,both,identical +171829,54.25,29.25,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126588.0,Neyriz,54.25,29.25,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126588.0,Neyriz,both,identical +171830,54.75,29.25,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126588.0,Neyriz,54.75,29.25,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126588.0,Neyriz,both,identical +171831,55.25,29.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126703.0,Sirjan,55.25,29.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126703.0,Sirjan,both,identical +171832,55.75,29.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126703.0,Sirjan,55.75,29.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126703.0,Sirjan,both,identical +171833,56.25,29.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126685.0,Baft,56.25,29.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126685.0,Baft,both,identical +171834,56.75,29.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126685.0,Baft,56.75,29.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126685.0,Baft,both,identical +171835,57.25,29.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126691.0,Jiroft,57.25,29.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126691.0,Jiroft,both,identical +171836,57.75,29.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126686.0,Bam,57.75,29.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126686.0,Bam,both,identical +171837,58.25,29.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126686.0,Bam,58.25,29.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126686.0,Bam,both,identical +171838,58.75,29.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126696.0,Normashir,58.75,29.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126696.0,Normashir,both,identical +171839,59.25,29.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126688.0,Fahraj,59.25,29.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126688.0,Fahraj,both,identical +171840,59.75,29.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126877.0,Zahedan,59.75,29.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126877.0,Zahedan,both,identical +171841,60.25,29.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126877.0,Zahedan,60.25,29.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126877.0,Zahedan,both,identical +171842,60.75,29.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126877.0,Zahedan,60.75,29.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126877.0,Zahedan,both,identical +171843,61.25,29.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126870.0,Mirjaveh,61.25,29.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126870.0,Mirjaveh,both,identical +171844,61.75,29.25,PAK,2905.0,Balochistan,260.0,Pakistan,130098.0,Chagai,61.75,29.25,PAK,2905.0,Balochistan,260.0,Pakistan,130098.0,Chagai,both,identical +172420,-10.25,29.75,MAR,1478.0,Guelmim-Oued Noun,147.0,Morocco,104266.0,Sidi Ifni,-10.25,29.75,MAR,1478.0,Guelmim-Oued Noun,147.0,Morocco,104266.0,Sidi Ifni,both,identical +172421,-9.75,29.75,MAR,1482.0,Souss-Massa,147.0,Morocco,104296.0,Tiznit,-9.75,29.75,MAR,1482.0,Souss-Massa,147.0,Morocco,104296.0,Tiznit,both,identical +172422,-9.25,29.75,MAR,1482.0,Souss-Massa,147.0,Morocco,104296.0,Tiznit,-9.25,29.75,MAR,1482.0,Souss-Massa,147.0,Morocco,104296.0,Tiznit,both,identical +172423,-8.75,29.75,MAR,1482.0,Souss-Massa,147.0,Morocco,104295.0,Tata,-8.75,29.75,MAR,1482.0,Souss-Massa,147.0,Morocco,104295.0,Tata,both,identical +172424,-8.25,29.75,MAR,1482.0,Souss-Massa,147.0,Morocco,104295.0,Tata,-8.25,29.75,MAR,1482.0,Souss-Massa,147.0,Morocco,104295.0,Tata,both,identical +172425,-7.75,29.75,MAR,1482.0,Souss-Massa,147.0,Morocco,104295.0,Tata,-7.75,29.75,MAR,1482.0,Souss-Massa,147.0,Morocco,104295.0,Tata,both,identical +172426,-7.25,29.75,MAR,1482.0,Souss-Massa,147.0,Morocco,104295.0,Tata,-7.25,29.75,MAR,1482.0,Souss-Massa,147.0,Morocco,104295.0,Tata,both,identical +172427,-6.75,29.75,MAR,1482.0,Souss-Massa,147.0,Morocco,104295.0,Tata,-6.75,29.75,MAR,1482.0,Souss-Massa,147.0,Morocco,104295.0,Tata,both,identical +172428,-6.25,29.75,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104245.0,Zagora,-6.25,29.75,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104245.0,Zagora,both,identical +172429,-5.75,29.75,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104245.0,Zagora,-5.75,29.75,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104245.0,Zagora,both,identical +172430,-5.25,29.75,DZA,1007.0,Bechar,101.0,Algeria,100240.0,Tabelbala,-5.25,29.75,DZA,1007.0,Bechar,101.0,Algeria,100240.0,Tabelbala,both,identical +172431,-4.75,29.75,DZA,1007.0,Bechar,101.0,Algeria,100240.0,Tabelbala,-4.75,29.75,DZA,1007.0,Bechar,101.0,Algeria,100240.0,Tabelbala,both,identical +172432,-4.25,29.75,DZA,1007.0,Bechar,101.0,Algeria,100240.0,Tabelbala,-4.25,29.75,DZA,1007.0,Bechar,101.0,Algeria,100240.0,Tabelbala,both,identical +172433,-3.75,29.75,DZA,1007.0,Bechar,101.0,Algeria,100240.0,Tabelbala,-3.75,29.75,DZA,1007.0,Bechar,101.0,Algeria,100240.0,Tabelbala,both,identical +172434,-3.25,29.75,DZA,1007.0,Bechar,101.0,Algeria,100240.0,Tabelbala,-3.25,29.75,DZA,1007.0,Bechar,101.0,Algeria,100240.0,Tabelbala,both,identical +172435,-2.75,29.75,DZA,1007.0,Bechar,101.0,Algeria,100225.0,Beni Abbes,-2.75,29.75,DZA,1007.0,Bechar,101.0,Algeria,100225.0,Beni Abbes,both,identical +172436,-2.25,29.75,DZA,1007.0,Bechar,101.0,Algeria,100225.0,Beni Abbes,-2.25,29.75,DZA,1007.0,Bechar,101.0,Algeria,100225.0,Beni Abbes,both,identical +172437,-1.75,29.75,DZA,1007.0,Bechar,101.0,Algeria,100229.0,El Ouata,-1.75,29.75,DZA,1007.0,Bechar,101.0,Algeria,100229.0,El Ouata,both,identical +172438,-1.25,29.75,DZA,1007.0,Bechar,101.0,Algeria,100233.0,Kerzaz,-1.25,29.75,DZA,1007.0,Bechar,101.0,Algeria,100233.0,Kerzaz,both,identical +172439,-0.75,29.75,DZA,1007.0,Bechar,101.0,Algeria,100233.0,Kerzaz,-0.75,29.75,DZA,1007.0,Bechar,101.0,Algeria,100233.0,Kerzaz,both,identical +172440,-0.25,29.75,DZA,1001.0,Adrar,101.0,Algeria,100014.0,Ouled Aissa,-0.25,29.75,DZA,1001.0,Adrar,101.0,Algeria,100014.0,Ouled Aissa,both,identical +172441,0.25,29.75,DZA,1001.0,Adrar,101.0,Algeria,100011.0,Ksar Kaddour,0.25,29.75,DZA,1001.0,Adrar,101.0,Algeria,100011.0,Ksar Kaddour,both,identical +172442,0.75,29.75,DZA,1001.0,Adrar,101.0,Algeria,100025.0,Tinerkouk,0.75,29.75,DZA,1001.0,Adrar,101.0,Algeria,100025.0,Tinerkouk,both,identical +172443,1.25,29.75,DZA,1001.0,Adrar,101.0,Algeria,100023.0,Timimoun,1.25,29.75,DZA,1001.0,Adrar,101.0,Algeria,100023.0,Timimoun,both,identical +172444,1.75,29.75,DZA,1001.0,Adrar,101.0,Algeria,100023.0,Timimoun,1.75,29.75,DZA,1001.0,Adrar,101.0,Algeria,100023.0,Timimoun,both,identical +172445,2.25,29.75,DZA,1020.0,Ghardaia,101.0,Algeria,100632.0,Hassi El Garaa,2.25,29.75,DZA,1020.0,Ghardaia,101.0,Algeria,100632.0,Hassi El Garaa,both,identical +172446,2.75,29.75,DZA,1020.0,Ghardaia,101.0,Algeria,100632.0,Hassi El Garaa,2.75,29.75,DZA,1020.0,Ghardaia,101.0,Algeria,100632.0,Hassi El Garaa,both,identical +172447,3.25,29.75,DZA,1020.0,Ghardaia,101.0,Algeria,100632.0,Hassi El Garaa,3.25,29.75,DZA,1020.0,Ghardaia,101.0,Algeria,100632.0,Hassi El Garaa,both,identical +172448,3.75,29.75,DZA,1033.0,Ouargla,101.0,Algeria,101017.0,Hassi Messaoud,3.75,29.75,DZA,1033.0,Ouargla,101.0,Algeria,101017.0,Hassi Messaoud,both,identical +172449,4.25,29.75,DZA,1033.0,Ouargla,101.0,Algeria,101017.0,Hassi Messaoud,4.25,29.75,DZA,1033.0,Ouargla,101.0,Algeria,101017.0,Hassi Messaoud,both,identical +172450,4.75,29.75,DZA,1033.0,Ouargla,101.0,Algeria,101017.0,Hassi Messaoud,4.75,29.75,DZA,1033.0,Ouargla,101.0,Algeria,101017.0,Hassi Messaoud,both,identical +172451,5.25,29.75,DZA,1033.0,Ouargla,101.0,Algeria,101017.0,Hassi Messaoud,5.25,29.75,DZA,1033.0,Ouargla,101.0,Algeria,101017.0,Hassi Messaoud,both,identical +172452,5.75,29.75,DZA,1033.0,Ouargla,101.0,Algeria,101017.0,Hassi Messaoud,5.75,29.75,DZA,1033.0,Ouargla,101.0,Algeria,101017.0,Hassi Messaoud,both,identical +172453,6.25,29.75,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,6.25,29.75,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,both,identical +172454,6.75,29.75,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,6.75,29.75,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,both,identical +172455,7.25,29.75,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,7.25,29.75,DZA,1022.0,Illizi,101.0,Algeria,100672.0,Bordj Omar Driss,both,identical +172456,7.75,29.75,DZA,1022.0,Illizi,101.0,Algeria,100673.0,Debdeb,7.75,29.75,DZA,1022.0,Illizi,101.0,Algeria,100673.0,Debdeb,both,identical +172457,8.25,29.75,DZA,1022.0,Illizi,101.0,Algeria,100673.0,Debdeb,8.25,29.75,DZA,1022.0,Illizi,101.0,Algeria,100673.0,Debdeb,both,identical +172458,8.75,29.75,DZA,1022.0,Illizi,101.0,Algeria,100673.0,Debdeb,8.75,29.75,DZA,1022.0,Illizi,101.0,Algeria,100673.0,Debdeb,both,identical +172459,9.25,29.75,DZA,1022.0,Illizi,101.0,Algeria,100673.0,Debdeb,9.25,29.75,DZA,1022.0,Illizi,101.0,Algeria,100673.0,Debdeb,both,identical +172460,9.75,29.75,LBY,1427.0,West,140.0,Libya,104050.0,Nalut,9.75,29.75,LBY,1427.0,West,140.0,Libya,104050.0,Nalut,both,identical +172461,10.25,29.75,LBY,1427.0,West,140.0,Libya,104050.0,Nalut,10.25,29.75,LBY,1427.0,West,140.0,Libya,104050.0,Nalut,both,identical +172462,10.75,29.75,LBY,1427.0,West,140.0,Libya,104050.0,Nalut,10.75,29.75,LBY,1427.0,West,140.0,Libya,104050.0,Nalut,both,identical +172463,11.25,29.75,LBY,1427.0,West,140.0,Libya,104050.0,Nalut,11.25,29.75,LBY,1427.0,West,140.0,Libya,104050.0,Nalut,both,identical +172464,11.75,29.75,LBY,1427.0,West,140.0,Libya,104050.0,Nalut,11.75,29.75,LBY,1427.0,West,140.0,Libya,104050.0,Nalut,both,identical +172465,12.25,29.75,LBY,1427.0,West,140.0,Libya,104045.0,Al Jabal Al Gharbi,12.25,29.75,LBY,1427.0,West,140.0,Libya,104045.0,Al Jabal Al Gharbi,both,identical +172466,12.75,29.75,LBY,1427.0,West,140.0,Libya,104045.0,Al Jabal Al Gharbi,12.75,29.75,LBY,1427.0,West,140.0,Libya,104045.0,Al Jabal Al Gharbi,both,identical +172467,13.25,29.75,LBY,1427.0,West,140.0,Libya,104045.0,Al Jabal Al Gharbi,13.25,29.75,LBY,1427.0,West,140.0,Libya,104045.0,Al Jabal Al Gharbi,both,identical +172468,13.75,29.75,LBY,1427.0,West,140.0,Libya,104045.0,Al Jabal Al Gharbi,13.75,29.75,LBY,1427.0,West,140.0,Libya,104045.0,Al Jabal Al Gharbi,both,identical +172469,14.25,29.75,LBY,1427.0,West,140.0,Libya,104045.0,Al Jabal Al Gharbi,14.25,29.75,LBY,1427.0,West,140.0,Libya,104045.0,Al Jabal Al Gharbi,both,identical +172470,14.75,29.75,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,14.75,29.75,LBY,1426.0,South,140.0,Libya,104039.0,Aljufra,both,identical +172471,15.25,29.75,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,15.25,29.75,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,both,identical +172472,15.75,29.75,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,15.75,29.75,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,both,identical +172473,16.25,29.75,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,16.25,29.75,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,both,identical +172474,16.75,29.75,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,16.75,29.75,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,both,identical +172475,17.25,29.75,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,17.25,29.75,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,both,identical +172476,17.75,29.75,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,17.75,29.75,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,both,identical +172477,18.25,29.75,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,18.25,29.75,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,both,identical +172478,18.75,29.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,18.75,29.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +172479,19.25,29.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,19.25,29.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +172480,19.75,29.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,19.75,29.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +172481,20.25,29.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,20.25,29.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +172482,20.75,29.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,20.75,29.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +172483,21.25,29.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,21.25,29.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +172484,21.75,29.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,21.75,29.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +172485,22.25,29.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,22.25,29.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +172486,22.75,29.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,22.75,29.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +172487,23.25,29.75,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,23.25,29.75,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,both,identical +172488,23.75,29.75,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,23.75,29.75,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,both,identical +172489,24.25,29.75,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,24.25,29.75,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,both,identical +172490,24.75,29.75,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,24.75,29.75,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,both,identical +172491,25.25,29.75,EGY,1260.0,Matrouh,120.0,Egypt,102762.0,Salloum,25.25,29.75,EGY,1260.0,Matrouh,120.0,Egypt,102762.0,Salloum,both,identical +172492,25.75,29.75,EGY,1260.0,Matrouh,120.0,Egypt,102763.0,Sidi Barani,25.75,29.75,EGY,1260.0,Matrouh,120.0,Egypt,102763.0,Sidi Barani,both,identical +172493,26.25,29.75,EGY,1260.0,Matrouh,120.0,Egypt,102760.0,Marsa Matruh,26.25,29.75,EGY,1260.0,Matrouh,120.0,Egypt,102760.0,Marsa Matruh,both,identical +172494,26.75,29.75,EGY,1260.0,Matrouh,120.0,Egypt,102760.0,Marsa Matruh,26.75,29.75,EGY,1260.0,Matrouh,120.0,Egypt,102760.0,Marsa Matruh,both,identical +172495,27.25,29.75,EGY,1260.0,Matrouh,120.0,Egypt,102760.0,Marsa Matruh,27.25,29.75,EGY,1260.0,Matrouh,120.0,Egypt,102760.0,Marsa Matruh,both,identical +172496,27.75,29.75,EGY,1260.0,Matrouh,120.0,Egypt,102760.0,Marsa Matruh,27.75,29.75,EGY,1260.0,Matrouh,120.0,Egypt,102760.0,Marsa Matruh,both,identical +172497,28.25,29.75,EGY,1260.0,Matrouh,120.0,Egypt,102759.0,Daba,28.25,29.75,EGY,1260.0,Matrouh,120.0,Egypt,102759.0,Daba,both,identical +172498,28.75,29.75,EGY,1260.0,Matrouh,120.0,Egypt,102757.0,Al-Hammam,28.75,29.75,EGY,1260.0,Matrouh,120.0,Egypt,102757.0,Al-Hammam,both,identical +172499,29.25,29.75,EGY,1260.0,Matrouh,120.0,Egypt,102757.0,Al-Hammam,29.25,29.75,EGY,1260.0,Matrouh,120.0,Egypt,102757.0,Al-Hammam,both,identical +172500,29.75,29.75,EGY,1260.0,Matrouh,120.0,Egypt,102757.0,Al-Hammam,29.75,29.75,EGY,1260.0,Matrouh,120.0,Egypt,102757.0,Al-Hammam,both,identical +172501,30.25,29.75,EGY,1255.0,Giza,120.0,Egypt,102720.0,Zemam Out,30.25,29.75,EGY,1255.0,Giza,120.0,Egypt,102720.0,Zemam Out,both,identical +172502,30.75,29.75,EGY,1255.0,Giza,120.0,Egypt,102720.0,Zemam Out,30.75,29.75,EGY,1255.0,Giza,120.0,Egypt,102720.0,Zemam Out,both,identical +172503,31.25,29.75,EGY,1255.0,Giza,120.0,Egypt,102720.0,Zemam Out,31.25,29.75,EGY,1255.0,Giza,120.0,Egypt,102720.0,Zemam Out,both,identical +172504,31.75,29.75,EGY,1250.0,Cairo,120.0,Egypt,102720.0,Zemam Out,31.75,29.75,EGY,1255.0,Giza,120.0,Egypt,102720.0,Zemam Out,both,admin_reallocation +172505,32.25,29.75,EGY,1270.0,Suez,120.0,Egypt,102870.0,Ataqa,32.25,29.75,EGY,1270.0,Suez,120.0,Egypt,102870.0,Ataqa,both,identical +172506,32.75,29.75,EGY,1269.0,South Sinai,120.0,Egypt,102864.0,Ras Sidr,32.75,29.75,EGY,1269.0,South Sinai,120.0,Egypt,102864.0,Ras Sidr,both,identical +172507,33.25,29.75,EGY,1269.0,South Sinai,120.0,Egypt,102864.0,Ras Sidr,33.25,29.75,EGY,1269.0,South Sinai,120.0,Egypt,102864.0,Ras Sidr,both,identical +172508,33.75,29.75,EGY,1269.0,South Sinai,120.0,Egypt,102864.0,Ras Sidr,33.75,29.75,EGY,1269.0,South Sinai,120.0,Egypt,102864.0,Ras Sidr,both,identical +172509,34.25,29.75,EGY,1264.0,North Sinai,120.0,Egypt,102800.0,Nakhl,34.25,29.75,EGY,1264.0,North Sinai,120.0,Egypt,102800.0,Nakhl,both,identical +172510,34.75,29.75,EGY,1264.0,North Sinai,120.0,Egypt,102800.0,Nakhl,34.75,29.75,EGY,1264.0,North Sinai,120.0,Egypt,102800.0,Nakhl,both,identical +172511,35.25,29.75,JOR,2755.0,Aqaba,247.0,Jordan,128952.0,Al-Qwaira,35.25,29.75,JOR,2755.0,Aqaba,247.0,Jordan,128952.0,Al-Qwaira,both,identical +172512,35.75,29.75,JOR,2760.0,Ma'An,247.0,Jordan,128984.0,Ma'An,35.75,29.75,JOR,2760.0,Ma'An,247.0,Jordan,128984.0,Ma'An,both,identical +172513,36.25,29.75,JOR,2760.0,Ma'An,247.0,Jordan,128984.0,Ma'An,36.25,29.75,JOR,2760.0,Ma'An,247.0,Jordan,128984.0,Ma'An,both,identical +172514,36.75,29.75,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130582.0,Tabuk,36.75,29.75,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130582.0,Tabuk,both,identical +172515,37.25,29.75,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130582.0,Tabuk,37.25,29.75,SAU,2965.0,Tabuk,266.0,Saudi Arabia,130582.0,Tabuk,both,identical +172516,37.75,29.75,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130452.0,Tubarjal,37.75,29.75,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130452.0,Tubarjal,both,identical +172517,38.25,29.75,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130452.0,Tubarjal,38.25,29.75,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130452.0,Tubarjal,both,identical +172518,38.75,29.75,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130452.0,Tubarjal,38.75,29.75,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130452.0,Tubarjal,both,identical +172519,39.25,29.75,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130450.0,Dawamat Al Jandal,39.25,29.75,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130450.0,Dawamat Al Jandal,both,identical +172520,39.75,29.75,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130450.0,Dawamat Al Jandal,39.75,29.75,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130450.0,Dawamat Al Jandal,both,identical +172521,40.25,29.75,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130451.0,Sakaka,40.25,29.75,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130451.0,Sakaka,both,identical +172522,40.75,29.75,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130451.0,Sakaka,40.75,29.75,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130451.0,Sakaka,both,identical +172523,41.25,29.75,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130451.0,Sakaka,41.25,29.75,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130451.0,Sakaka,both,identical +172524,41.75,29.75,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130574.0,Al Uwayqilah,41.75,29.75,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130574.0,Al Uwayqilah,both,identical +172525,42.25,29.75,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130574.0,Al Uwayqilah,42.25,29.75,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130574.0,Al Uwayqilah,both,identical +172526,42.75,29.75,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130576.0,Rafha,42.75,29.75,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130576.0,Rafha,both,identical +172527,43.25,29.75,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130576.0,Rafha,43.25,29.75,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130576.0,Rafha,both,identical +172528,43.75,29.75,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130576.0,Rafha,43.75,29.75,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130576.0,Rafha,both,identical +172529,44.25,29.75,IRQ,2683.0,Al-Muthanna,243.0,Iraq,126957.0,Al-Salman,44.25,29.75,IRQ,2683.0,Al-Muthanna,243.0,Iraq,126957.0,Al-Salman,both,identical +172530,44.75,29.75,IRQ,2683.0,Al-Muthanna,243.0,Iraq,126957.0,Al-Salman,44.75,29.75,IRQ,2683.0,Al-Muthanna,243.0,Iraq,126957.0,Al-Salman,both,identical +172531,45.25,29.75,IRQ,2683.0,Al-Muthanna,243.0,Iraq,126957.0,Al-Salman,45.25,29.75,IRQ,2683.0,Al-Muthanna,243.0,Iraq,126957.0,Al-Salman,both,identical +172532,45.75,29.75,IRQ,2683.0,Al-Muthanna,243.0,Iraq,126957.0,Al-Salman,45.75,29.75,IRQ,2683.0,Al-Muthanna,243.0,Iraq,126957.0,Al-Salman,both,identical +172533,46.25,29.75,IRQ,2683.0,Al-Muthanna,243.0,Iraq,126957.0,Al-Salman,46.25,29.75,IRQ,2683.0,Al-Muthanna,243.0,Iraq,126957.0,Al-Salman,both,identical +172534,46.75,29.75,IRQ,2682.0,Al-Basrah,243.0,Iraq,126953.0,Al-Zubair,46.75,29.75,IRQ,2682.0,Al-Basrah,243.0,Iraq,126953.0,Al-Zubair,both,identical +172535,47.25,29.75,KWT,2789.0,Al Jahrah,250.0,Kuwait,129220.0,Administrative Unit Not Available,47.25,29.75,KWT,2789.0,Al Jahrah,250.0,Kuwait,129220.0,Administrative Unit Not Available,both,identical +172536,47.75,29.75,KWT,2789.0,Al Jahrah,250.0,Kuwait,129220.0,Administrative Unit Not Available,47.75,29.75,KWT,2789.0,Al Jahrah,250.0,Kuwait,129220.0,Administrative Unit Not Available,both,identical +172537,48.25,29.75,KWT,2789.0,Al Jahrah,250.0,Kuwait,129220.0,Administrative Unit Not Available,48.25,29.75,KWT,2789.0,Al Jahrah,250.0,Kuwait,129220.0,Administrative Unit Not Available,both,identical +172538,48.75,29.75,IRN,2663.0,Khuzestan,242.0,Iran (Islamic Republic Of),126719.0,Abadan,48.75,29.75,IRQ,2682.0,Al-Basrah,243.0,Iraq,126950.0,Al-Faw,both,country_reassignment +172541,50.25,29.75,IRN,2651.0,Bushehr,242.0,Iran (Islamic Republic Of),126533.0,Deylam,50.25,29.75,IRN,2651.0,Bushehr,242.0,Iran (Islamic Republic Of),126533.0,Deylam,both,identical +172542,50.75,29.75,IRN,2651.0,Bushehr,242.0,Iran (Islamic Republic Of),126534.0,Ganaveh,50.75,29.75,IRN,2651.0,Bushehr,242.0,Iran (Islamic Republic Of),126534.0,Ganaveh,both,identical +172543,51.25,29.75,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126585.0,Mamasani,51.25,29.75,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126585.0,Mamasani,both,identical +172544,51.75,29.75,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126579.0,Kazerun,51.75,29.75,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126579.0,Kazerun,both,identical +172545,52.25,29.75,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126594.0,Shiraz,52.25,29.75,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126594.0,Shiraz,both,identical +172546,52.75,29.75,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126594.0,Shiraz,52.75,29.75,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126594.0,Shiraz,both,identical +172547,53.25,29.75,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126568.0,Arsanjan,53.25,29.75,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126568.0,Arsanjan,both,identical +172548,53.75,29.75,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126588.0,Neyriz,53.75,29.75,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126588.0,Neyriz,both,identical +172549,54.25,29.75,IRN,2679.0,Yazd,242.0,Iran (Islamic Republic Of),126928.0,Khatam,54.25,29.75,IRN,2679.0,Yazd,242.0,Iran (Islamic Republic Of),126928.0,Khatam,both,identical +172550,54.75,29.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126702.0,Shahr-E-Babak,54.75,29.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126702.0,Shahr-E-Babak,both,identical +172551,55.25,29.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126702.0,Shahr-E-Babak,55.25,29.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126702.0,Shahr-E-Babak,both,identical +172552,55.75,29.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126703.0,Sirjan,55.75,29.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126703.0,Sirjan,both,identical +172553,56.25,29.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126703.0,Sirjan,56.25,29.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126703.0,Sirjan,both,identical +172554,56.75,29.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126687.0,Bardsir,56.75,29.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126687.0,Bardsir,both,identical +172555,57.25,29.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126693.0,Kerman,57.25,29.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126693.0,Kerman,both,identical +172556,57.75,29.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126693.0,Kerman,57.75,29.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126693.0,Kerman,both,identical +172557,58.25,29.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126693.0,Kerman,58.25,29.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126693.0,Kerman,both,identical +172558,58.75,29.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126693.0,Kerman,58.75,29.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126693.0,Kerman,both,identical +172559,59.25,29.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126693.0,Kerman,59.25,29.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126693.0,Kerman,both,identical +172560,59.75,29.75,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126877.0,Zahedan,59.75,29.75,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126877.0,Zahedan,both,identical +172561,60.25,29.75,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126877.0,Zahedan,60.25,29.75,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126877.0,Zahedan,both,identical +172562,60.75,29.75,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126877.0,Zahedan,60.75,29.75,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126877.0,Zahedan,both,identical +172563,61.25,29.75,AFG,2421.0,Nimroz,223.0,Afghanistan,123986.0,Char Burjak,61.25,29.75,AFG,2421.0,Nimroz,223.0,Afghanistan,123986.0,Char Burjak,both,identical +173141,-9.75,30.25,MAR,1482.0,Souss-Massa,147.0,Morocco,104292.0,Chtouka- Ait Baha,-9.75,30.25,MAR,1482.0,Souss-Massa,147.0,Morocco,104292.0,Chtouka- Ait Baha,both,identical +173142,-9.25,30.25,MAR,1482.0,Souss-Massa,147.0,Morocco,104292.0,Chtouka- Ait Baha,-9.25,30.25,MAR,1482.0,Souss-Massa,147.0,Morocco,104292.0,Chtouka- Ait Baha,both,identical +173143,-8.75,30.25,MAR,1482.0,Souss-Massa,147.0,Morocco,104294.0,Taroudannt,-8.75,30.25,MAR,1482.0,Souss-Massa,147.0,Morocco,104294.0,Taroudannt,both,identical +173144,-8.25,30.25,MAR,1482.0,Souss-Massa,147.0,Morocco,104294.0,Taroudannt,-8.25,30.25,MAR,1482.0,Souss-Massa,147.0,Morocco,104294.0,Taroudannt,both,identical +173145,-7.75,30.25,MAR,1482.0,Souss-Massa,147.0,Morocco,104294.0,Taroudannt,-7.75,30.25,MAR,1482.0,Souss-Massa,147.0,Morocco,104294.0,Taroudannt,both,identical +173146,-7.25,30.25,MAR,1482.0,Souss-Massa,147.0,Morocco,104295.0,Tata,-7.25,30.25,MAR,1482.0,Souss-Massa,147.0,Morocco,104295.0,Tata,both,identical +173147,-6.75,30.25,MAR,1482.0,Souss-Massa,147.0,Morocco,104295.0,Tata,-6.75,30.25,MAR,1482.0,Souss-Massa,147.0,Morocco,104295.0,Tata,both,identical +173148,-6.25,30.25,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104245.0,Zagora,-6.25,30.25,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104245.0,Zagora,both,identical +173149,-5.75,30.25,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104245.0,Zagora,-5.75,30.25,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104245.0,Zagora,both,identical +173150,-5.25,30.25,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104245.0,Zagora,-5.25,30.25,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104245.0,Zagora,both,identical +173151,-4.75,30.25,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104241.0,Errachidia,-4.75,30.25,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104241.0,Errachidia,both,identical +173152,-4.25,30.25,DZA,1007.0,Bechar,101.0,Algeria,100240.0,Tabelbala,-4.25,30.25,DZA,1007.0,Bechar,101.0,Algeria,100240.0,Tabelbala,both,identical +173153,-3.75,30.25,DZA,1007.0,Bechar,101.0,Algeria,100240.0,Tabelbala,-3.75,30.25,DZA,1007.0,Bechar,101.0,Algeria,100240.0,Tabelbala,both,identical +173154,-3.25,30.25,DZA,1007.0,Bechar,101.0,Algeria,100231.0,Igli,-3.25,30.25,DZA,1007.0,Bechar,101.0,Algeria,100231.0,Igli,both,identical +173155,-2.75,30.25,DZA,1007.0,Bechar,101.0,Algeria,100231.0,Igli,-2.75,30.25,DZA,1007.0,Bechar,101.0,Algeria,100231.0,Igli,both,identical +173156,-2.25,30.25,DZA,1007.0,Bechar,101.0,Algeria,100225.0,Beni Abbes,-2.25,30.25,DZA,1007.0,Bechar,101.0,Algeria,100225.0,Beni Abbes,both,identical +173157,-1.75,30.25,DZA,1007.0,Bechar,101.0,Algeria,100242.0,Tamert,-1.75,30.25,DZA,1007.0,Bechar,101.0,Algeria,100242.0,Tamert,both,identical +173158,-1.25,30.25,DZA,1007.0,Bechar,101.0,Algeria,100229.0,El Ouata,-1.25,30.25,DZA,1007.0,Bechar,101.0,Algeria,100229.0,El Ouata,both,identical +173159,-0.75,30.25,DZA,1007.0,Bechar,101.0,Algeria,100233.0,Kerzaz,-0.75,30.25,DZA,1007.0,Bechar,101.0,Algeria,100233.0,Kerzaz,both,identical +173160,-0.25,30.25,DZA,1007.0,Bechar,101.0,Algeria,100233.0,Kerzaz,-0.25,30.25,DZA,1007.0,Bechar,101.0,Algeria,100233.0,Kerzaz,both,identical +173161,0.25,30.25,DZA,1001.0,Adrar,101.0,Algeria,100011.0,Ksar Kaddour,0.25,30.25,DZA,1001.0,Adrar,101.0,Algeria,100011.0,Ksar Kaddour,both,identical +173162,0.75,30.25,DZA,1001.0,Adrar,101.0,Algeria,100025.0,Tinerkouk,0.75,30.25,DZA,1001.0,Adrar,101.0,Algeria,100025.0,Tinerkouk,both,identical +173163,1.25,30.25,DZA,1001.0,Adrar,101.0,Algeria,100025.0,Tinerkouk,1.25,30.25,DZA,1001.0,Adrar,101.0,Algeria,100025.0,Tinerkouk,both,identical +173164,1.75,30.25,DZA,1001.0,Adrar,101.0,Algeria,100023.0,Timimoun,1.75,30.25,DZA,1001.0,Adrar,101.0,Algeria,100023.0,Timimoun,both,identical +173165,2.25,30.25,DZA,1020.0,Ghardaia,101.0,Algeria,100632.0,Hassi El Garaa,2.25,30.25,DZA,1020.0,Ghardaia,101.0,Algeria,100632.0,Hassi El Garaa,both,identical +173166,2.75,30.25,DZA,1020.0,Ghardaia,101.0,Algeria,100632.0,Hassi El Garaa,2.75,30.25,DZA,1020.0,Ghardaia,101.0,Algeria,100632.0,Hassi El Garaa,both,identical +173167,3.25,30.25,DZA,1020.0,Ghardaia,101.0,Algeria,100632.0,Hassi El Garaa,3.25,30.25,DZA,1020.0,Ghardaia,101.0,Algeria,100632.0,Hassi El Garaa,both,identical +173168,3.75,30.25,DZA,1020.0,Ghardaia,101.0,Algeria,100632.0,Hassi El Garaa,3.75,30.25,DZA,1020.0,Ghardaia,101.0,Algeria,100632.0,Hassi El Garaa,both,identical +173169,4.25,30.25,DZA,1033.0,Ouargla,101.0,Algeria,101017.0,Hassi Messaoud,4.25,30.25,DZA,1033.0,Ouargla,101.0,Algeria,101017.0,Hassi Messaoud,both,identical +173170,4.75,30.25,DZA,1033.0,Ouargla,101.0,Algeria,101017.0,Hassi Messaoud,4.75,30.25,DZA,1033.0,Ouargla,101.0,Algeria,101017.0,Hassi Messaoud,both,identical +173171,5.25,30.25,DZA,1033.0,Ouargla,101.0,Algeria,101017.0,Hassi Messaoud,5.25,30.25,DZA,1033.0,Ouargla,101.0,Algeria,101017.0,Hassi Messaoud,both,identical +173172,5.75,30.25,DZA,1033.0,Ouargla,101.0,Algeria,101017.0,Hassi Messaoud,5.75,30.25,DZA,1033.0,Ouargla,101.0,Algeria,101017.0,Hassi Messaoud,both,identical +173173,6.25,30.25,DZA,1033.0,Ouargla,101.0,Algeria,101017.0,Hassi Messaoud,6.25,30.25,DZA,1033.0,Ouargla,101.0,Algeria,101017.0,Hassi Messaoud,both,identical +173174,6.75,30.25,DZA,1033.0,Ouargla,101.0,Algeria,101017.0,Hassi Messaoud,6.75,30.25,DZA,1033.0,Ouargla,101.0,Algeria,101017.0,Hassi Messaoud,both,identical +173175,7.25,30.25,DZA,1033.0,Ouargla,101.0,Algeria,101014.0,El Borma,7.25,30.25,DZA,1033.0,Ouargla,101.0,Algeria,101014.0,El Borma,both,identical +173176,7.75,30.25,DZA,1022.0,Illizi,101.0,Algeria,100673.0,Debdeb,7.75,30.25,DZA,1022.0,Illizi,101.0,Algeria,100673.0,Debdeb,both,identical +173177,8.25,30.25,DZA,1022.0,Illizi,101.0,Algeria,100673.0,Debdeb,8.25,30.25,DZA,1022.0,Illizi,101.0,Algeria,100673.0,Debdeb,both,identical +173178,8.75,30.25,DZA,1022.0,Illizi,101.0,Algeria,100673.0,Debdeb,8.75,30.25,DZA,1022.0,Illizi,101.0,Algeria,100673.0,Debdeb,both,identical +173179,9.25,30.25,DZA,1022.0,Illizi,101.0,Algeria,100673.0,Debdeb,9.25,30.25,DZA,1022.0,Illizi,101.0,Algeria,100673.0,Debdeb,both,identical +173180,9.75,30.25,LBY,1427.0,West,140.0,Libya,104050.0,Nalut,9.75,30.25,LBY,1427.0,West,140.0,Libya,104050.0,Nalut,both,identical +173181,10.25,30.25,LBY,1427.0,West,140.0,Libya,104050.0,Nalut,10.25,30.25,LBY,1427.0,West,140.0,Libya,104050.0,Nalut,both,identical +173182,10.75,30.25,LBY,1427.0,West,140.0,Libya,104050.0,Nalut,10.75,30.25,LBY,1427.0,West,140.0,Libya,104050.0,Nalut,both,identical +173183,11.25,30.25,LBY,1427.0,West,140.0,Libya,104050.0,Nalut,11.25,30.25,LBY,1427.0,West,140.0,Libya,104050.0,Nalut,both,identical +173184,11.75,30.25,LBY,1427.0,West,140.0,Libya,104050.0,Nalut,11.75,30.25,LBY,1427.0,West,140.0,Libya,104050.0,Nalut,both,identical +173185,12.25,30.25,LBY,1427.0,West,140.0,Libya,104045.0,Al Jabal Al Gharbi,12.25,30.25,LBY,1427.0,West,140.0,Libya,104045.0,Al Jabal Al Gharbi,both,identical +173186,12.75,30.25,LBY,1427.0,West,140.0,Libya,104045.0,Al Jabal Al Gharbi,12.75,30.25,LBY,1427.0,West,140.0,Libya,104045.0,Al Jabal Al Gharbi,both,identical +173187,13.25,30.25,LBY,1427.0,West,140.0,Libya,104045.0,Al Jabal Al Gharbi,13.25,30.25,LBY,1427.0,West,140.0,Libya,104045.0,Al Jabal Al Gharbi,both,identical +173188,13.75,30.25,LBY,1427.0,West,140.0,Libya,104045.0,Al Jabal Al Gharbi,13.75,30.25,LBY,1427.0,West,140.0,Libya,104045.0,Al Jabal Al Gharbi,both,identical +173189,14.25,30.25,LBY,1427.0,West,140.0,Libya,104045.0,Al Jabal Al Gharbi,14.25,30.25,LBY,1427.0,West,140.0,Libya,104045.0,Al Jabal Al Gharbi,both,identical +173190,14.75,30.25,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,14.75,30.25,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,both,identical +173191,15.25,30.25,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,15.25,30.25,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,both,identical +173192,15.75,30.25,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,15.75,30.25,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,both,identical +173193,16.25,30.25,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,16.25,30.25,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,both,identical +173194,16.75,30.25,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,16.75,30.25,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,both,identical +173195,17.25,30.25,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,17.25,30.25,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,both,identical +173196,17.75,30.25,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,17.75,30.25,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,both,identical +173197,18.25,30.25,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,18.25,30.25,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,both,identical +173198,18.75,30.25,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,18.75,30.25,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,both,identical +173199,19.25,30.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,19.25,30.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +173200,19.75,30.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,19.75,30.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +173201,20.25,30.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,20.25,30.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +173202,20.75,30.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,20.75,30.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +173203,21.25,30.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,21.25,30.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +173204,21.75,30.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,21.75,30.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +173205,22.25,30.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,22.25,30.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +173206,22.75,30.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,22.75,30.25,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +173207,23.25,30.25,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,23.25,30.25,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,both,identical +173208,23.75,30.25,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,23.75,30.25,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,both,identical +173209,24.25,30.25,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,24.25,30.25,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,both,identical +173210,24.75,30.25,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,24.75,30.25,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,both,identical +173211,25.25,30.25,EGY,1260.0,Matrouh,120.0,Egypt,102762.0,Salloum,25.25,30.25,EGY,1260.0,Matrouh,120.0,Egypt,102762.0,Salloum,both,identical +173212,25.75,30.25,EGY,1260.0,Matrouh,120.0,Egypt,102763.0,Sidi Barani,25.75,30.25,EGY,1260.0,Matrouh,120.0,Egypt,102763.0,Sidi Barani,both,identical +173213,26.25,30.25,EGY,1260.0,Matrouh,120.0,Egypt,102760.0,Marsa Matruh,26.25,30.25,EGY,1260.0,Matrouh,120.0,Egypt,102760.0,Marsa Matruh,both,identical +173214,26.75,30.25,EGY,1260.0,Matrouh,120.0,Egypt,102760.0,Marsa Matruh,26.75,30.25,EGY,1260.0,Matrouh,120.0,Egypt,102760.0,Marsa Matruh,both,identical +173215,27.25,30.25,EGY,1260.0,Matrouh,120.0,Egypt,102760.0,Marsa Matruh,27.25,30.25,EGY,1260.0,Matrouh,120.0,Egypt,102760.0,Marsa Matruh,both,identical +173216,27.75,30.25,EGY,1260.0,Matrouh,120.0,Egypt,102760.0,Marsa Matruh,27.75,30.25,EGY,1260.0,Matrouh,120.0,Egypt,102760.0,Marsa Matruh,both,identical +173217,28.25,30.25,EGY,1260.0,Matrouh,120.0,Egypt,102759.0,Daba,28.25,30.25,EGY,1260.0,Matrouh,120.0,Egypt,102759.0,Daba,both,identical +173218,28.75,30.25,EGY,1260.0,Matrouh,120.0,Egypt,102757.0,Al-Hammam,28.75,30.25,EGY,1260.0,Matrouh,120.0,Egypt,102757.0,Al-Hammam,both,identical +173219,29.25,30.25,EGY,1260.0,Matrouh,120.0,Egypt,102757.0,Al-Hammam,29.25,30.25,EGY,1260.0,Matrouh,120.0,Egypt,102757.0,Al-Hammam,both,identical +173220,29.75,30.25,EGY,1260.0,Matrouh,120.0,Egypt,102757.0,Al-Hammam,29.75,30.25,EGY,1260.0,Matrouh,120.0,Egypt,102757.0,Al-Hammam,both,identical +173221,30.25,30.25,EGY,1248.0,Behera,120.0,Egypt,102595.0,Zemam Out,30.25,30.25,EGY,1248.0,Behera,120.0,Egypt,102595.0,Zemam Out,both,identical +173222,30.75,30.25,EGY,1255.0,Giza,120.0,Egypt,102720.0,Zemam Out,30.75,30.25,EGY,1255.0,Giza,120.0,Egypt,102720.0,Zemam Out,both,identical +173223,31.25,30.25,EGY,1258.0,Kalyoubia,120.0,Egypt,102751.0,Tukh,31.25,30.25,EGY,1258.0,Kalyoubia,120.0,Egypt,102751.0,Tukh,both,identical +173224,31.75,30.25,EGY,1268.0,Sharkia,120.0,Egypt,102859.0,Zemam Out,31.75,30.25,EGY,1268.0,Sharkia,120.0,Egypt,102859.0,Zemam Out,both,identical +173225,32.25,30.25,EGY,1270.0,Suez,120.0,Egypt,102871.0,Faysal,32.25,30.25,EGY,1270.0,Suez,120.0,Egypt,102871.0,Faysal,both,identical +173226,32.75,30.25,EGY,1244.0,"Al-, Ismailia",120.0,Egypt,102531.0,"Qantara Sharq, Al-",32.75,30.25,EGY,1244.0,"Al-, Ismailia",120.0,Egypt,102531.0,"Qantara Sharq, Al-",both,identical +173227,33.25,30.25,EGY,1264.0,North Sinai,120.0,Egypt,102794.0,Al-Hasna,33.25,30.25,EGY,1264.0,North Sinai,120.0,Egypt,102794.0,Al-Hasna,both,identical +173228,33.75,30.25,EGY,1264.0,North Sinai,120.0,Egypt,102794.0,Al-Hasna,33.75,30.25,EGY,1264.0,North Sinai,120.0,Egypt,102794.0,Al-Hasna,both,identical +173229,34.25,30.25,EGY,1264.0,North Sinai,120.0,Egypt,102801.0,Qasima,34.25,30.25,EGY,1264.0,North Sinai,120.0,Egypt,102801.0,Qasima,both,identical +173230,34.75,30.25,ISR,2703.0,Southern District,244.0,Israel,127046.0,Administrative Unit Not Available,34.75,30.25,ISR,2703.0,Southern District,244.0,Israel,127046.0,Administrative Unit Not Available,both,identical +173231,35.25,30.25,JOR,2755.0,Aqaba,247.0,Jordan,128954.0,Wadi Araba,35.25,30.25,JOR,2755.0,Aqaba,247.0,Jordan,128954.0,Wadi Araba,both,identical +173232,35.75,30.25,JOR,2760.0,Ma'An,247.0,Jordan,128984.0,Ma'An,35.75,30.25,JOR,2760.0,Ma'An,247.0,Jordan,128984.0,Ma'An,both,identical +173233,36.25,30.25,JOR,2760.0,Ma'An,247.0,Jordan,128984.0,Ma'An,36.25,30.25,JOR,2760.0,Ma'An,247.0,Jordan,128984.0,Ma'An,both,identical +173234,36.75,30.25,JOR,2760.0,Ma'An,247.0,Jordan,128984.0,Ma'An,36.75,30.25,JOR,2760.0,Ma'An,247.0,Jordan,128984.0,Ma'An,both,identical +173235,37.25,30.25,JOR,2760.0,Ma'An,247.0,Jordan,128984.0,Ma'An,37.25,30.25,JOR,2760.0,Ma'An,247.0,Jordan,128984.0,Ma'An,both,identical +173236,37.75,30.25,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130452.0,Tubarjal,37.75,30.25,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130452.0,Tubarjal,both,identical +173237,38.25,30.25,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130452.0,Tubarjal,38.25,30.25,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130452.0,Tubarjal,both,identical +173238,38.75,30.25,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130452.0,Tubarjal,38.75,30.25,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130452.0,Tubarjal,both,identical +173239,39.25,30.25,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130450.0,Dawamat Al Jandal,39.25,30.25,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130450.0,Dawamat Al Jandal,both,identical +173240,39.75,30.25,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130451.0,Sakaka,39.75,30.25,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130451.0,Sakaka,both,identical +173241,40.25,30.25,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130451.0,Sakaka,40.25,30.25,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130451.0,Sakaka,both,identical +173242,40.75,30.25,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130451.0,Sakaka,40.75,30.25,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130451.0,Sakaka,both,identical +173243,41.25,30.25,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130451.0,Sakaka,41.25,30.25,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130451.0,Sakaka,both,identical +173244,41.75,30.25,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130451.0,Sakaka,41.75,30.25,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130451.0,Sakaka,both,identical +173245,42.25,30.25,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130574.0,Al Uwayqilah,42.25,30.25,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130574.0,Al Uwayqilah,both,identical +173246,42.75,30.25,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130576.0,Rafha,42.75,30.25,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130576.0,Rafha,both,identical +173247,43.25,30.25,IRQ,2684.0,Al-Najaf,243.0,Iraq,126961.0,Al-Najaf,43.25,30.25,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130576.0,Rafha,both,country_reassignment +173248,43.75,30.25,IRQ,2684.0,Al-Najaf,243.0,Iraq,126961.0,Al-Najaf,43.75,30.25,IRQ,2684.0,Al-Najaf,243.0,Iraq,126961.0,Al-Najaf,both,identical +173249,44.25,30.25,IRQ,2683.0,Al-Muthanna,243.0,Iraq,126957.0,Al-Salman,44.25,30.25,IRQ,2683.0,Al-Muthanna,243.0,Iraq,126957.0,Al-Salman,both,identical +173250,44.75,30.25,IRQ,2683.0,Al-Muthanna,243.0,Iraq,126957.0,Al-Salman,44.75,30.25,IRQ,2683.0,Al-Muthanna,243.0,Iraq,126957.0,Al-Salman,both,identical +173251,45.25,30.25,IRQ,2683.0,Al-Muthanna,243.0,Iraq,126957.0,Al-Salman,45.25,30.25,IRQ,2683.0,Al-Muthanna,243.0,Iraq,126957.0,Al-Salman,both,identical +173252,45.75,30.25,IRQ,2683.0,Al-Muthanna,243.0,Iraq,126957.0,Al-Salman,45.75,30.25,IRQ,2683.0,Al-Muthanna,243.0,Iraq,126957.0,Al-Salman,both,identical +173253,46.25,30.25,IRQ,2683.0,Al-Muthanna,243.0,Iraq,126957.0,Al-Salman,46.25,30.25,IRQ,2683.0,Al-Muthanna,243.0,Iraq,126957.0,Al-Salman,both,identical +173254,46.75,30.25,IRQ,2682.0,Al-Basrah,243.0,Iraq,126953.0,Al-Zubair,46.75,30.25,IRQ,2682.0,Al-Basrah,243.0,Iraq,126953.0,Al-Zubair,both,identical +173255,47.25,30.25,IRQ,2682.0,Al-Basrah,243.0,Iraq,126953.0,Al-Zubair,47.25,30.25,IRQ,2682.0,Al-Basrah,243.0,Iraq,126953.0,Al-Zubair,both,identical +173256,47.75,30.25,IRQ,2682.0,Al-Basrah,243.0,Iraq,126953.0,Al-Zubair,47.75,30.25,IRQ,2682.0,Al-Basrah,243.0,Iraq,126953.0,Al-Zubair,both,identical +173257,48.25,30.25,IRQ,2682.0,Al-Basrah,243.0,Iraq,126950.0,Al-Faw,48.25,30.25,IRQ,2682.0,Al-Basrah,243.0,Iraq,126950.0,Al-Faw,both,identical +173258,48.75,30.25,IRN,2663.0,Khuzestan,242.0,Iran (Islamic Republic Of),126719.0,Abadan,48.75,30.25,IRN,2663.0,Khuzestan,242.0,Iran (Islamic Republic Of),126719.0,Abadan,both,identical +173259,49.25,30.25,IRN,2663.0,Khuzestan,242.0,Iran (Islamic Republic Of),126738.0,Mahshahr,49.25,30.25,IRN,2663.0,Khuzestan,242.0,Iran (Islamic Republic Of),126738.0,Mahshahr,both,identical +173260,49.75,30.25,IRN,2663.0,Khuzestan,242.0,Iran (Islamic Republic Of),126732.0,Hendijan,49.75,30.25,IRN,2663.0,Khuzestan,242.0,Iran (Islamic Republic Of),126732.0,Hendijan,both,identical +173261,50.25,30.25,IRN,2663.0,Khuzestan,242.0,Iran (Islamic Republic Of),126726.0,Behbahan,50.25,30.25,IRN,2663.0,Khuzestan,242.0,Iran (Islamic Republic Of),126726.0,Behbahan,both,identical +173262,50.75,30.25,IRN,2664.0,Kohgiluyeh And Boyer-Ahmad,242.0,Iran (Islamic Republic Of),126750.0,Gachsaran,50.75,30.25,IRN,2664.0,Kohgiluyeh And Boyer-Ahmad,242.0,Iran (Islamic Republic Of),126750.0,Gachsaran,both,identical +173263,51.25,30.25,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126585.0,Mamasani,51.25,30.25,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126585.0,Mamasani,both,identical +173264,51.75,30.25,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126585.0,Mamasani,51.75,30.25,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126585.0,Mamasani,both,identical +173265,52.25,30.25,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126593.0,Sepidan,52.25,30.25,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126593.0,Sepidan,both,identical +173266,52.75,30.25,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126586.0,Marvdasht,52.75,30.25,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126586.0,Marvdasht,both,identical +173267,53.25,30.25,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126589.0,Pasargad,53.25,30.25,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126589.0,Pasargad,both,identical +173268,53.75,30.25,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126569.0,Bavanat,53.75,30.25,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126569.0,Bavanat,both,identical +173269,54.25,30.25,IRN,2679.0,Yazd,242.0,Iran (Islamic Republic Of),126928.0,Khatam,54.25,30.25,IRN,2679.0,Yazd,242.0,Iran (Islamic Republic Of),126928.0,Khatam,both,identical +173270,54.75,30.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126702.0,Shahr-E-Babak,54.75,30.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126702.0,Shahr-E-Babak,both,identical +173271,55.25,30.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126702.0,Shahr-E-Babak,55.25,30.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126702.0,Shahr-E-Babak,both,identical +173272,55.75,30.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126698.0,Rafsanjan,55.75,30.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126698.0,Rafsanjan,both,identical +173273,56.25,30.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126698.0,Rafsanjan,56.25,30.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126698.0,Rafsanjan,both,identical +173274,56.75,30.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126693.0,Kerman,56.75,30.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126693.0,Kerman,both,identical +173275,57.25,30.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126693.0,Kerman,57.25,30.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126693.0,Kerman,both,identical +173276,57.75,30.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126693.0,Kerman,57.75,30.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126693.0,Kerman,both,identical +173277,58.25,30.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126693.0,Kerman,58.25,30.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126693.0,Kerman,both,identical +173278,58.75,30.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126693.0,Kerman,58.75,30.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126693.0,Kerman,both,identical +173279,59.25,30.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126693.0,Kerman,59.25,30.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126693.0,Kerman,both,identical +173280,59.75,30.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126877.0,Zahedan,59.75,30.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126877.0,Zahedan,both,identical +173281,60.25,30.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126877.0,Zahedan,60.25,30.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126877.0,Zahedan,both,identical +173282,60.75,30.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126864.0,Hamoun,60.75,30.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126864.0,Hamoun,both,identical +173283,61.25,30.25,AFG,2421.0,Nimroz,223.0,Afghanistan,123986.0,Char Burjak,61.25,30.25,AFG,2421.0,Nimroz,223.0,Afghanistan,123986.0,Char Burjak,both,identical +173861,-9.75,30.75,MAR,1482.0,Souss-Massa,147.0,Morocco,104291.0,Agadir Ida Ou Tanane,-9.75,30.75,MAR,1482.0,Souss-Massa,147.0,Morocco,104291.0,Agadir Ida Ou Tanane,both,identical +173862,-9.25,30.75,MAR,1482.0,Souss-Massa,147.0,Morocco,104294.0,Taroudannt,-9.25,30.75,MAR,1482.0,Souss-Massa,147.0,Morocco,104294.0,Taroudannt,both,identical +173863,-8.75,30.75,MAR,1482.0,Souss-Massa,147.0,Morocco,104294.0,Taroudannt,-8.75,30.75,MAR,1482.0,Souss-Massa,147.0,Morocco,104294.0,Taroudannt,both,identical +173864,-8.25,30.75,MAR,1482.0,Souss-Massa,147.0,Morocco,104294.0,Taroudannt,-8.25,30.75,MAR,1482.0,Souss-Massa,147.0,Morocco,104294.0,Taroudannt,both,identical +173865,-7.75,30.75,MAR,1482.0,Souss-Massa,147.0,Morocco,104294.0,Taroudannt,-7.75,30.75,MAR,1482.0,Souss-Massa,147.0,Morocco,104294.0,Taroudannt,both,identical +173866,-7.25,30.75,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104243.0,Ouarzazate,-7.25,30.75,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104243.0,Ouarzazate,both,identical +173867,-6.75,30.75,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104245.0,Zagora,-6.75,30.75,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104245.0,Zagora,both,identical +173868,-6.25,30.75,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104245.0,Zagora,-6.25,30.75,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104245.0,Zagora,both,identical +173869,-5.75,30.75,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104245.0,Zagora,-5.75,30.75,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104245.0,Zagora,both,identical +173870,-5.25,30.75,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104244.0,Tinghir,-5.25,30.75,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104244.0,Tinghir,both,identical +173871,-4.75,30.75,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104241.0,Errachidia,-4.75,30.75,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104241.0,Errachidia,both,identical +173872,-4.25,30.75,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104241.0,Errachidia,-4.25,30.75,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104241.0,Errachidia,both,identical +173873,-3.75,30.75,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104241.0,Errachidia,-3.75,30.75,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104241.0,Errachidia,both,identical +173874,-3.25,30.75,DZA,1007.0,Bechar,101.0,Algeria,100236.0,Mechraa Houari Boumediene,-3.25,30.75,DZA,1007.0,Bechar,101.0,Algeria,100236.0,Mechraa Houari Boumediene,both,identical +173875,-2.75,30.75,DZA,1007.0,Bechar,101.0,Algeria,100236.0,Mechraa Houari Boumediene,-2.75,30.75,DZA,1007.0,Bechar,101.0,Algeria,100236.0,Mechraa Houari Boumediene,both,identical +173876,-2.25,30.75,DZA,1007.0,Bechar,101.0,Algeria,100241.0,Taghit,-2.25,30.75,DZA,1007.0,Bechar,101.0,Algeria,100241.0,Taghit,both,identical +173877,-1.75,30.75,DZA,1007.0,Bechar,101.0,Algeria,100241.0,Taghit,-1.75,30.75,DZA,1007.0,Bechar,101.0,Algeria,100241.0,Taghit,both,identical +173878,-1.25,30.75,DZA,1007.0,Bechar,101.0,Algeria,100242.0,Tamert,-1.25,30.75,DZA,1007.0,Bechar,101.0,Algeria,100242.0,Tamert,both,identical +173879,-0.75,30.75,DZA,1007.0,Bechar,101.0,Algeria,100229.0,El Ouata,-0.75,30.75,DZA,1007.0,Bechar,101.0,Algeria,100229.0,El Ouata,both,identical +173880,-0.25,30.75,DZA,1007.0,Bechar,101.0,Algeria,100227.0,Beni Ounif,-0.25,30.75,DZA,1007.0,Bechar,101.0,Algeria,100227.0,Beni Ounif,both,identical +173881,0.25,30.75,DZA,1007.0,Bechar,101.0,Algeria,100557.0,El Bnoud,0.25,30.75,DZA,1017.0,El Bayadh,101.0,Algeria,100557.0,El Bnoud,both,admin_reallocation +173882,0.75,30.75,DZA,1001.0,Adrar,101.0,Algeria,100011.0,Ksar Kaddour,0.75,30.75,DZA,1001.0,Adrar,101.0,Algeria,100011.0,Ksar Kaddour,both,identical +173883,1.25,30.75,DZA,1001.0,Adrar,101.0,Algeria,100025.0,Tinerkouk,1.25,30.75,DZA,1001.0,Adrar,101.0,Algeria,100025.0,Tinerkouk,both,identical +173884,1.75,30.75,DZA,1001.0,Adrar,101.0,Algeria,100025.0,Tinerkouk,1.75,30.75,DZA,1001.0,Adrar,101.0,Algeria,100025.0,Tinerkouk,both,identical +173885,2.25,30.75,DZA,1020.0,Ghardaia,101.0,Algeria,100631.0,Golea,2.25,30.75,DZA,1020.0,Ghardaia,101.0,Algeria,100631.0,Golea,both,identical +173886,2.75,30.75,DZA,1020.0,Ghardaia,101.0,Algeria,100631.0,Golea,2.75,30.75,DZA,1020.0,Ghardaia,101.0,Algeria,100631.0,Golea,both,identical +173887,3.25,30.75,DZA,1020.0,Ghardaia,101.0,Algeria,100631.0,Golea,3.25,30.75,DZA,1020.0,Ghardaia,101.0,Algeria,100631.0,Golea,both,identical +173888,3.75,30.75,DZA,1020.0,Ghardaia,101.0,Algeria,100631.0,Golea,3.75,30.75,DZA,1020.0,Ghardaia,101.0,Algeria,100631.0,Golea,both,identical +173889,4.25,30.75,DZA,1033.0,Ouargla,101.0,Algeria,101017.0,Hassi Messaoud,4.25,30.75,DZA,1033.0,Ouargla,101.0,Algeria,101017.0,Hassi Messaoud,both,identical +173890,4.75,30.75,DZA,1033.0,Ouargla,101.0,Algeria,101017.0,Hassi Messaoud,4.75,30.75,DZA,1033.0,Ouargla,101.0,Algeria,101017.0,Hassi Messaoud,both,identical +173891,5.25,30.75,DZA,1033.0,Ouargla,101.0,Algeria,101017.0,Hassi Messaoud,5.25,30.75,DZA,1033.0,Ouargla,101.0,Algeria,101017.0,Hassi Messaoud,both,identical +173892,5.75,30.75,DZA,1033.0,Ouargla,101.0,Algeria,101017.0,Hassi Messaoud,5.75,30.75,DZA,1033.0,Ouargla,101.0,Algeria,101017.0,Hassi Messaoud,both,identical +173893,6.25,30.75,DZA,1033.0,Ouargla,101.0,Algeria,101017.0,Hassi Messaoud,6.25,30.75,DZA,1033.0,Ouargla,101.0,Algeria,101017.0,Hassi Messaoud,both,identical +173894,6.75,30.75,DZA,1033.0,Ouargla,101.0,Algeria,101017.0,Hassi Messaoud,6.75,30.75,DZA,1033.0,Ouargla,101.0,Algeria,101017.0,Hassi Messaoud,both,identical +173895,7.25,30.75,DZA,1033.0,Ouargla,101.0,Algeria,101014.0,El Borma,7.25,30.75,DZA,1033.0,Ouargla,101.0,Algeria,101014.0,El Borma,both,identical +173896,7.75,30.75,DZA,1033.0,Ouargla,101.0,Algeria,101014.0,El Borma,7.75,30.75,DZA,1033.0,Ouargla,101.0,Algeria,101014.0,El Borma,both,identical +173897,8.25,30.75,DZA,1033.0,Ouargla,101.0,Algeria,101014.0,El Borma,8.25,30.75,DZA,1033.0,Ouargla,101.0,Algeria,101014.0,El Borma,both,identical +173898,8.75,30.75,DZA,1033.0,Ouargla,101.0,Algeria,101014.0,El Borma,8.75,30.75,DZA,1033.0,Ouargla,101.0,Algeria,101014.0,El Borma,both,identical +173899,9.25,30.75,DZA,1033.0,Ouargla,101.0,Algeria,101014.0,El Borma,9.25,30.75,DZA,1033.0,Ouargla,101.0,Algeria,101014.0,El Borma,both,identical +173900,9.75,30.75,TUN,1671.0,Tataouine,164.0,Tunisia,106209.0,Remada,9.75,30.75,TUN,1671.0,Tataouine,164.0,Tunisia,106209.0,Remada,both,identical +173901,10.25,30.75,LBY,1427.0,West,140.0,Libya,104050.0,Nalut,10.25,30.75,LBY,1427.0,West,140.0,Libya,104050.0,Nalut,both,identical +173902,10.75,30.75,LBY,1427.0,West,140.0,Libya,104050.0,Nalut,10.75,30.75,LBY,1427.0,West,140.0,Libya,104050.0,Nalut,both,identical +173903,11.25,30.75,LBY,1427.0,West,140.0,Libya,104050.0,Nalut,11.25,30.75,LBY,1427.0,West,140.0,Libya,104050.0,Nalut,both,identical +173904,11.75,30.75,LBY,1427.0,West,140.0,Libya,104050.0,Nalut,11.75,30.75,LBY,1427.0,West,140.0,Libya,104050.0,Nalut,both,identical +173905,12.25,30.75,LBY,1427.0,West,140.0,Libya,104045.0,Al Jabal Al Gharbi,12.25,30.75,LBY,1427.0,West,140.0,Libya,104045.0,Al Jabal Al Gharbi,both,identical +173906,12.75,30.75,LBY,1427.0,West,140.0,Libya,104045.0,Al Jabal Al Gharbi,12.75,30.75,LBY,1427.0,West,140.0,Libya,104045.0,Al Jabal Al Gharbi,both,identical +173907,13.25,30.75,LBY,1427.0,West,140.0,Libya,104045.0,Al Jabal Al Gharbi,13.25,30.75,LBY,1427.0,West,140.0,Libya,104045.0,Al Jabal Al Gharbi,both,identical +173908,13.75,30.75,LBY,1427.0,West,140.0,Libya,104045.0,Al Jabal Al Gharbi,13.75,30.75,LBY,1427.0,West,140.0,Libya,104045.0,Al Jabal Al Gharbi,both,identical +173909,14.25,30.75,LBY,1427.0,West,140.0,Libya,104049.0,Misrata,14.25,30.75,LBY,1427.0,West,140.0,Libya,104049.0,Misrata,both,identical +173910,14.75,30.75,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,14.75,30.75,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,both,identical +173911,15.25,30.75,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,15.25,30.75,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,both,identical +173912,15.75,30.75,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,15.75,30.75,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,both,identical +173913,16.25,30.75,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,16.25,30.75,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,both,identical +173914,16.75,30.75,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,16.75,30.75,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,both,identical +173915,17.25,30.75,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,17.25,30.75,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,both,identical +173916,17.75,30.75,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,17.75,30.75,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,both,identical +173917,18.25,30.75,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,18.25,30.75,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,both,identical +173918,18.75,30.75,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,18.75,30.75,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,both,identical +173920,19.75,30.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,19.75,30.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +173921,20.25,30.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,20.25,30.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +173922,20.75,30.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,20.75,30.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +173923,21.25,30.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,21.25,30.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +173924,21.75,30.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,21.75,30.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +173925,22.25,30.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,22.25,30.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +173926,22.75,30.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,22.75,30.75,LBY,1425.0,East,140.0,Libya,104037.0,Ejdabia,both,identical +173927,23.25,30.75,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,23.25,30.75,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,both,identical +173928,23.75,30.75,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,23.75,30.75,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,both,identical +173929,24.25,30.75,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,24.25,30.75,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,both,identical +173930,24.75,30.75,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,24.75,30.75,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,both,identical +173931,25.25,30.75,EGY,1260.0,Matrouh,120.0,Egypt,102762.0,Salloum,25.25,30.75,EGY,1260.0,Matrouh,120.0,Egypt,102762.0,Salloum,both,identical +173932,25.75,30.75,EGY,1260.0,Matrouh,120.0,Egypt,102763.0,Sidi Barani,25.75,30.75,EGY,1260.0,Matrouh,120.0,Egypt,102763.0,Sidi Barani,both,identical +173933,26.25,30.75,EGY,1260.0,Matrouh,120.0,Egypt,102760.0,Marsa Matruh,26.25,30.75,EGY,1260.0,Matrouh,120.0,Egypt,102760.0,Marsa Matruh,both,identical +173934,26.75,30.75,EGY,1260.0,Matrouh,120.0,Egypt,102760.0,Marsa Matruh,26.75,30.75,EGY,1260.0,Matrouh,120.0,Egypt,102760.0,Marsa Matruh,both,identical +173935,27.25,30.75,EGY,1260.0,Matrouh,120.0,Egypt,102760.0,Marsa Matruh,27.25,30.75,EGY,1260.0,Matrouh,120.0,Egypt,102760.0,Marsa Matruh,both,identical +173936,27.75,30.75,EGY,1260.0,Matrouh,120.0,Egypt,102760.0,Marsa Matruh,27.75,30.75,EGY,1260.0,Matrouh,120.0,Egypt,102760.0,Marsa Matruh,both,identical +173937,28.25,30.75,EGY,1260.0,Matrouh,120.0,Egypt,102759.0,Daba,28.25,30.75,EGY,1260.0,Matrouh,120.0,Egypt,102759.0,Daba,both,identical +173938,28.75,30.75,EGY,1260.0,Matrouh,120.0,Egypt,102758.0,Alamn,28.75,30.75,EGY,1260.0,Matrouh,120.0,Egypt,102758.0,Alamn,both,identical +173939,29.25,30.75,EGY,1260.0,Matrouh,120.0,Egypt,102757.0,Al-Hammam,29.25,30.75,EGY,1260.0,Matrouh,120.0,Egypt,102757.0,Al-Hammam,both,identical +173940,29.75,30.75,EGY,1245.0,Alexandria,120.0,Egypt,102551.0,Zemam Out,29.75,30.75,EGY,1245.0,Alexandria,120.0,Egypt,102551.0,Zemam Out,both,identical +173941,30.25,30.75,EGY,1248.0,Behera,120.0,Egypt,102578.0,Abu-L-Matamir,30.25,30.75,EGY,1248.0,Behera,120.0,Egypt,102578.0,Abu-L-Matamir,both,identical +173942,30.75,30.75,EGY,1248.0,Behera,120.0,Egypt,102582.0,Badr,30.75,30.75,EGY,1248.0,Behera,120.0,Egypt,102582.0,Badr,both,identical +173943,31.25,30.75,EGY,1254.0,Gharbia,120.0,Egypt,102648.0,Aga,31.25,30.75,EGY,1251.0,Dakahlia,120.0,Egypt,102648.0,Aga,both,admin_reallocation +173944,31.75,30.75,EGY,1268.0,Sharkia,120.0,Egypt,102850.0,Faqus Center,31.75,30.75,EGY,1268.0,Sharkia,120.0,Egypt,102850.0,Faqus Center,both,identical +173945,32.25,30.75,EGY,1244.0,"Al-, Ismailia",120.0,Egypt,102531.0,"Qantara Sharq, Al-",32.25,30.75,EGY,1244.0,"Al-, Ismailia",120.0,Egypt,102531.0,"Qantara Sharq, Al-",both,identical +173946,32.75,30.75,EGY,1264.0,North Sinai,120.0,Egypt,102795.0,Bir Al-Abd,32.75,30.75,EGY,1264.0,North Sinai,120.0,Egypt,102795.0,Bir Al-Abd,both,identical +173947,33.25,30.75,EGY,1264.0,North Sinai,120.0,Egypt,102795.0,Bir Al-Abd,33.25,30.75,EGY,1264.0,North Sinai,120.0,Egypt,102795.0,Bir Al-Abd,both,identical +173948,33.75,30.75,EGY,1264.0,North Sinai,120.0,Egypt,102804.0,Shaykh Zuwayd,33.75,30.75,EGY,1264.0,North Sinai,120.0,Egypt,102804.0,Shaykh Zuwayd,both,identical +173949,34.25,30.75,EGY,1264.0,North Sinai,120.0,Egypt,102801.0,Qasima,34.25,30.75,EGY,1264.0,North Sinai,120.0,Egypt,102801.0,Qasima,both,identical +173950,34.75,30.75,ISR,2703.0,Southern District,244.0,Israel,127046.0,Administrative Unit Not Available,34.75,30.75,ISR,2703.0,Southern District,244.0,Israel,127046.0,Administrative Unit Not Available,both,identical +173951,35.25,30.75,ISR,2703.0,Southern District,244.0,Israel,127046.0,Administrative Unit Not Available,35.25,30.75,ISR,2703.0,Southern District,244.0,Israel,127046.0,Administrative Unit Not Available,both,identical +173952,35.75,30.75,JOR,2763.0,Tafiela,247.0,Jordan,128993.0,Al-Hasa,35.75,30.75,JOR,2763.0,Tafiela,247.0,Jordan,128993.0,Al-Hasa,both,identical +173953,36.25,30.75,JOR,2760.0,Ma'An,247.0,Jordan,128984.0,Ma'An,36.25,30.75,JOR,2760.0,Ma'An,247.0,Jordan,128984.0,Ma'An,both,identical +173954,36.75,30.75,JOR,2760.0,Ma'An,247.0,Jordan,128984.0,Ma'An,36.75,30.75,JOR,2760.0,Ma'An,247.0,Jordan,128984.0,Ma'An,both,identical +173955,37.25,30.75,JOR,2760.0,Ma'An,247.0,Jordan,128984.0,Ma'An,37.25,30.75,JOR,2760.0,Ma'An,247.0,Jordan,128984.0,Ma'An,both,identical +173956,37.75,30.75,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130449.0,Al Qurayyat,37.75,30.75,JOR,2760.0,Ma'An,247.0,Jordan,128984.0,Ma'An,both,country_reassignment +173957,38.25,30.75,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130452.0,Tubarjal,38.25,30.75,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130452.0,Tubarjal,both,identical +173958,38.75,30.75,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130452.0,Tubarjal,38.75,30.75,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130452.0,Tubarjal,both,identical +173959,39.25,30.75,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130450.0,Dawamat Al Jandal,39.25,30.75,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130450.0,Dawamat Al Jandal,both,identical +173960,39.75,30.75,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130451.0,Sakaka,39.75,30.75,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130451.0,Sakaka,both,identical +173961,40.25,30.75,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130451.0,Sakaka,40.25,30.75,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130451.0,Sakaka,both,identical +173962,40.75,30.75,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130451.0,Sakaka,40.75,30.75,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130451.0,Sakaka,both,identical +173963,41.25,30.75,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130575.0,Arar,41.25,30.75,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130575.0,Arar,both,identical +173964,41.75,30.75,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130575.0,Arar,41.75,30.75,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130575.0,Arar,both,identical +173965,42.25,30.75,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130574.0,Al Uwayqilah,42.25,30.75,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130574.0,Al Uwayqilah,both,identical +173966,42.75,30.75,IRQ,2684.0,Al-Najaf,243.0,Iraq,126961.0,Al-Najaf,42.75,30.75,IRQ,2684.0,Al-Najaf,243.0,Iraq,126961.0,Al-Najaf,both,identical +173967,43.25,30.75,IRQ,2684.0,Al-Najaf,243.0,Iraq,126961.0,Al-Najaf,43.25,30.75,IRQ,2684.0,Al-Najaf,243.0,Iraq,126961.0,Al-Najaf,both,identical +173968,43.75,30.75,IRQ,2684.0,Al-Najaf,243.0,Iraq,126961.0,Al-Najaf,43.75,30.75,IRQ,2684.0,Al-Najaf,243.0,Iraq,126961.0,Al-Najaf,both,identical +173969,44.25,30.75,IRQ,2684.0,Al-Najaf,243.0,Iraq,126961.0,Al-Najaf,44.25,30.75,IRQ,2684.0,Al-Najaf,243.0,Iraq,126961.0,Al-Najaf,both,identical +173970,44.75,30.75,IRQ,2683.0,Al-Muthanna,243.0,Iraq,126957.0,Al-Salman,44.75,30.75,IRQ,2683.0,Al-Muthanna,243.0,Iraq,126957.0,Al-Salman,both,identical +173971,45.25,30.75,IRQ,2683.0,Al-Muthanna,243.0,Iraq,126957.0,Al-Salman,45.25,30.75,IRQ,2683.0,Al-Muthanna,243.0,Iraq,126957.0,Al-Salman,both,identical +173972,45.75,30.75,IRQ,2683.0,Al-Muthanna,243.0,Iraq,126957.0,Al-Salman,45.75,30.75,IRQ,2683.0,Al-Muthanna,243.0,Iraq,126957.0,Al-Salman,both,identical +173973,46.25,30.75,IRQ,2683.0,Al-Muthanna,243.0,Iraq,126957.0,Al-Salman,46.25,30.75,IRQ,2683.0,Al-Muthanna,243.0,Iraq,126957.0,Al-Salman,both,identical +173974,46.75,30.75,IRQ,2697.0,Thi Qar,243.0,Iraq,127032.0,Al-Chibayish,46.75,30.75,IRQ,2697.0,Thi Qar,243.0,Iraq,127032.0,Al-Chibayish,both,identical +173975,47.25,30.75,IRQ,2682.0,Al-Basrah,243.0,Iraq,126952.0,Al-Qurna,47.25,30.75,IRQ,2682.0,Al-Basrah,243.0,Iraq,126952.0,Al-Qurna,both,identical +173976,47.75,30.75,IRQ,2682.0,Al-Basrah,243.0,Iraq,126954.0,Shat Al-Arab,47.75,30.75,IRQ,2682.0,Al-Basrah,243.0,Iraq,126954.0,Shat Al-Arab,both,identical +173977,48.25,30.75,IRN,2663.0,Khuzestan,242.0,Iran (Islamic Republic Of),126736.0,Khorramshahr,48.25,30.75,IRN,2663.0,Khuzestan,242.0,Iran (Islamic Republic Of),126736.0,Khorramshahr,both,identical +173978,48.75,30.75,IRN,2663.0,Khuzestan,242.0,Iran (Islamic Republic Of),126743.0,Shadegan,48.75,30.75,IRN,2663.0,Khuzestan,242.0,Iran (Islamic Republic Of),126743.0,Shadegan,both,identical +173979,49.25,30.75,IRN,2663.0,Khuzestan,242.0,Iran (Islamic Republic Of),126738.0,Mahshahr,49.25,30.75,IRN,2663.0,Khuzestan,242.0,Iran (Islamic Republic Of),126738.0,Mahshahr,both,identical +173980,49.75,30.75,IRN,2663.0,Khuzestan,242.0,Iran (Islamic Republic Of),126740.0,Omidiyeh,49.75,30.75,IRN,2663.0,Khuzestan,242.0,Iran (Islamic Republic Of),126740.0,Omidiyeh,both,identical +173981,50.25,30.75,IRN,2663.0,Khuzestan,242.0,Iran (Islamic Republic Of),126726.0,Behbahan,50.25,30.75,IRN,2663.0,Khuzestan,242.0,Iran (Islamic Republic Of),126726.0,Behbahan,both,identical +173982,50.75,30.75,IRN,2664.0,Kohgiluyeh And Boyer-Ahmad,242.0,Iran (Islamic Republic Of),126748.0,Charam,50.75,30.75,IRN,2664.0,Kohgiluyeh And Boyer-Ahmad,242.0,Iran (Islamic Republic Of),126748.0,Charam,both,identical +173983,51.25,30.75,IRN,2664.0,Kohgiluyeh And Boyer-Ahmad,242.0,Iran (Islamic Republic Of),126753.0,Yasooj,51.25,30.75,IRN,2664.0,Kohgiluyeh And Boyer-Ahmad,242.0,Iran (Islamic Republic Of),126753.0,Yasooj,both,identical +173984,51.75,30.75,IRN,2664.0,Kohgiluyeh And Boyer-Ahmad,242.0,Iran (Islamic Republic Of),126753.0,Yasooj,51.75,30.75,IRN,2664.0,Kohgiluyeh And Boyer-Ahmad,242.0,Iran (Islamic Republic Of),126753.0,Yasooj,both,identical +173985,52.25,30.75,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126571.0,Eqlid,52.25,30.75,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126571.0,Eqlid,both,identical +173986,52.75,30.75,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126571.0,Eqlid,52.75,30.75,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126571.0,Eqlid,both,identical +173987,53.25,30.75,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126582.0,Khorrambid,53.25,30.75,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126582.0,Khorrambid,both,identical +173988,53.75,30.75,IRN,2679.0,Yazd,242.0,Iran (Islamic Republic Of),126923.0,Abarkuh,53.75,30.75,IRN,2679.0,Yazd,242.0,Iran (Islamic Republic Of),126923.0,Abarkuh,both,identical +173989,54.25,30.75,IRN,2679.0,Yazd,242.0,Iran (Islamic Republic Of),126928.0,Khatam,54.25,30.75,IRN,2679.0,Yazd,242.0,Iran (Islamic Republic Of),126928.0,Khatam,both,identical +173990,54.75,30.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126702.0,Shahr-E-Babak,54.75,30.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126702.0,Shahr-E-Babak,both,identical +173991,55.25,30.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126682.0,Anar,55.25,30.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126682.0,Anar,both,identical +173992,55.75,30.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126698.0,Rafsanjan,55.75,30.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126698.0,Rafsanjan,both,identical +173993,56.25,30.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126704.0,Zarand,56.25,30.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126704.0,Zarand,both,identical +173994,56.75,30.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126704.0,Zarand,56.75,30.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126704.0,Zarand,both,identical +173995,57.25,30.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126699.0,Ravar,57.25,30.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126699.0,Ravar,both,identical +173996,57.75,30.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126693.0,Kerman,57.75,30.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126693.0,Kerman,both,identical +173997,58.25,30.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126693.0,Kerman,58.25,30.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126693.0,Kerman,both,identical +173998,58.75,30.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126693.0,Kerman,58.75,30.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126693.0,Kerman,both,identical +173999,59.25,30.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126693.0,Kerman,59.25,30.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126693.0,Kerman,both,identical +174000,59.75,30.75,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126884.0,Nehbandan,59.75,30.75,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126884.0,Nehbandan,both,identical +174001,60.25,30.75,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126872.0,Nimrouz,60.25,30.75,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126872.0,Nimrouz,both,identical +174002,60.75,30.75,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126872.0,Nimrouz,60.75,30.75,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126872.0,Nimrouz,both,identical +174003,61.25,30.75,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126864.0,Hamoun,61.25,30.75,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126864.0,Hamoun,both,identical +174004,61.75,30.75,AFG,2421.0,Nimroz,223.0,Afghanistan,123986.0,Char Burjak,61.75,30.75,AFG,2421.0,Nimroz,223.0,Afghanistan,123986.0,Char Burjak,both,identical +174581,-9.75,31.25,MAR,1479.0,Marrakech-Safi,147.0,Morocco,104271.0,Essaouira,-9.75,31.25,MAR,1479.0,Marrakech-Safi,147.0,Morocco,104271.0,Essaouira,both,identical +174582,-9.25,31.25,MAR,1479.0,Marrakech-Safi,147.0,Morocco,104271.0,Essaouira,-9.25,31.25,MAR,1479.0,Marrakech-Safi,147.0,Morocco,104271.0,Essaouira,both,identical +174583,-8.75,31.25,MAR,1479.0,Marrakech-Safi,147.0,Morocco,104269.0,Chichaoua,-8.75,31.25,MAR,1479.0,Marrakech-Safi,147.0,Morocco,104269.0,Chichaoua,both,identical +174584,-8.25,31.25,MAR,1479.0,Marrakech-Safi,147.0,Morocco,104268.0,Al Haouz,-8.25,31.25,MAR,1479.0,Marrakech-Safi,147.0,Morocco,104268.0,Al Haouz,both,identical +174585,-7.75,31.25,MAR,1479.0,Marrakech-Safi,147.0,Morocco,104268.0,Al Haouz,-7.75,31.25,MAR,1479.0,Marrakech-Safi,147.0,Morocco,104268.0,Al Haouz,both,identical +174586,-7.25,31.25,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104243.0,Ouarzazate,-7.25,31.25,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104243.0,Ouarzazate,both,identical +174587,-6.75,31.25,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104243.0,Ouarzazate,-6.75,31.25,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104243.0,Ouarzazate,both,identical +174588,-6.25,31.25,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104244.0,Tinghir,-6.25,31.25,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104244.0,Tinghir,both,identical +174589,-5.75,31.25,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104244.0,Tinghir,-5.75,31.25,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104244.0,Tinghir,both,identical +174590,-5.25,31.25,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104244.0,Tinghir,-5.25,31.25,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104244.0,Tinghir,both,identical +174591,-4.75,31.25,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104244.0,Tinghir,-4.75,31.25,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104244.0,Tinghir,both,identical +174592,-4.25,31.25,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104241.0,Errachidia,-4.25,31.25,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104241.0,Errachidia,both,identical +174593,-3.75,31.25,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104241.0,Errachidia,-3.75,31.25,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104241.0,Errachidia,both,identical +174594,-3.25,31.25,DZA,1007.0,Bechar,101.0,Algeria,100230.0,Erg Ferradj,-3.25,31.25,DZA,1007.0,Bechar,101.0,Algeria,100230.0,Erg Ferradj,both,identical +174595,-2.75,31.25,DZA,1007.0,Bechar,101.0,Algeria,100223.0,Abadla,-2.75,31.25,DZA,1007.0,Bechar,101.0,Algeria,100223.0,Abadla,both,identical +174596,-2.25,31.25,DZA,1007.0,Bechar,101.0,Algeria,100241.0,Taghit,-2.25,31.25,DZA,1007.0,Bechar,101.0,Algeria,100241.0,Taghit,both,identical +174597,-1.75,31.25,DZA,1007.0,Bechar,101.0,Algeria,100241.0,Taghit,-1.75,31.25,DZA,1007.0,Bechar,101.0,Algeria,100241.0,Taghit,both,identical +174598,-1.25,31.25,DZA,1007.0,Bechar,101.0,Algeria,100241.0,Taghit,-1.25,31.25,DZA,1007.0,Bechar,101.0,Algeria,100241.0,Taghit,both,identical +174599,-0.75,31.25,DZA,1007.0,Bechar,101.0,Algeria,100227.0,Beni Ounif,-0.75,31.25,DZA,1007.0,Bechar,101.0,Algeria,100227.0,Beni Ounif,both,identical +174600,-0.25,31.25,DZA,1017.0,El Bayadh,101.0,Algeria,100557.0,El Bnoud,-0.25,31.25,DZA,1017.0,El Bayadh,101.0,Algeria,100557.0,El Bnoud,both,identical +174601,0.25,31.25,DZA,1017.0,El Bayadh,101.0,Algeria,100557.0,El Bnoud,0.25,31.25,DZA,1017.0,El Bayadh,101.0,Algeria,100557.0,El Bnoud,both,identical +174602,0.75,31.25,DZA,1017.0,El Bayadh,101.0,Algeria,100557.0,El Bnoud,0.75,31.25,DZA,1017.0,El Bayadh,101.0,Algeria,100557.0,El Bnoud,both,identical +174603,1.25,31.25,DZA,1017.0,El Bayadh,101.0,Algeria,100025.0,Tinerkouk,1.25,31.25,DZA,1001.0,Adrar,101.0,Algeria,100025.0,Tinerkouk,both,admin_reallocation +174604,1.75,31.25,DZA,1001.0,Adrar,101.0,Algeria,100025.0,Tinerkouk,1.75,31.25,DZA,1001.0,Adrar,101.0,Algeria,100025.0,Tinerkouk,both,identical +174605,2.25,31.25,DZA,1020.0,Ghardaia,101.0,Algeria,100631.0,Golea,2.25,31.25,DZA,1020.0,Ghardaia,101.0,Algeria,100631.0,Golea,both,identical +174606,2.75,31.25,DZA,1020.0,Ghardaia,101.0,Algeria,100631.0,Golea,2.75,31.25,DZA,1020.0,Ghardaia,101.0,Algeria,100631.0,Golea,both,identical +174607,3.25,31.25,DZA,1020.0,Ghardaia,101.0,Algeria,100631.0,Golea,3.25,31.25,DZA,1020.0,Ghardaia,101.0,Algeria,100631.0,Golea,both,identical +174608,3.75,31.25,DZA,1020.0,Ghardaia,101.0,Algeria,100631.0,Golea,3.75,31.25,DZA,1020.0,Ghardaia,101.0,Algeria,100631.0,Golea,both,identical +174609,4.25,31.25,DZA,1020.0,Ghardaia,101.0,Algeria,100633.0,Hassi Lefhal,4.25,31.25,DZA,1020.0,Ghardaia,101.0,Algeria,100633.0,Hassi Lefhal,both,identical +174610,4.75,31.25,DZA,1033.0,Ouargla,101.0,Algeria,101023.0,Rouissat,4.75,31.25,DZA,1033.0,Ouargla,101.0,Algeria,101023.0,Rouissat,both,identical +174611,5.25,31.25,DZA,1033.0,Ouargla,101.0,Algeria,101017.0,Hassi Messaoud,5.25,31.25,DZA,1033.0,Ouargla,101.0,Algeria,101017.0,Hassi Messaoud,both,identical +174612,5.75,31.25,DZA,1033.0,Ouargla,101.0,Algeria,101017.0,Hassi Messaoud,5.75,31.25,DZA,1033.0,Ouargla,101.0,Algeria,101017.0,Hassi Messaoud,both,identical +174613,6.25,31.25,DZA,1033.0,Ouargla,101.0,Algeria,101017.0,Hassi Messaoud,6.25,31.25,DZA,1033.0,Ouargla,101.0,Algeria,101017.0,Hassi Messaoud,both,identical +174614,6.75,31.25,DZA,1033.0,Ouargla,101.0,Algeria,101014.0,El Borma,6.75,31.25,DZA,1033.0,Ouargla,101.0,Algeria,101014.0,El Borma,both,identical +174615,7.25,31.25,DZA,1033.0,Ouargla,101.0,Algeria,101014.0,El Borma,7.25,31.25,DZA,1033.0,Ouargla,101.0,Algeria,101014.0,El Borma,both,identical +174616,7.75,31.25,DZA,1033.0,Ouargla,101.0,Algeria,101014.0,El Borma,7.75,31.25,DZA,1033.0,Ouargla,101.0,Algeria,101014.0,El Borma,both,identical +174617,8.25,31.25,DZA,1033.0,Ouargla,101.0,Algeria,101014.0,El Borma,8.25,31.25,DZA,1033.0,Ouargla,101.0,Algeria,101014.0,El Borma,both,identical +174618,8.75,31.25,DZA,1033.0,Ouargla,101.0,Algeria,101014.0,El Borma,8.75,31.25,DZA,1033.0,Ouargla,101.0,Algeria,101014.0,El Borma,both,identical +174619,9.25,31.25,DZA,1033.0,Ouargla,101.0,Algeria,101014.0,El Borma,9.25,31.25,DZA,1033.0,Ouargla,101.0,Algeria,101014.0,El Borma,both,identical +174620,9.75,31.25,TUN,1671.0,Tataouine,164.0,Tunisia,106209.0,Remada,9.75,31.25,TUN,1671.0,Tataouine,164.0,Tunisia,106209.0,Remada,both,identical +174621,10.25,31.25,LBY,1427.0,West,140.0,Libya,104050.0,Nalut,10.25,31.25,LBY,1427.0,West,140.0,Libya,104050.0,Nalut,both,identical +174622,10.75,31.25,LBY,1427.0,West,140.0,Libya,104050.0,Nalut,10.75,31.25,LBY,1427.0,West,140.0,Libya,104050.0,Nalut,both,identical +174623,11.25,31.25,LBY,1427.0,West,140.0,Libya,104050.0,Nalut,11.25,31.25,LBY,1427.0,West,140.0,Libya,104050.0,Nalut,both,identical +174624,11.75,31.25,LBY,1427.0,West,140.0,Libya,104050.0,Nalut,11.75,31.25,LBY,1427.0,West,140.0,Libya,104050.0,Nalut,both,identical +174625,12.25,31.25,LBY,1427.0,West,140.0,Libya,104045.0,Al Jabal Al Gharbi,12.25,31.25,LBY,1427.0,West,140.0,Libya,104045.0,Al Jabal Al Gharbi,both,identical +174626,12.75,31.25,LBY,1427.0,West,140.0,Libya,104045.0,Al Jabal Al Gharbi,12.75,31.25,LBY,1427.0,West,140.0,Libya,104045.0,Al Jabal Al Gharbi,both,identical +174627,13.25,31.25,LBY,1427.0,West,140.0,Libya,104045.0,Al Jabal Al Gharbi,13.25,31.25,LBY,1427.0,West,140.0,Libya,104045.0,Al Jabal Al Gharbi,both,identical +174628,13.75,31.25,LBY,1427.0,West,140.0,Libya,104049.0,Misrata,13.75,31.25,LBY,1427.0,West,140.0,Libya,104049.0,Misrata,both,identical +174629,14.25,31.25,LBY,1427.0,West,140.0,Libya,104049.0,Misrata,14.25,31.25,LBY,1427.0,West,140.0,Libya,104049.0,Misrata,both,identical +174630,14.75,31.25,LBY,1427.0,West,140.0,Libya,104049.0,Misrata,14.75,31.25,LBY,1427.0,West,140.0,Libya,104049.0,Misrata,both,identical +174631,15.25,31.25,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,15.25,31.25,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,both,identical +174632,15.75,31.25,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,15.75,31.25,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,both,identical +174633,16.25,31.25,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,16.25,31.25,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,both,identical +174634,16.75,31.25,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,16.75,31.25,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,both,identical +174635,17.25,31.25,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,17.25,31.25,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,both,identical +174636,17.75,31.25,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,17.75,31.25,LBY,1427.0,West,140.0,Libya,104051.0,Sirt,both,identical +174640,19.75,31.25,LBY,1425.0,East,140.0,Libya,104035.0,Benghazi,19.75,31.25,LBY,1425.0,East,140.0,Libya,104035.0,Benghazi,both,identical +174641,20.25,31.25,LBY,1425.0,East,140.0,Libya,104035.0,Benghazi,20.25,31.25,LBY,1425.0,East,140.0,Libya,104035.0,Benghazi,both,identical +174642,20.75,31.25,LBY,1425.0,East,140.0,Libya,104035.0,Benghazi,20.75,31.25,LBY,1425.0,East,140.0,Libya,104035.0,Benghazi,both,identical +174643,21.25,31.25,LBY,1425.0,East,140.0,Libya,104035.0,Benghazi,21.25,31.25,LBY,1425.0,East,140.0,Libya,104035.0,Benghazi,both,identical +174644,21.75,31.25,LBY,1425.0,East,140.0,Libya,104032.0,Al Jabal Al Akhdar,21.75,31.25,LBY,1425.0,East,140.0,Libya,104032.0,Al Jabal Al Akhdar,both,identical +174645,22.25,31.25,LBY,1425.0,East,140.0,Libya,104036.0,Derna,22.25,31.25,LBY,1425.0,East,140.0,Libya,104036.0,Derna,both,identical +174646,22.75,31.25,LBY,1425.0,East,140.0,Libya,104036.0,Derna,22.75,31.25,LBY,1425.0,East,140.0,Libya,104036.0,Derna,both,identical +174647,23.25,31.25,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,23.25,31.25,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,both,identical +174648,23.75,31.25,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,23.75,31.25,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,both,identical +174649,24.25,31.25,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,24.25,31.25,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,both,identical +174650,24.75,31.25,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,24.75,31.25,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,both,identical +174651,25.25,31.25,EGY,1260.0,Matrouh,120.0,Egypt,102762.0,Salloum,25.25,31.25,EGY,1260.0,Matrouh,120.0,Egypt,102762.0,Salloum,both,identical +174652,25.75,31.25,EGY,1260.0,Matrouh,120.0,Egypt,102763.0,Sidi Barani,25.75,31.25,EGY,1260.0,Matrouh,120.0,Egypt,102763.0,Sidi Barani,both,identical +174653,26.25,31.25,EGY,1260.0,Matrouh,120.0,Egypt,102763.0,Sidi Barani,26.25,31.25,EGY,1260.0,Matrouh,120.0,Egypt,102763.0,Sidi Barani,both,identical +174654,26.75,31.25,EGY,1260.0,Matrouh,120.0,Egypt,102760.0,Marsa Matruh,26.75,31.25,EGY,1260.0,Matrouh,120.0,Egypt,102760.0,Marsa Matruh,both,identical +174655,27.25,31.25,EGY,1260.0,Matrouh,120.0,Egypt,102760.0,Marsa Matruh,27.25,31.25,EGY,1260.0,Matrouh,120.0,Egypt,102760.0,Marsa Matruh,both,identical +174656,27.75,31.25,EGY,1260.0,Matrouh,120.0,Egypt,102760.0,Marsa Matruh,27.75,31.25,EGY,1260.0,Matrouh,120.0,Egypt,102760.0,Marsa Matruh,both,identical +174657,28.25,31.25,EGY,1260.0,Matrouh,120.0,Egypt,102759.0,Daba,28.25,31.25,EGY,1260.0,Matrouh,120.0,Egypt,102759.0,Daba,both,identical +174658,28.75,31.25,EGY,1260.0,Matrouh,120.0,Egypt,102759.0,Daba,28.75,31.25,EGY,1260.0,Matrouh,120.0,Egypt,102759.0,Daba,both,identical +174660,29.75,31.25,EGY,1245.0,Alexandria,120.0,Egypt,102534.0,Al Amreia,29.75,31.25,EGY,1245.0,Alexandria,120.0,Egypt,102534.0,Al Amreia,both,identical +174661,30.25,31.25,EGY,1248.0,Behera,120.0,Egypt,102577.0,Abu Hummus,30.25,31.25,EGY,1248.0,Behera,120.0,Egypt,102577.0,Abu Hummus,both,identical +174662,30.75,31.25,EGY,1257.0,Kafr El-Shikh,120.0,Egypt,102737.0,Sidi Salim,30.75,31.25,EGY,1257.0,Kafr El-Shikh,120.0,Egypt,102737.0,Sidi Salim,both,identical +174663,31.25,31.25,EGY,1251.0,Dakahlia,120.0,Egypt,102650.0,Bilqas,31.25,31.25,EGY,1251.0,Dakahlia,120.0,Egypt,102650.0,Bilqas,both,identical +174664,31.75,31.25,EGY,1251.0,Dakahlia,120.0,Egypt,102669.0,Dumyat,31.75,31.25,EGY,1252.0,Damietta,120.0,Egypt,102669.0,Dumyat,both,admin_reallocation +174665,32.25,31.25,EGY,1265.0,Port Said,120.0,Egypt,102807.0,Al-Ganoub,32.25,31.25,EGY,1265.0,Port Said,120.0,Egypt,102807.0,Al-Ganoub,both,identical +174666,32.75,31.25,EGY,1264.0,North Sinai,120.0,Egypt,102803.0,Rummana,32.75,31.25,EGY,1264.0,North Sinai,120.0,Egypt,102803.0,Rummana,both,identical +174667,33.25,31.25,EGY,1264.0,North Sinai,120.0,Egypt,102795.0,Bir Al-Abd,33.25,31.25,EGY,1264.0,North Sinai,120.0,Egypt,102795.0,Bir Al-Abd,both,identical +174668,33.75,31.25,EGY,1264.0,North Sinai,120.0,Egypt,102799.0,El Arish 4,33.75,31.25,EGY,1264.0,North Sinai,120.0,Egypt,102799.0,El Arish 4,both,identical +174669,34.25,31.25,ISR,2703.0,Southern District,244.0,Israel,127046.0,Administrative Unit Not Available,34.25,31.25,ISR,2703.0,Southern District,244.0,Israel,127046.0,Administrative Unit Not Available,both,identical +174670,34.75,31.25,ISR,2703.0,Southern District,244.0,Israel,127046.0,Administrative Unit Not Available,34.75,31.25,ISR,2703.0,Southern District,244.0,Israel,127046.0,Administrative Unit Not Available,both,identical +174671,35.25,31.25,ISR,2703.0,Southern District,244.0,Israel,127046.0,Administrative Unit Not Available,35.25,31.25,ISR,2703.0,Southern District,244.0,Israel,127046.0,Administrative Unit Not Available,both,identical +174672,35.75,31.25,JOR,2759.0,Karak,247.0,Jordan,128976.0,Al-Qatraneh,35.75,31.25,JOR,2759.0,Karak,247.0,Jordan,128976.0,Al-Qatraneh,both,identical +174673,36.25,31.25,JOR,2754.0,Amman,247.0,Jordan,128943.0,Al-Jeeza,36.25,31.25,JOR,2754.0,Amman,247.0,Jordan,128943.0,Al-Jeeza,both,identical +174674,36.75,31.25,JOR,2760.0,Ma'An,247.0,Jordan,128984.0,Ma'An,36.75,31.25,JOR,2760.0,Ma'An,247.0,Jordan,128984.0,Ma'An,both,identical +174675,37.25,31.25,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130449.0,Al Qurayyat,37.25,31.25,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130449.0,Al Qurayyat,both,identical +174676,37.75,31.25,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130449.0,Al Qurayyat,37.75,31.25,SAU,2954.0,Al Jawf,266.0,Saudi Arabia,130449.0,Al Qurayyat,both,identical +174677,38.25,31.25,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130577.0,Turayf,38.25,31.25,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130577.0,Turayf,both,identical +174678,38.75,31.25,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130577.0,Turayf,38.75,31.25,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130577.0,Turayf,both,identical +174679,39.25,31.25,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130577.0,Turayf,39.25,31.25,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130577.0,Turayf,both,identical +174680,39.75,31.25,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130575.0,Arar,39.75,31.25,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130575.0,Arar,both,identical +174681,40.25,31.25,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130575.0,Arar,40.25,31.25,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130575.0,Arar,both,identical +174682,40.75,31.25,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130575.0,Arar,40.75,31.25,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130575.0,Arar,both,identical +174683,41.25,31.25,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130575.0,Arar,41.25,31.25,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130575.0,Arar,both,identical +174684,41.75,31.25,IRQ,2681.0,Al-Anbar,243.0,Iraq,126944.0,Al-Rutba,41.75,31.25,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130575.0,Arar,both,country_reassignment +174685,42.25,31.25,IRQ,2684.0,Al-Najaf,243.0,Iraq,126961.0,Al-Najaf,42.25,31.25,IRQ,2684.0,Al-Najaf,243.0,Iraq,126961.0,Al-Najaf,both,identical +174686,42.75,31.25,IRQ,2684.0,Al-Najaf,243.0,Iraq,126961.0,Al-Najaf,42.75,31.25,IRQ,2684.0,Al-Najaf,243.0,Iraq,126961.0,Al-Najaf,both,identical +174687,43.25,31.25,IRQ,2684.0,Al-Najaf,243.0,Iraq,126961.0,Al-Najaf,43.25,31.25,IRQ,2684.0,Al-Najaf,243.0,Iraq,126961.0,Al-Najaf,both,identical +174688,43.75,31.25,IRQ,2684.0,Al-Najaf,243.0,Iraq,126961.0,Al-Najaf,43.75,31.25,IRQ,2684.0,Al-Najaf,243.0,Iraq,126961.0,Al-Najaf,both,identical +174689,44.25,31.25,IRQ,2684.0,Al-Najaf,243.0,Iraq,126961.0,Al-Najaf,44.25,31.25,IRQ,2684.0,Al-Najaf,243.0,Iraq,126961.0,Al-Najaf,both,identical +174690,44.75,31.25,IRQ,2683.0,Al-Muthanna,243.0,Iraq,126957.0,Al-Salman,44.75,31.25,IRQ,2683.0,Al-Muthanna,243.0,Iraq,126957.0,Al-Salman,both,identical +174691,45.25,31.25,IRQ,2683.0,Al-Muthanna,243.0,Iraq,126958.0,Al-Samawa,45.25,31.25,IRQ,2683.0,Al-Muthanna,243.0,Iraq,126958.0,Al-Samawa,both,identical +174692,45.75,31.25,IRQ,2683.0,Al-Muthanna,243.0,Iraq,126955.0,Al-Khidhir,45.75,31.25,IRQ,2683.0,Al-Muthanna,243.0,Iraq,126955.0,Al-Khidhir,both,identical +174693,46.25,31.25,IRQ,2697.0,Thi Qar,243.0,Iraq,127035.0,Al-Shatra,46.25,31.25,IRQ,2697.0,Thi Qar,243.0,Iraq,127035.0,Al-Shatra,both,identical +174694,46.75,31.25,IRQ,2697.0,Thi Qar,243.0,Iraq,127012.0,Al-Maimouna,46.75,31.25,IRQ,2694.0,Maysan,243.0,Iraq,127012.0,Al-Maimouna,both,admin_reallocation +174695,47.25,31.25,IRQ,2694.0,Maysan,243.0,Iraq,127013.0,Al-Mejar Al-Kabir,47.25,31.25,IRQ,2694.0,Maysan,243.0,Iraq,127013.0,Al-Mejar Al-Kabir,both,identical +174696,47.75,31.25,IRN,2663.0,Khuzestan,242.0,Iran (Islamic Republic Of),126733.0,Hoveizeh,47.75,31.25,IRN,2663.0,Khuzestan,242.0,Iran (Islamic Republic Of),126733.0,Hoveizeh,both,identical +174697,48.25,31.25,IRN,2663.0,Khuzestan,242.0,Iran (Islamic Republic Of),126721.0,Ahvaz,48.25,31.25,IRN,2663.0,Khuzestan,242.0,Iran (Islamic Republic Of),126721.0,Ahvaz,both,identical +174698,48.75,31.25,IRN,2663.0,Khuzestan,242.0,Iran (Islamic Republic Of),126721.0,Ahvaz,48.75,31.25,IRN,2663.0,Khuzestan,242.0,Iran (Islamic Republic Of),126721.0,Ahvaz,both,identical +174699,49.25,31.25,IRN,2663.0,Khuzestan,242.0,Iran (Islamic Republic Of),126721.0,Ahvaz,49.25,31.25,IRN,2663.0,Khuzestan,242.0,Iran (Islamic Republic Of),126721.0,Ahvaz,both,identical +174700,49.75,31.25,IRN,2663.0,Khuzestan,242.0,Iran (Islamic Republic Of),126741.0,Ramhormoz,49.75,31.25,IRN,2663.0,Khuzestan,242.0,Iran (Islamic Republic Of),126741.0,Ramhormoz,both,identical +174701,50.25,31.25,IRN,2664.0,Kohgiluyeh And Boyer-Ahmad,242.0,Iran (Islamic Republic Of),126751.0,Kohgeluyeh,50.25,31.25,IRN,2664.0,Kohgiluyeh And Boyer-Ahmad,242.0,Iran (Islamic Republic Of),126751.0,Kohgeluyeh,both,identical +174702,50.75,31.25,IRN,2664.0,Kohgiluyeh And Boyer-Ahmad,242.0,Iran (Islamic Republic Of),126753.0,Yasooj,50.75,31.25,IRN,2664.0,Kohgiluyeh And Boyer-Ahmad,242.0,Iran (Islamic Republic Of),126753.0,Yasooj,both,identical +174703,51.25,31.25,IRN,2652.0,Chaharmahal And Bakhtiari,242.0,Iran (Islamic Republic Of),126544.0,Lordegan,51.25,31.25,IRN,2652.0,Chaharmahal And Bakhtiari,242.0,Iran (Islamic Republic Of),126544.0,Lordegan,both,identical +174704,51.75,31.25,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126678.0,Semirom,51.75,31.25,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126678.0,Semirom,both,identical +174705,52.25,31.25,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126567.0,Abadeh,52.25,31.25,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126567.0,Abadeh,both,identical +174706,52.75,31.25,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126567.0,Abadeh,52.75,31.25,IRN,2654.0,Fars,242.0,Iran (Islamic Republic Of),126567.0,Abadeh,both,identical +174707,53.25,31.25,IRN,2679.0,Yazd,242.0,Iran (Islamic Republic Of),126923.0,Abarkuh,53.25,31.25,IRN,2679.0,Yazd,242.0,Iran (Islamic Republic Of),126923.0,Abarkuh,both,identical +174708,53.75,31.25,IRN,2679.0,Yazd,242.0,Iran (Islamic Republic Of),126931.0,Taft,53.75,31.25,IRN,2679.0,Yazd,242.0,Iran (Islamic Republic Of),126931.0,Taft,both,identical +174709,54.25,31.25,IRN,2679.0,Yazd,242.0,Iran (Islamic Republic Of),126929.0,Mehriz,54.25,31.25,IRN,2679.0,Yazd,242.0,Iran (Islamic Republic Of),126929.0,Mehriz,both,identical +174710,54.75,31.25,IRN,2679.0,Yazd,242.0,Iran (Islamic Republic Of),126929.0,Mehriz,54.75,31.25,IRN,2679.0,Yazd,242.0,Iran (Islamic Republic Of),126929.0,Mehriz,both,identical +174711,55.25,31.25,IRN,2679.0,Yazd,242.0,Iran (Islamic Republic Of),126926.0,Bafq,55.25,31.25,IRN,2679.0,Yazd,242.0,Iran (Islamic Republic Of),126926.0,Bafq,both,identical +174712,55.75,31.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126926.0,Bafq,55.75,31.25,IRN,2679.0,Yazd,242.0,Iran (Islamic Republic Of),126926.0,Bafq,both,admin_reallocation +174713,56.25,31.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126694.0,Kuhbonan,56.25,31.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126694.0,Kuhbonan,both,identical +174714,56.75,31.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126699.0,Ravar,56.75,31.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126699.0,Ravar,both,identical +174715,57.25,31.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126699.0,Ravar,57.25,31.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126699.0,Ravar,both,identical +174716,57.75,31.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126693.0,Kerman,57.75,31.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126693.0,Kerman,both,identical +174717,58.25,31.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126693.0,Kerman,58.25,31.25,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126693.0,Kerman,both,identical +174718,58.75,31.25,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126884.0,Nehbandan,58.75,31.25,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126884.0,Nehbandan,both,identical +174719,59.25,31.25,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126884.0,Nehbandan,59.25,31.25,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126884.0,Nehbandan,both,identical +174720,59.75,31.25,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126884.0,Nehbandan,59.75,31.25,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126884.0,Nehbandan,both,identical +174721,60.25,31.25,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126884.0,Nehbandan,60.25,31.25,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126884.0,Nehbandan,both,identical +174722,60.75,31.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126872.0,Nimrouz,60.75,31.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126872.0,Nimrouz,both,identical +174723,61.25,31.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126872.0,Nimrouz,61.25,31.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126872.0,Nimrouz,both,identical +174724,61.75,31.25,AFG,2421.0,Nimroz,223.0,Afghanistan,123987.0,Kang,61.75,31.25,IRN,2674.0,Sistan And Baluchestan,242.0,Iran (Islamic Republic Of),126865.0,Hirmand,both,country_reassignment +175301,-9.75,31.75,MAR,1479.0,Marrakech-Safi,147.0,Morocco,104271.0,Essaouira,-9.75,31.75,MAR,1479.0,Marrakech-Safi,147.0,Morocco,104271.0,Essaouira,both,identical +175302,-9.25,31.75,MAR,1479.0,Marrakech-Safi,147.0,Morocco,104271.0,Essaouira,-9.25,31.75,MAR,1479.0,Marrakech-Safi,147.0,Morocco,104271.0,Essaouira,both,identical +175303,-8.75,31.75,MAR,1479.0,Marrakech-Safi,147.0,Morocco,104269.0,Chichaoua,-8.75,31.75,MAR,1479.0,Marrakech-Safi,147.0,Morocco,104269.0,Chichaoua,both,identical +175304,-8.25,31.75,MAR,1479.0,Marrakech-Safi,147.0,Morocco,104272.0,Marrakech,-8.25,31.75,MAR,1479.0,Marrakech-Safi,147.0,Morocco,104272.0,Marrakech,both,identical +175305,-7.75,31.75,MAR,1479.0,Marrakech-Safi,147.0,Morocco,104273.0,Rehamna,-7.75,31.75,MAR,1479.0,Marrakech-Safi,147.0,Morocco,104273.0,Rehamna,both,identical +175306,-7.25,31.75,MAR,1479.0,Marrakech-Safi,147.0,Morocco,104270.0,El Kelâa Des Sraghna,-7.25,31.75,MAR,1479.0,Marrakech-Safi,147.0,Morocco,104270.0,El Kelâa Des Sraghna,both,identical +175307,-6.75,31.75,MAR,1474.0,Béni Mellal-Khénifra,147.0,Morocco,104236.0,Azilal,-6.75,31.75,MAR,1474.0,Béni Mellal-Khénifra,147.0,Morocco,104236.0,Azilal,both,identical +175308,-6.25,31.75,MAR,1474.0,Béni Mellal-Khénifra,147.0,Morocco,104236.0,Azilal,-6.25,31.75,MAR,1474.0,Béni Mellal-Khénifra,147.0,Morocco,104236.0,Azilal,both,identical +175309,-5.75,31.75,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104244.0,Tinghir,-5.75,31.75,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104244.0,Tinghir,both,identical +175310,-5.25,31.75,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104241.0,Errachidia,-5.25,31.75,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104241.0,Errachidia,both,identical +175311,-4.75,31.75,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104241.0,Errachidia,-4.75,31.75,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104241.0,Errachidia,both,identical +175312,-4.25,31.75,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104241.0,Errachidia,-4.25,31.75,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104241.0,Errachidia,both,identical +175313,-3.75,31.75,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104241.0,Errachidia,-3.75,31.75,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104241.0,Errachidia,both,identical +175314,-3.25,31.75,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104241.0,Errachidia,-3.25,31.75,DZA,1007.0,Bechar,101.0,Algeria,100237.0,Meridja,both,country_reassignment +175315,-2.75,31.75,DZA,1007.0,Bechar,101.0,Algeria,100232.0,Kenadsa,-2.75,31.75,DZA,1007.0,Bechar,101.0,Algeria,100232.0,Kenadsa,both,identical +175316,-2.25,31.75,DZA,1007.0,Bechar,101.0,Algeria,100224.0,Bechar,-2.25,31.75,DZA,1007.0,Bechar,101.0,Algeria,100224.0,Bechar,both,identical +175317,-1.75,31.75,DZA,1007.0,Bechar,101.0,Algeria,100224.0,Bechar,-1.75,31.75,DZA,1007.0,Bechar,101.0,Algeria,100224.0,Bechar,both,identical +175318,-1.25,31.75,DZA,1007.0,Bechar,101.0,Algeria,100227.0,Beni Ounif,-1.25,31.75,DZA,1007.0,Bechar,101.0,Algeria,100227.0,Beni Ounif,both,identical +175319,-0.75,31.75,DZA,1007.0,Bechar,101.0,Algeria,100227.0,Beni Ounif,-0.75,31.75,DZA,1007.0,Bechar,101.0,Algeria,100227.0,Beni Ounif,both,identical +175320,-0.25,31.75,DZA,1017.0,El Bayadh,101.0,Algeria,100557.0,El Bnoud,-0.25,31.75,DZA,1017.0,El Bayadh,101.0,Algeria,100557.0,El Bnoud,both,identical +175321,0.25,31.75,DZA,1017.0,El Bayadh,101.0,Algeria,100557.0,El Bnoud,0.25,31.75,DZA,1017.0,El Bayadh,101.0,Algeria,100557.0,El Bnoud,both,identical +175322,0.75,31.75,DZA,1017.0,El Bayadh,101.0,Algeria,100557.0,El Bnoud,0.75,31.75,DZA,1017.0,El Bayadh,101.0,Algeria,100557.0,El Bnoud,both,identical +175323,1.25,31.75,DZA,1017.0,El Bayadh,101.0,Algeria,100555.0,El Abiodh Sidi Cheikh,1.25,31.75,DZA,1017.0,El Bayadh,101.0,Algeria,100555.0,El Abiodh Sidi Cheikh,both,identical +175324,1.75,31.75,DZA,1017.0,El Bayadh,101.0,Algeria,100555.0,El Abiodh Sidi Cheikh,1.75,31.75,DZA,1017.0,El Bayadh,101.0,Algeria,100555.0,El Abiodh Sidi Cheikh,both,identical +175325,2.25,31.75,DZA,1020.0,Ghardaia,101.0,Algeria,100631.0,Golea,2.25,31.75,DZA,1020.0,Ghardaia,101.0,Algeria,100631.0,Golea,both,identical +175326,2.75,31.75,DZA,1020.0,Ghardaia,101.0,Algeria,100631.0,Golea,2.75,31.75,DZA,1020.0,Ghardaia,101.0,Algeria,100631.0,Golea,both,identical +175327,3.25,31.75,DZA,1020.0,Ghardaia,101.0,Algeria,100633.0,Hassi Lefhal,3.25,31.75,DZA,1020.0,Ghardaia,101.0,Algeria,100633.0,Hassi Lefhal,both,identical +175328,3.75,31.75,DZA,1020.0,Ghardaia,101.0,Algeria,100633.0,Hassi Lefhal,3.75,31.75,DZA,1020.0,Ghardaia,101.0,Algeria,100633.0,Hassi Lefhal,both,identical +175329,4.25,31.75,DZA,1020.0,Ghardaia,101.0,Algeria,100629.0,El Mansoura,4.25,31.75,DZA,1020.0,Ghardaia,101.0,Algeria,100629.0,El Mansoura,both,identical +175330,4.75,31.75,DZA,1033.0,Ouargla,101.0,Algeria,101023.0,Rouissat,4.75,31.75,DZA,1033.0,Ouargla,101.0,Algeria,101023.0,Rouissat,both,identical +175331,5.25,31.75,DZA,1033.0,Ouargla,101.0,Algeria,101023.0,Rouissat,5.25,31.75,DZA,1033.0,Ouargla,101.0,Algeria,101023.0,Rouissat,both,identical +175332,5.75,31.75,DZA,1033.0,Ouargla,101.0,Algeria,101017.0,Hassi Messaoud,5.75,31.75,DZA,1033.0,Ouargla,101.0,Algeria,101017.0,Hassi Messaoud,both,identical +175333,6.25,31.75,DZA,1033.0,Ouargla,101.0,Algeria,101017.0,Hassi Messaoud,6.25,31.75,DZA,1033.0,Ouargla,101.0,Algeria,101017.0,Hassi Messaoud,both,identical +175334,6.75,31.75,DZA,1033.0,Ouargla,101.0,Algeria,101014.0,El Borma,6.75,31.75,DZA,1033.0,Ouargla,101.0,Algeria,101014.0,El Borma,both,identical +175335,7.25,31.75,DZA,1033.0,Ouargla,101.0,Algeria,101014.0,El Borma,7.25,31.75,DZA,1033.0,Ouargla,101.0,Algeria,101014.0,El Borma,both,identical +175336,7.75,31.75,DZA,1033.0,Ouargla,101.0,Algeria,101014.0,El Borma,7.75,31.75,DZA,1033.0,Ouargla,101.0,Algeria,101014.0,El Borma,both,identical +175337,8.25,31.75,DZA,1033.0,Ouargla,101.0,Algeria,101014.0,El Borma,8.25,31.75,DZA,1033.0,Ouargla,101.0,Algeria,101014.0,El Borma,both,identical +175338,8.75,31.75,DZA,1033.0,Ouargla,101.0,Algeria,101014.0,El Borma,8.75,31.75,DZA,1033.0,Ouargla,101.0,Algeria,101014.0,El Borma,both,identical +175339,9.25,31.75,TUN,1671.0,Tataouine,164.0,Tunisia,106209.0,Remada,9.25,31.75,TUN,1671.0,Tataouine,164.0,Tunisia,106209.0,Remada,both,identical +175340,9.75,31.75,TUN,1671.0,Tataouine,164.0,Tunisia,106209.0,Remada,9.75,31.75,TUN,1671.0,Tataouine,164.0,Tunisia,106209.0,Remada,both,identical +175341,10.25,31.75,TUN,1671.0,Tataouine,164.0,Tunisia,106207.0,Dhehiba,10.25,31.75,TUN,1671.0,Tataouine,164.0,Tunisia,106207.0,Dhehiba,both,identical +175342,10.75,31.75,LBY,1427.0,West,140.0,Libya,104050.0,Nalut,10.75,31.75,LBY,1427.0,West,140.0,Libya,104050.0,Nalut,both,identical +175343,11.25,31.75,LBY,1427.0,West,140.0,Libya,104050.0,Nalut,11.25,31.75,LBY,1427.0,West,140.0,Libya,104050.0,Nalut,both,identical +175344,11.75,31.75,LBY,1427.0,West,140.0,Libya,104045.0,Al Jabal Al Gharbi,11.75,31.75,LBY,1427.0,West,140.0,Libya,104045.0,Al Jabal Al Gharbi,both,identical +175345,12.25,31.75,LBY,1427.0,West,140.0,Libya,104045.0,Al Jabal Al Gharbi,12.25,31.75,LBY,1427.0,West,140.0,Libya,104045.0,Al Jabal Al Gharbi,both,identical +175346,12.75,31.75,LBY,1427.0,West,140.0,Libya,104045.0,Al Jabal Al Gharbi,12.75,31.75,LBY,1427.0,West,140.0,Libya,104045.0,Al Jabal Al Gharbi,both,identical +175347,13.25,31.75,LBY,1427.0,West,140.0,Libya,104045.0,Al Jabal Al Gharbi,13.25,31.75,LBY,1427.0,West,140.0,Libya,104045.0,Al Jabal Al Gharbi,both,identical +175348,13.75,31.75,LBY,1427.0,West,140.0,Libya,104049.0,Misrata,13.75,31.75,LBY,1427.0,West,140.0,Libya,104049.0,Misrata,both,identical +175349,14.25,31.75,LBY,1427.0,West,140.0,Libya,104049.0,Misrata,14.25,31.75,LBY,1427.0,West,140.0,Libya,104049.0,Misrata,both,identical +175350,14.75,31.75,LBY,1427.0,West,140.0,Libya,104049.0,Misrata,14.75,31.75,LBY,1427.0,West,140.0,Libya,104049.0,Misrata,both,identical +175351,15.25,31.75,LBY,1427.0,West,140.0,Libya,104049.0,Misrata,15.25,31.75,LBY,1427.0,West,140.0,Libya,104049.0,Misrata,both,identical +175352,15.75,31.75,LBY,1427.0,West,140.0,Libya,104049.0,Misrata,15.75,31.75,LBY,1427.0,West,140.0,Libya,104049.0,Misrata,both,identical +175360,19.75,31.75,LBY,1425.0,East,140.0,Libya,104035.0,Benghazi,19.75,31.75,LBY,1425.0,East,140.0,Libya,104035.0,Benghazi,both,identical +175361,20.25,31.75,LBY,1425.0,East,140.0,Libya,104035.0,Benghazi,20.25,31.75,LBY,1425.0,East,140.0,Libya,104035.0,Benghazi,both,identical +175362,20.75,31.75,LBY,1425.0,East,140.0,Libya,104035.0,Benghazi,20.75,31.75,LBY,1425.0,East,140.0,Libya,104035.0,Benghazi,both,identical +175363,21.25,31.75,LBY,1425.0,East,140.0,Libya,104034.0,Almarj,21.25,31.75,LBY,1425.0,East,140.0,Libya,104034.0,Almarj,both,identical +175364,21.75,31.75,LBY,1425.0,East,140.0,Libya,104032.0,Al Jabal Al Akhdar,21.75,31.75,LBY,1425.0,East,140.0,Libya,104032.0,Al Jabal Al Akhdar,both,identical +175365,22.25,31.75,LBY,1425.0,East,140.0,Libya,104036.0,Derna,22.25,31.75,LBY,1425.0,East,140.0,Libya,104036.0,Derna,both,identical +175366,22.75,31.75,LBY,1425.0,East,140.0,Libya,104036.0,Derna,22.75,31.75,LBY,1425.0,East,140.0,Libya,104036.0,Derna,both,identical +175367,23.25,31.75,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,23.25,31.75,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,both,identical +175368,23.75,31.75,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,23.75,31.75,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,both,identical +175369,24.25,31.75,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,24.25,31.75,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,both,identical +175370,24.75,31.75,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,24.75,31.75,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,both,identical +175371,25.25,31.75,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,25.25,31.75,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,both,identical +175372,25.75,31.75,EGY,1260.0,Matrouh,120.0,Egypt,102763.0,Sidi Barani,25.75,31.75,EGY,1260.0,Matrouh,120.0,Egypt,102763.0,Sidi Barani,both,identical +175373,26.25,31.75,EGY,1260.0,Matrouh,120.0,Egypt,102763.0,Sidi Barani,26.25,31.75,EGY,1260.0,Matrouh,120.0,Egypt,102763.0,Sidi Barani,both,identical +175381,30.25,31.75,EGY,1257.0,Kafr El-Shikh,120.0,Egypt,102734.0,Mitubas,30.25,31.75,EGY,1257.0,Kafr El-Shikh,120.0,Egypt,102734.0,Mitubas,both,identical +175382,30.75,31.75,EGY,1257.0,Kafr El-Shikh,120.0,Egypt,102726.0,Al Hamul,30.75,31.75,EGY,1257.0,Kafr El-Shikh,120.0,Egypt,102726.0,Al Hamul,both,identical +175383,31.25,31.75,EGY,1257.0,Kafr El-Shikh,120.0,Egypt,102728.0,Burullus,31.25,31.75,EGY,1257.0,Kafr El-Shikh,120.0,Egypt,102728.0,Burullus,both,identical +175384,31.75,31.75,EGY,1252.0,Damietta,120.0,Egypt,102669.0,Dumyat,31.75,31.75,EGY,1252.0,Damietta,120.0,Egypt,102669.0,Dumyat,both,identical +175389,34.25,31.75,PSE,2910.0,Gaza Strip,261.0,Palestine,130233.0,Gaza,34.25,31.75,PSE,2910.0,Gaza Strip,261.0,Palestine,130233.0,Gaza,both,identical +175390,34.75,31.75,ISR,2703.0,Southern District,244.0,Israel,127046.0,Administrative Unit Not Available,34.75,31.75,ISR,2703.0,Southern District,244.0,Israel,127046.0,Administrative Unit Not Available,both,identical +175391,35.25,31.75,PSE,2911.0,West Bank,261.0,Palestine,130237.0,Bethlehem,35.25,31.75,PSE,2911.0,West Bank,261.0,Palestine,130237.0,Bethlehem,both,identical +175392,35.75,31.75,JOR,2754.0,Amman,247.0,Jordan,128986.0,Madaba,35.75,31.75,JOR,2761.0,Madaba,247.0,Jordan,128986.0,Madaba,both,admin_reallocation +175393,36.25,31.75,JOR,2754.0,Amman,247.0,Jordan,128943.0,Al-Jeeza,36.25,31.75,JOR,2754.0,Amman,247.0,Jordan,128943.0,Al-Jeeza,both,identical +175394,36.75,31.75,JOR,2764.0,Zarqa,247.0,Jordan,128997.0,Al-Hashimiya,36.75,31.75,JOR,2764.0,Zarqa,247.0,Jordan,128997.0,Al-Hashimiya,both,identical +175395,37.25,31.75,JOR,2764.0,Zarqa,247.0,Jordan,128997.0,Al-Hashimiya,37.25,31.75,JOR,2764.0,Zarqa,247.0,Jordan,128997.0,Al-Hashimiya,both,identical +175396,37.75,31.75,JOR,2762.0,Mafraq,247.0,Jordan,128988.0,Al-Ruwaished,37.75,31.75,JOR,2762.0,Mafraq,247.0,Jordan,128988.0,Al-Ruwaished,both,identical +175397,38.25,31.75,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130577.0,Turayf,38.25,31.75,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130577.0,Turayf,both,identical +175398,38.75,31.75,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130577.0,Turayf,38.75,31.75,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130577.0,Turayf,both,identical +175399,39.25,31.75,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130577.0,Turayf,39.25,31.75,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130577.0,Turayf,both,identical +175400,39.75,31.75,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130577.0,Turayf,39.75,31.75,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130577.0,Turayf,both,identical +175401,40.25,31.75,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130575.0,Arar,40.25,31.75,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130575.0,Arar,both,identical +175402,40.75,31.75,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130575.0,Arar,40.75,31.75,SAU,2964.0,Northern Borders,266.0,Saudi Arabia,130575.0,Arar,both,identical +175403,41.25,31.75,IRQ,2681.0,Al-Anbar,243.0,Iraq,126944.0,Al-Rutba,41.25,31.75,IRQ,2681.0,Al-Anbar,243.0,Iraq,126944.0,Al-Rutba,both,identical +175404,41.75,31.75,IRQ,2681.0,Al-Anbar,243.0,Iraq,126944.0,Al-Rutba,41.75,31.75,IRQ,2681.0,Al-Anbar,243.0,Iraq,126944.0,Al-Rutba,both,identical +175405,42.25,31.75,IRQ,2681.0,Al-Anbar,243.0,Iraq,126944.0,Al-Rutba,42.25,31.75,IRQ,2681.0,Al-Anbar,243.0,Iraq,126944.0,Al-Rutba,both,identical +175406,42.75,31.75,IRQ,2684.0,Al-Najaf,243.0,Iraq,126961.0,Al-Najaf,42.75,31.75,IRQ,2684.0,Al-Najaf,243.0,Iraq,126961.0,Al-Najaf,both,identical +175407,43.25,31.75,IRQ,2684.0,Al-Najaf,243.0,Iraq,126961.0,Al-Najaf,43.25,31.75,IRQ,2684.0,Al-Najaf,243.0,Iraq,126961.0,Al-Najaf,both,identical +175408,43.75,31.75,IRQ,2684.0,Al-Najaf,243.0,Iraq,126961.0,Al-Najaf,43.75,31.75,IRQ,2684.0,Al-Najaf,243.0,Iraq,126961.0,Al-Najaf,both,identical +175409,44.25,31.75,IRQ,2684.0,Al-Najaf,243.0,Iraq,126961.0,Al-Najaf,44.25,31.75,IRQ,2684.0,Al-Najaf,243.0,Iraq,126961.0,Al-Najaf,both,identical +175410,44.75,31.75,IRQ,2685.0,Al-Qadissiya,243.0,Iraq,126964.0,Al-Hamza,44.75,31.75,IRQ,2685.0,Al-Qadissiya,243.0,Iraq,126964.0,Al-Hamza,both,identical +175411,45.25,31.75,IRQ,2685.0,Al-Qadissiya,243.0,Iraq,126956.0,Al-Rumaitha,45.25,31.75,IRQ,2683.0,Al-Muthanna,243.0,Iraq,126956.0,Al-Rumaitha,both,admin_reallocation +175412,45.75,31.75,IRQ,2697.0,Thi Qar,243.0,Iraq,127034.0,Al-Rifai,45.75,31.75,IRQ,2697.0,Thi Qar,243.0,Iraq,127034.0,Al-Rifai,both,identical +175413,46.25,31.75,IRQ,2697.0,Thi Qar,243.0,Iraq,127034.0,Al-Rifai,46.25,31.75,IRQ,2697.0,Thi Qar,243.0,Iraq,127034.0,Al-Rifai,both,identical +175414,46.75,31.75,IRQ,2694.0,Maysan,243.0,Iraq,127012.0,Al-Maimouna,46.75,31.75,IRQ,2694.0,Maysan,243.0,Iraq,127012.0,Al-Maimouna,both,identical +175415,47.25,31.75,IRQ,2694.0,Maysan,243.0,Iraq,127011.0,Al-Kahla,47.25,31.75,IRQ,2694.0,Maysan,243.0,Iraq,127011.0,Al-Kahla,both,identical +175416,47.75,31.75,IRQ,2694.0,Maysan,243.0,Iraq,127011.0,Al-Kahla,47.75,31.75,IRQ,2694.0,Maysan,243.0,Iraq,127011.0,Al-Kahla,both,identical +175417,48.25,31.75,IRN,2663.0,Khuzestan,242.0,Iran (Islamic Republic Of),126744.0,Shush,48.25,31.75,IRN,2663.0,Khuzestan,242.0,Iran (Islamic Republic Of),126744.0,Shush,both,identical +175418,48.75,31.75,IRN,2663.0,Khuzestan,242.0,Iran (Islamic Republic Of),126745.0,Shushtar,48.75,31.75,IRN,2663.0,Khuzestan,242.0,Iran (Islamic Republic Of),126745.0,Shushtar,both,identical +175419,49.25,31.75,IRN,2663.0,Khuzestan,242.0,Iran (Islamic Republic Of),126739.0,Masjed-Soleyman,49.25,31.75,IRN,2663.0,Khuzestan,242.0,Iran (Islamic Republic Of),126739.0,Masjed-Soleyman,both,identical +175420,49.75,31.75,IRN,2663.0,Khuzestan,242.0,Iran (Islamic Republic Of),126734.0,Izeh,49.75,31.75,IRN,2663.0,Khuzestan,242.0,Iran (Islamic Republic Of),126734.0,Izeh,both,identical +175421,50.25,31.75,IRN,2663.0,Khuzestan,242.0,Iran (Islamic Republic Of),126734.0,Izeh,50.25,31.75,IRN,2663.0,Khuzestan,242.0,Iran (Islamic Republic Of),126734.0,Izeh,both,identical +175422,50.75,31.75,IRN,2652.0,Chaharmahal And Bakhtiari,242.0,Iran (Islamic Republic Of),126544.0,Lordegan,50.75,31.75,IRN,2652.0,Chaharmahal And Bakhtiari,242.0,Iran (Islamic Republic Of),126544.0,Lordegan,both,identical +175423,51.25,31.75,IRN,2652.0,Chaharmahal And Bakhtiari,242.0,Iran (Islamic Republic Of),126540.0,Borujen,51.25,31.75,IRN,2652.0,Chaharmahal And Bakhtiari,242.0,Iran (Islamic Republic Of),126540.0,Borujen,both,identical +175424,51.75,31.75,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126680.0,Shahreza,51.75,31.75,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126680.0,Shahreza,both,identical +175425,52.25,31.75,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126668.0,Isfahan,52.25,31.75,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126668.0,Isfahan,both,identical +175426,52.75,31.75,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126668.0,Isfahan,52.75,31.75,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126668.0,Isfahan,both,identical +175427,53.25,31.75,IRN,2679.0,Yazd,242.0,Iran (Islamic Republic Of),126930.0,Meybod,53.25,31.75,IRN,2679.0,Yazd,242.0,Iran (Islamic Republic Of),126930.0,Meybod,both,identical +175428,53.75,31.75,IRN,2679.0,Yazd,242.0,Iran (Islamic Republic Of),126931.0,Taft,53.75,31.75,IRN,2679.0,Yazd,242.0,Iran (Islamic Republic Of),126931.0,Taft,both,identical +175429,54.25,31.75,IRN,2679.0,Yazd,242.0,Iran (Islamic Republic Of),126932.0,Yazd,54.25,31.75,IRN,2679.0,Yazd,242.0,Iran (Islamic Republic Of),126932.0,Yazd,both,identical +175430,54.75,31.75,IRN,2679.0,Yazd,242.0,Iran (Islamic Republic Of),126929.0,Mehriz,54.75,31.75,IRN,2679.0,Yazd,242.0,Iran (Islamic Republic Of),126929.0,Mehriz,both,identical +175431,55.25,31.75,IRN,2679.0,Yazd,242.0,Iran (Islamic Republic Of),126926.0,Bafq,55.25,31.75,IRN,2679.0,Yazd,242.0,Iran (Islamic Republic Of),126926.0,Bafq,both,identical +175432,55.75,31.75,IRN,2679.0,Yazd,242.0,Iran (Islamic Republic Of),126926.0,Bafq,55.75,31.75,IRN,2679.0,Yazd,242.0,Iran (Islamic Republic Of),126926.0,Bafq,both,identical +175433,56.25,31.75,IRN,2679.0,Yazd,242.0,Iran (Islamic Republic Of),126927.0,Bahabad,56.25,31.75,IRN,2679.0,Yazd,242.0,Iran (Islamic Republic Of),126927.0,Bahabad,both,identical +175434,56.75,31.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126699.0,Ravar,56.75,31.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126699.0,Ravar,both,identical +175435,57.25,31.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126699.0,Ravar,57.25,31.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126699.0,Ravar,both,identical +175436,57.75,31.75,IRN,2661.0,Kerman,242.0,Iran (Islamic Republic Of),126888.0,Tabas,57.75,31.75,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126888.0,Tabas,both,admin_reallocation +175437,58.25,31.75,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126883.0,Khusf,58.25,31.75,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126883.0,Khusf,both,identical +175438,58.75,31.75,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126883.0,Khusf,58.75,31.75,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126883.0,Khusf,both,identical +175439,59.25,31.75,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126884.0,Nehbandan,59.25,31.75,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126884.0,Nehbandan,both,identical +175440,59.75,31.75,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126884.0,Nehbandan,59.75,31.75,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126884.0,Nehbandan,both,identical +175441,60.25,31.75,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126884.0,Nehbandan,60.25,31.75,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126884.0,Nehbandan,both,identical +175442,60.75,31.75,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126884.0,Nehbandan,60.75,31.75,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126884.0,Nehbandan,both,identical +176022,-9.25,32.25,MAR,1479.0,Marrakech-Safi,147.0,Morocco,104274.0,Safi,-9.25,32.25,MAR,1479.0,Marrakech-Safi,147.0,Morocco,104274.0,Safi,both,identical +176023,-8.75,32.25,MAR,1479.0,Marrakech-Safi,147.0,Morocco,104274.0,Safi,-8.75,32.25,MAR,1479.0,Marrakech-Safi,147.0,Morocco,104274.0,Safi,both,identical +176024,-8.25,32.25,MAR,1479.0,Marrakech-Safi,147.0,Morocco,104273.0,Rehamna,-8.25,32.25,MAR,1479.0,Marrakech-Safi,147.0,Morocco,104273.0,Rehamna,both,identical +176025,-7.75,32.25,MAR,1479.0,Marrakech-Safi,147.0,Morocco,104273.0,Rehamna,-7.75,32.25,MAR,1479.0,Marrakech-Safi,147.0,Morocco,104273.0,Rehamna,both,identical +176026,-7.25,32.25,MAR,1479.0,Marrakech-Safi,147.0,Morocco,104270.0,El Kelâa Des Sraghna,-7.25,32.25,MAR,1479.0,Marrakech-Safi,147.0,Morocco,104270.0,El Kelâa Des Sraghna,both,identical +176027,-6.75,32.25,MAR,1474.0,Béni Mellal-Khénifra,147.0,Morocco,104238.0,Fquih Ben Salah,-6.75,32.25,MAR,1474.0,Béni Mellal-Khénifra,147.0,Morocco,104238.0,Fquih Ben Salah,both,identical +176028,-6.25,32.25,MAR,1474.0,Béni Mellal-Khénifra,147.0,Morocco,104236.0,Azilal,-6.25,32.25,MAR,1474.0,Béni Mellal-Khénifra,147.0,Morocco,104236.0,Azilal,both,identical +176029,-5.75,32.25,MAR,1474.0,Béni Mellal-Khénifra,147.0,Morocco,104237.0,Béni Mellal,-5.75,32.25,MAR,1474.0,Béni Mellal-Khénifra,147.0,Morocco,104237.0,Béni Mellal,both,identical +176030,-5.25,32.25,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104242.0,Midelt,-5.25,32.25,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104242.0,Midelt,both,identical +176031,-4.75,32.25,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104242.0,Midelt,-4.75,32.25,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104242.0,Midelt,both,identical +176032,-4.25,32.25,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104242.0,Midelt,-4.25,32.25,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104242.0,Midelt,both,identical +176033,-3.75,32.25,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104278.0,Figuig,-3.75,32.25,MAR,1480.0,Oriental,147.0,Morocco,104278.0,Figuig,both,admin_reallocation +176034,-3.25,32.25,MAR,1480.0,Oriental,147.0,Morocco,104278.0,Figuig,-3.25,32.25,MAR,1480.0,Oriental,147.0,Morocco,104278.0,Figuig,both,identical +176035,-2.75,32.25,MAR,1480.0,Oriental,147.0,Morocco,104278.0,Figuig,-2.75,32.25,MAR,1480.0,Oriental,147.0,Morocco,104278.0,Figuig,both,identical +176036,-2.25,32.25,MAR,1480.0,Oriental,147.0,Morocco,104278.0,Figuig,-2.25,32.25,MAR,1480.0,Oriental,147.0,Morocco,104278.0,Figuig,both,identical +176037,-1.75,32.25,MAR,1480.0,Oriental,147.0,Morocco,104278.0,Figuig,-1.75,32.25,MAR,1480.0,Oriental,147.0,Morocco,104278.0,Figuig,both,identical +176038,-1.25,32.25,DZA,1007.0,Bechar,101.0,Algeria,100227.0,Beni Ounif,-1.25,32.25,MAR,1480.0,Oriental,147.0,Morocco,104278.0,Figuig,both,country_reassignment +176039,-0.75,32.25,DZA,1031.0,Naama,101.0,Algeria,100227.0,Beni Ounif,-0.75,32.25,DZA,1007.0,Bechar,101.0,Algeria,100227.0,Beni Ounif,both,admin_reallocation +176040,-0.25,32.25,DZA,1017.0,El Bayadh,101.0,Algeria,100557.0,El Bnoud,-0.25,32.25,DZA,1017.0,El Bayadh,101.0,Algeria,100557.0,El Bnoud,both,identical +176041,0.25,32.25,DZA,1017.0,El Bayadh,101.0,Algeria,100557.0,El Bnoud,0.25,32.25,DZA,1017.0,El Bayadh,101.0,Algeria,100557.0,El Bnoud,both,identical +176042,0.75,32.25,DZA,1017.0,El Bayadh,101.0,Algeria,100555.0,El Abiodh Sidi Cheikh,0.75,32.25,DZA,1017.0,El Bayadh,101.0,Algeria,100555.0,El Abiodh Sidi Cheikh,both,identical +176043,1.25,32.25,DZA,1017.0,El Bayadh,101.0,Algeria,100555.0,El Abiodh Sidi Cheikh,1.25,32.25,DZA,1017.0,El Bayadh,101.0,Algeria,100555.0,El Abiodh Sidi Cheikh,both,identical +176044,1.75,32.25,DZA,1017.0,El Bayadh,101.0,Algeria,100552.0,Brezina,1.75,32.25,DZA,1017.0,El Bayadh,101.0,Algeria,100552.0,Brezina,both,identical +176045,2.25,32.25,DZA,1017.0,El Bayadh,101.0,Algeria,100552.0,Brezina,2.25,32.25,DZA,1017.0,El Bayadh,101.0,Algeria,100552.0,Brezina,both,identical +176046,2.75,32.25,DZA,1020.0,Ghardaia,101.0,Algeria,100635.0,Sebseb,2.75,32.25,DZA,1020.0,Ghardaia,101.0,Algeria,100635.0,Sebseb,both,identical +176047,3.25,32.25,DZA,1020.0,Ghardaia,101.0,Algeria,100634.0,Metlili,3.25,32.25,DZA,1020.0,Ghardaia,101.0,Algeria,100634.0,Metlili,both,identical +176048,3.75,32.25,DZA,1020.0,Ghardaia,101.0,Algeria,100634.0,Metlili,3.75,32.25,DZA,1020.0,Ghardaia,101.0,Algeria,100634.0,Metlili,both,identical +176049,4.25,32.25,DZA,1020.0,Ghardaia,101.0,Algeria,100636.0,Zelfana,4.25,32.25,DZA,1020.0,Ghardaia,101.0,Algeria,100636.0,Zelfana,both,identical +176050,4.75,32.25,DZA,1033.0,Ouargla,101.0,Algeria,101022.0,Ouargla,4.75,32.25,DZA,1033.0,Ouargla,101.0,Algeria,101022.0,Ouargla,both,identical +176051,5.25,32.25,DZA,1033.0,Ouargla,101.0,Algeria,101020.0,N'Goussa,5.25,32.25,DZA,1033.0,Ouargla,101.0,Algeria,101020.0,N'Goussa,both,identical +176052,5.75,32.25,DZA,1033.0,Ouargla,101.0,Algeria,101016.0,Hassi Ben Abdellah,5.75,32.25,DZA,1033.0,Ouargla,101.0,Algeria,101016.0,Hassi Ben Abdellah,both,identical +176053,6.25,32.25,DZA,1033.0,Ouargla,101.0,Algeria,101017.0,Hassi Messaoud,6.25,32.25,DZA,1033.0,Ouargla,101.0,Algeria,101017.0,Hassi Messaoud,both,identical +176054,6.75,32.25,DZA,1033.0,Ouargla,101.0,Algeria,101012.0,Benaceur,6.75,32.25,DZA,1033.0,Ouargla,101.0,Algeria,101012.0,Benaceur,both,identical +176055,7.25,32.25,DZA,1018.0,El Oued,101.0,Algeria,100574.0,Douar El Ma,7.25,32.25,DZA,1018.0,El Oued,101.0,Algeria,100574.0,Douar El Ma,both,identical +176056,7.75,32.25,DZA,1018.0,El Oued,101.0,Algeria,100574.0,Douar El Ma,7.75,32.25,DZA,1018.0,El Oued,101.0,Algeria,100574.0,Douar El Ma,both,identical +176057,8.25,32.25,DZA,1018.0,El Oued,101.0,Algeria,100574.0,Douar El Ma,8.25,32.25,DZA,1018.0,El Oued,101.0,Algeria,100574.0,Douar El Ma,both,identical +176058,8.75,32.25,DZA,1018.0,El Oued,101.0,Algeria,100574.0,Douar El Ma,8.75,32.25,TUN,1671.0,Tataouine,164.0,Tunisia,106209.0,Remada,both,country_reassignment +176059,9.25,32.25,TUN,1671.0,Tataouine,164.0,Tunisia,106209.0,Remada,9.25,32.25,TUN,1671.0,Tataouine,164.0,Tunisia,106209.0,Remada,both,identical +176060,9.75,32.25,TUN,1671.0,Tataouine,164.0,Tunisia,106209.0,Remada,9.75,32.25,TUN,1671.0,Tataouine,164.0,Tunisia,106209.0,Remada,both,identical +176061,10.25,32.25,TUN,1671.0,Tataouine,164.0,Tunisia,106209.0,Remada,10.25,32.25,TUN,1671.0,Tataouine,164.0,Tunisia,106209.0,Remada,both,identical +176062,10.75,32.25,TUN,1671.0,Tataouine,164.0,Tunisia,106207.0,Dhehiba,10.75,32.25,TUN,1671.0,Tataouine,164.0,Tunisia,106207.0,Dhehiba,both,identical +176063,11.25,32.25,LBY,1427.0,West,140.0,Libya,104050.0,Nalut,11.25,32.25,LBY,1427.0,West,140.0,Libya,104050.0,Nalut,both,identical +176064,11.75,32.25,LBY,1427.0,West,140.0,Libya,104053.0,Zwara,11.75,32.25,LBY,1427.0,West,140.0,Libya,104053.0,Zwara,both,identical +176065,12.25,32.25,LBY,1427.0,West,140.0,Libya,104045.0,Al Jabal Al Gharbi,12.25,32.25,LBY,1427.0,West,140.0,Libya,104045.0,Al Jabal Al Gharbi,both,identical +176066,12.75,32.25,LBY,1427.0,West,140.0,Libya,104045.0,Al Jabal Al Gharbi,12.75,32.25,LBY,1427.0,West,140.0,Libya,104045.0,Al Jabal Al Gharbi,both,identical +176067,13.25,32.25,LBY,1427.0,West,140.0,Libya,104045.0,Al Jabal Al Gharbi,13.25,32.25,LBY,1427.0,West,140.0,Libya,104045.0,Al Jabal Al Gharbi,both,identical +176068,13.75,32.25,LBY,1427.0,West,140.0,Libya,104047.0,Almargeb,13.75,32.25,LBY,1427.0,West,140.0,Libya,104047.0,Almargeb,both,identical +176069,14.25,32.25,LBY,1427.0,West,140.0,Libya,104049.0,Misrata,14.25,32.25,LBY,1427.0,West,140.0,Libya,104049.0,Misrata,both,identical +176070,14.75,32.25,LBY,1427.0,West,140.0,Libya,104049.0,Misrata,14.75,32.25,LBY,1427.0,West,140.0,Libya,104049.0,Misrata,both,identical +176071,15.25,32.25,LBY,1427.0,West,140.0,Libya,104049.0,Misrata,15.25,32.25,LBY,1427.0,West,140.0,Libya,104049.0,Misrata,both,identical +176080,19.75,32.25,LBY,1425.0,East,140.0,Libya,104035.0,Benghazi,19.75,32.25,LBY,1425.0,East,140.0,Libya,104035.0,Benghazi,both,identical +176081,20.25,32.25,LBY,1425.0,East,140.0,Libya,104035.0,Benghazi,20.25,32.25,LBY,1425.0,East,140.0,Libya,104035.0,Benghazi,both,identical +176082,20.75,32.25,LBY,1425.0,East,140.0,Libya,104034.0,Almarj,20.75,32.25,LBY,1425.0,East,140.0,Libya,104034.0,Almarj,both,identical +176083,21.25,32.25,LBY,1425.0,East,140.0,Libya,104034.0,Almarj,21.25,32.25,LBY,1425.0,East,140.0,Libya,104034.0,Almarj,both,identical +176084,21.75,32.25,LBY,1425.0,East,140.0,Libya,104032.0,Al Jabal Al Akhdar,21.75,32.25,LBY,1425.0,East,140.0,Libya,104032.0,Al Jabal Al Akhdar,both,identical +176085,22.25,32.25,LBY,1425.0,East,140.0,Libya,104036.0,Derna,22.25,32.25,LBY,1425.0,East,140.0,Libya,104036.0,Derna,both,identical +176086,22.75,32.25,LBY,1425.0,East,140.0,Libya,104036.0,Derna,22.75,32.25,LBY,1425.0,East,140.0,Libya,104036.0,Derna,both,identical +176087,23.25,32.25,LBY,1425.0,East,140.0,Libya,104036.0,Derna,23.25,32.25,LBY,1425.0,East,140.0,Libya,104036.0,Derna,both,identical +176088,23.75,32.25,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,23.75,32.25,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,both,identical +176089,24.25,32.25,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,24.25,32.25,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,both,identical +176090,24.75,32.25,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,24.75,32.25,LBY,1425.0,East,140.0,Libya,104038.0,Tobruk,both,identical +176110,34.75,32.25,ISR,2699.0,Central District,244.0,Israel,127042.0,Administrative Unit Not Available,34.75,32.25,ISR,2699.0,Central District,244.0,Israel,127042.0,Administrative Unit Not Available,both,identical +176111,35.25,32.25,PSE,2911.0,West Bank,261.0,Palestine,130242.0,Nablus,35.25,32.25,PSE,2911.0,West Bank,261.0,Palestine,130242.0,Nablus,both,identical +176112,35.75,32.25,JOR,2756.0,Balqa,247.0,Jordan,128972.0,Jarash,35.75,32.25,JOR,2758.0,Jarash,247.0,Jordan,128972.0,Jarash,both,admin_reallocation +176113,36.25,32.25,JOR,2762.0,Mafraq,247.0,Jordan,128990.0,Mafraq,36.25,32.25,JOR,2762.0,Mafraq,247.0,Jordan,128990.0,Mafraq,both,identical +176114,36.75,32.25,JOR,2762.0,Mafraq,247.0,Jordan,128988.0,Al-Ruwaished,36.75,32.25,JOR,2762.0,Mafraq,247.0,Jordan,128988.0,Al-Ruwaished,both,identical +176115,37.25,32.25,JOR,2762.0,Mafraq,247.0,Jordan,128988.0,Al-Ruwaished,37.25,32.25,JOR,2762.0,Mafraq,247.0,Jordan,128988.0,Al-Ruwaished,both,identical +176116,37.75,32.25,JOR,2762.0,Mafraq,247.0,Jordan,128988.0,Al-Ruwaished,37.75,32.25,JOR,2762.0,Mafraq,247.0,Jordan,128988.0,Al-Ruwaished,both,identical +176117,38.25,32.25,JOR,2762.0,Mafraq,247.0,Jordan,128988.0,Al-Ruwaished,38.25,32.25,JOR,2762.0,Mafraq,247.0,Jordan,128988.0,Al-Ruwaished,both,identical +176118,38.75,32.25,JOR,2762.0,Mafraq,247.0,Jordan,128988.0,Al-Ruwaished,38.75,32.25,JOR,2762.0,Mafraq,247.0,Jordan,128988.0,Al-Ruwaished,both,identical +176119,39.25,32.25,IRQ,2681.0,Al-Anbar,243.0,Iraq,126944.0,Al-Rutba,39.25,32.25,IRQ,2681.0,Al-Anbar,243.0,Iraq,126944.0,Al-Rutba,both,identical +176120,39.75,32.25,IRQ,2681.0,Al-Anbar,243.0,Iraq,126944.0,Al-Rutba,39.75,32.25,IRQ,2681.0,Al-Anbar,243.0,Iraq,126944.0,Al-Rutba,both,identical +176121,40.25,32.25,IRQ,2681.0,Al-Anbar,243.0,Iraq,126944.0,Al-Rutba,40.25,32.25,IRQ,2681.0,Al-Anbar,243.0,Iraq,126944.0,Al-Rutba,both,identical +176122,40.75,32.25,IRQ,2681.0,Al-Anbar,243.0,Iraq,126944.0,Al-Rutba,40.75,32.25,IRQ,2681.0,Al-Anbar,243.0,Iraq,126944.0,Al-Rutba,both,identical +176123,41.25,32.25,IRQ,2681.0,Al-Anbar,243.0,Iraq,126944.0,Al-Rutba,41.25,32.25,IRQ,2681.0,Al-Anbar,243.0,Iraq,126944.0,Al-Rutba,both,identical +176124,41.75,32.25,IRQ,2681.0,Al-Anbar,243.0,Iraq,126944.0,Al-Rutba,41.75,32.25,IRQ,2681.0,Al-Anbar,243.0,Iraq,126944.0,Al-Rutba,both,identical +176125,42.25,32.25,IRQ,2681.0,Al-Anbar,243.0,Iraq,126944.0,Al-Rutba,42.25,32.25,IRQ,2681.0,Al-Anbar,243.0,Iraq,126944.0,Al-Rutba,both,identical +176126,42.75,32.25,IRQ,2681.0,Al-Anbar,243.0,Iraq,126944.0,Al-Rutba,42.75,32.25,IRQ,2681.0,Al-Anbar,243.0,Iraq,126944.0,Al-Rutba,both,identical +176127,43.25,32.25,IRQ,2681.0,Al-Anbar,243.0,Iraq,126944.0,Al-Rutba,43.25,32.25,IRQ,2681.0,Al-Anbar,243.0,Iraq,126944.0,Al-Rutba,both,identical +176128,43.75,32.25,IRQ,2692.0,Kerbala,243.0,Iraq,126961.0,Al-Najaf,43.75,32.25,IRQ,2684.0,Al-Najaf,243.0,Iraq,126961.0,Al-Najaf,both,admin_reallocation +176129,44.25,32.25,IRQ,2684.0,Al-Najaf,243.0,Iraq,126961.0,Al-Najaf,44.25,32.25,IRQ,2684.0,Al-Najaf,243.0,Iraq,126961.0,Al-Najaf,both,identical +176130,44.75,32.25,IRQ,2687.0,Babil,243.0,Iraq,126976.0,Al-Hashimiya,44.75,32.25,IRQ,2687.0,Babil,243.0,Iraq,126976.0,Al-Hashimiya,both,identical +176131,45.25,32.25,IRQ,2685.0,Al-Qadissiya,243.0,Iraq,126962.0,Afaq,45.25,32.25,IRQ,2685.0,Al-Qadissiya,243.0,Iraq,126962.0,Afaq,both,identical +176132,45.75,32.25,IRQ,2698.0,Wassit,243.0,Iraq,127039.0,Al-Namaniya,45.75,32.25,IRQ,2698.0,Wassit,243.0,Iraq,127039.0,Al-Namaniya,both,identical +176133,46.25,32.25,IRQ,2698.0,Wassit,243.0,Iraq,127038.0,Al-Kut,46.25,32.25,IRQ,2698.0,Wassit,243.0,Iraq,127038.0,Al-Kut,both,identical +176134,46.75,32.25,IRQ,2694.0,Maysan,243.0,Iraq,127014.0,Ali Al-Gharbi,46.75,32.25,IRQ,2694.0,Maysan,243.0,Iraq,127014.0,Ali Al-Gharbi,both,identical +176135,47.25,32.25,IRQ,2694.0,Maysan,243.0,Iraq,127010.0,Al-Amara,47.25,32.25,IRQ,2694.0,Maysan,243.0,Iraq,127010.0,Al-Amara,both,identical +176136,47.75,32.25,IRN,2659.0,Ilam,242.0,Iran (Islamic Republic Of),126651.0,Dehloran,47.75,32.25,IRN,2659.0,Ilam,242.0,Iran (Islamic Republic Of),126651.0,Dehloran,both,identical +176137,48.25,32.25,IRN,2663.0,Khuzestan,242.0,Iran (Islamic Republic Of),126744.0,Shush,48.25,32.25,IRN,2663.0,Khuzestan,242.0,Iran (Islamic Republic Of),126744.0,Shush,both,identical +176138,48.75,32.25,IRN,2663.0,Khuzestan,242.0,Iran (Islamic Republic Of),126728.0,Dezful,48.75,32.25,IRN,2663.0,Khuzestan,242.0,Iran (Islamic Republic Of),126728.0,Dezful,both,identical +176139,49.25,32.25,IRN,2663.0,Khuzestan,242.0,Iran (Islamic Republic Of),126737.0,Lali,49.25,32.25,IRN,2663.0,Khuzestan,242.0,Iran (Islamic Republic Of),126737.0,Lali,both,identical +176140,49.75,32.25,IRN,2663.0,Khuzestan,242.0,Iran (Islamic Republic Of),126722.0,Andika,49.75,32.25,IRN,2663.0,Khuzestan,242.0,Iran (Islamic Republic Of),126722.0,Andika,both,identical +176141,50.25,32.25,IRN,2652.0,Chaharmahal And Bakhtiari,242.0,Iran (Islamic Republic Of),126543.0,Kuhrang,50.25,32.25,IRN,2652.0,Chaharmahal And Bakhtiari,242.0,Iran (Islamic Republic Of),126543.0,Kuhrang,both,identical +176142,50.75,32.25,IRN,2652.0,Chaharmahal And Bakhtiari,242.0,Iran (Islamic Republic Of),126546.0,Shahrekord,50.75,32.25,IRN,2652.0,Chaharmahal And Bakhtiari,242.0,Iran (Islamic Republic Of),126546.0,Shahrekord,both,identical +176143,51.25,32.25,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126673.0,Lenjan,51.25,32.25,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126673.0,Lenjan,both,identical +176144,51.75,32.25,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126680.0,Shahreza,51.75,32.25,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126680.0,Shahreza,both,identical +176145,52.25,32.25,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126668.0,Isfahan,52.25,32.25,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126668.0,Isfahan,both,identical +176146,52.75,32.25,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126668.0,Isfahan,52.75,32.25,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126668.0,Isfahan,both,identical +176147,53.25,32.25,IRN,2679.0,Yazd,242.0,Iran (Islamic Republic Of),126924.0,Ardekan,53.25,32.25,IRN,2679.0,Yazd,242.0,Iran (Islamic Republic Of),126924.0,Ardekan,both,identical +176148,53.75,32.25,IRN,2679.0,Yazd,242.0,Iran (Islamic Republic Of),126930.0,Meybod,53.75,32.25,IRN,2679.0,Yazd,242.0,Iran (Islamic Republic Of),126930.0,Meybod,both,identical +176149,54.25,32.25,IRN,2679.0,Yazd,242.0,Iran (Islamic Republic Of),126924.0,Ardekan,54.25,32.25,IRN,2679.0,Yazd,242.0,Iran (Islamic Republic Of),126924.0,Ardekan,both,identical +176150,54.75,32.25,IRN,2679.0,Yazd,242.0,Iran (Islamic Republic Of),126924.0,Ardekan,54.75,32.25,IRN,2679.0,Yazd,242.0,Iran (Islamic Republic Of),126924.0,Ardekan,both,identical +176151,55.25,32.25,IRN,2679.0,Yazd,242.0,Iran (Islamic Republic Of),126924.0,Ardekan,55.25,32.25,IRN,2679.0,Yazd,242.0,Iran (Islamic Republic Of),126924.0,Ardekan,both,identical +176152,55.75,32.25,IRN,2679.0,Yazd,242.0,Iran (Islamic Republic Of),126924.0,Ardekan,55.75,32.25,IRN,2679.0,Yazd,242.0,Iran (Islamic Republic Of),126924.0,Ardekan,both,identical +176153,56.25,32.25,IRN,2679.0,Yazd,242.0,Iran (Islamic Republic Of),126927.0,Bahabad,56.25,32.25,IRN,2679.0,Yazd,242.0,Iran (Islamic Republic Of),126927.0,Bahabad,both,identical +176154,56.75,32.25,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126888.0,Tabas,56.75,32.25,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126888.0,Tabas,both,identical +176155,57.25,32.25,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126888.0,Tabas,57.25,32.25,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126888.0,Tabas,both,identical +176156,57.75,32.25,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126888.0,Tabas,57.75,32.25,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126888.0,Tabas,both,identical +176157,58.25,32.25,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126883.0,Khusf,58.25,32.25,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126883.0,Khusf,both,identical +176158,58.75,32.25,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126883.0,Khusf,58.75,32.25,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126883.0,Khusf,both,identical +176159,59.25,32.25,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126883.0,Khusf,59.25,32.25,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126883.0,Khusf,both,identical +176160,59.75,32.25,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126884.0,Nehbandan,59.75,32.25,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126884.0,Nehbandan,both,identical +176161,60.25,32.25,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126887.0,Sarbisheh,60.25,32.25,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126887.0,Sarbisheh,both,identical +176162,60.75,32.25,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126887.0,Sarbisheh,60.75,32.25,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126887.0,Sarbisheh,both,identical +176742,-9.25,32.75,MAR,1479.0,Marrakech-Safi,147.0,Morocco,104274.0,Safi,-9.25,32.75,MAR,1479.0,Marrakech-Safi,147.0,Morocco,104274.0,Safi,both,identical +176743,-8.75,32.75,MAR,1477.0,Grand Casablanca-Settat,147.0,Morocco,104263.0,Sidi Bennour,-8.75,32.75,MAR,1477.0,Grand Casablanca-Settat,147.0,Morocco,104263.0,Sidi Bennour,both,identical +176744,-8.25,32.75,MAR,1477.0,Grand Casablanca-Settat,147.0,Morocco,104263.0,Sidi Bennour,-8.25,32.75,MAR,1477.0,Grand Casablanca-Settat,147.0,Morocco,104263.0,Sidi Bennour,both,identical +176745,-7.75,32.75,MAR,1477.0,Grand Casablanca-Settat,147.0,Morocco,104262.0,Settat,-7.75,32.75,MAR,1477.0,Grand Casablanca-Settat,147.0,Morocco,104262.0,Settat,both,identical +176746,-7.25,32.75,MAR,1477.0,Grand Casablanca-Settat,147.0,Morocco,104262.0,Settat,-7.25,32.75,MAR,1477.0,Grand Casablanca-Settat,147.0,Morocco,104262.0,Settat,both,identical +176747,-6.75,32.75,MAR,1474.0,Béni Mellal-Khénifra,147.0,Morocco,104239.0,Khouribga,-6.75,32.75,MAR,1474.0,Béni Mellal-Khénifra,147.0,Morocco,104239.0,Khouribga,both,identical +176748,-6.25,32.75,MAR,1474.0,Béni Mellal-Khénifra,147.0,Morocco,104239.0,Khouribga,-6.25,32.75,MAR,1474.0,Béni Mellal-Khénifra,147.0,Morocco,104239.0,Khouribga,both,identical +176749,-5.75,32.75,MAR,1474.0,Béni Mellal-Khénifra,147.0,Morocco,104240.0,Khénifra,-5.75,32.75,MAR,1474.0,Béni Mellal-Khénifra,147.0,Morocco,104240.0,Khénifra,both,identical +176750,-5.25,32.75,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104242.0,Midelt,-5.25,32.75,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104242.0,Midelt,both,identical +176751,-4.75,32.75,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104242.0,Midelt,-4.75,32.75,MAR,1475.0,Drâa-Tafilalet,147.0,Morocco,104242.0,Midelt,both,identical +176752,-4.25,32.75,MAR,1476.0,Fès-Meknès,147.0,Morocco,104246.0,Boulemane,-4.25,32.75,MAR,1476.0,Fès-Meknès,147.0,Morocco,104246.0,Boulemane,both,identical +176753,-3.75,32.75,MAR,1480.0,Oriental,147.0,Morocco,104278.0,Figuig,-3.75,32.75,MAR,1480.0,Oriental,147.0,Morocco,104278.0,Figuig,both,identical +176754,-3.25,32.75,MAR,1480.0,Oriental,147.0,Morocco,104278.0,Figuig,-3.25,32.75,MAR,1480.0,Oriental,147.0,Morocco,104278.0,Figuig,both,identical +176755,-2.75,32.75,MAR,1480.0,Oriental,147.0,Morocco,104278.0,Figuig,-2.75,32.75,MAR,1480.0,Oriental,147.0,Morocco,104278.0,Figuig,both,identical +176756,-2.25,32.75,MAR,1480.0,Oriental,147.0,Morocco,104278.0,Figuig,-2.25,32.75,MAR,1480.0,Oriental,147.0,Morocco,104278.0,Figuig,both,identical +176757,-1.75,32.75,MAR,1480.0,Oriental,147.0,Morocco,104278.0,Figuig,-1.75,32.75,MAR,1480.0,Oriental,147.0,Morocco,104278.0,Figuig,both,identical +176758,-1.25,32.75,DZA,1031.0,Naama,101.0,Algeria,100982.0,Sfissifa,-1.25,32.75,DZA,1031.0,Naama,101.0,Algeria,100982.0,Sfissifa,both,identical +176759,-0.75,32.75,DZA,1031.0,Naama,101.0,Algeria,100982.0,Sfissifa,-0.75,32.75,DZA,1031.0,Naama,101.0,Algeria,100982.0,Sfissifa,both,identical +176760,-0.25,32.75,DZA,1031.0,Naama,101.0,Algeria,100974.0,Asla,-0.25,32.75,DZA,1031.0,Naama,101.0,Algeria,100974.0,Asla,both,identical +176761,0.25,32.75,DZA,1017.0,El Bayadh,101.0,Algeria,100555.0,El Abiodh Sidi Cheikh,0.25,32.75,DZA,1017.0,El Bayadh,101.0,Algeria,100555.0,El Abiodh Sidi Cheikh,both,identical +176762,0.75,32.75,DZA,1017.0,El Bayadh,101.0,Algeria,100555.0,El Abiodh Sidi Cheikh,0.75,32.75,DZA,1017.0,El Bayadh,101.0,Algeria,100555.0,El Abiodh Sidi Cheikh,both,identical +176763,1.25,32.75,DZA,1017.0,El Bayadh,101.0,Algeria,100552.0,Brezina,1.25,32.75,DZA,1017.0,El Bayadh,101.0,Algeria,100552.0,Brezina,both,identical +176764,1.75,32.75,DZA,1017.0,El Bayadh,101.0,Algeria,100552.0,Brezina,1.75,32.75,DZA,1017.0,El Bayadh,101.0,Algeria,100552.0,Brezina,both,identical +176765,2.25,32.75,DZA,1017.0,El Bayadh,101.0,Algeria,100552.0,Brezina,2.25,32.75,DZA,1017.0,El Bayadh,101.0,Algeria,100552.0,Brezina,both,identical +176766,2.75,32.75,DZA,1020.0,Ghardaia,101.0,Algeria,100634.0,Metlili,2.75,32.75,DZA,1020.0,Ghardaia,101.0,Algeria,100634.0,Metlili,both,identical +176767,3.25,32.75,DZA,1020.0,Ghardaia,101.0,Algeria,100626.0,Dhayet Bendahoua,3.25,32.75,DZA,1020.0,Ghardaia,101.0,Algeria,100626.0,Dhayet Bendahoua,both,identical +176768,3.75,32.75,DZA,1020.0,Ghardaia,101.0,Algeria,100624.0,Berriane,3.75,32.75,DZA,1020.0,Ghardaia,101.0,Algeria,100624.0,Berriane,both,identical +176769,4.25,32.75,DZA,1020.0,Ghardaia,101.0,Algeria,100628.0,El Guerrara,4.25,32.75,DZA,1020.0,Ghardaia,101.0,Algeria,100628.0,El Guerrara,both,identical +176770,4.75,32.75,DZA,1020.0,Ghardaia,101.0,Algeria,100628.0,El Guerrara,4.75,32.75,DZA,1020.0,Ghardaia,101.0,Algeria,100628.0,El Guerrara,both,identical +176771,5.25,32.75,DZA,1033.0,Ouargla,101.0,Algeria,101013.0,El Allia,5.25,32.75,DZA,1033.0,Ouargla,101.0,Algeria,101013.0,El Allia,both,identical +176772,5.75,32.75,DZA,1033.0,Ouargla,101.0,Algeria,101015.0,El Hadjira,5.75,32.75,DZA,1033.0,Ouargla,101.0,Algeria,101015.0,El Hadjira,both,identical +176773,6.25,32.75,DZA,1033.0,Ouargla,101.0,Algeria,101018.0,M'Naguer,6.25,32.75,DZA,1033.0,Ouargla,101.0,Algeria,101018.0,M'Naguer,both,identical +176774,6.75,32.75,DZA,1018.0,El Oued,101.0,Algeria,100574.0,Douar El Ma,6.75,32.75,DZA,1018.0,El Oued,101.0,Algeria,100574.0,Douar El Ma,both,identical +176775,7.25,32.75,DZA,1018.0,El Oued,101.0,Algeria,100574.0,Douar El Ma,7.25,32.75,DZA,1018.0,El Oued,101.0,Algeria,100574.0,Douar El Ma,both,identical +176776,7.75,32.75,DZA,1018.0,El Oued,101.0,Algeria,100574.0,Douar El Ma,7.75,32.75,DZA,1018.0,El Oued,101.0,Algeria,100574.0,Douar El Ma,both,identical +176777,8.25,32.75,DZA,1018.0,El Oued,101.0,Algeria,100574.0,Douar El Ma,8.25,32.75,DZA,1018.0,El Oued,101.0,Algeria,100574.0,Douar El Ma,both,identical +176778,8.75,32.75,TUN,1660.0,Kebili,164.0,Tunisia,106072.0,Faouar,8.75,32.75,TUN,1660.0,Kebili,164.0,Tunisia,106072.0,Faouar,both,identical +176779,9.25,32.75,TUN,1660.0,Kebili,164.0,Tunisia,106071.0,Douz Sud,9.25,32.75,TUN,1660.0,Kebili,164.0,Tunisia,106071.0,Douz Sud,both,identical +176780,9.75,32.75,TUN,1671.0,Tataouine,164.0,Tunisia,106209.0,Remada,9.75,32.75,TUN,1671.0,Tataouine,164.0,Tunisia,106209.0,Remada,both,identical +176781,10.25,32.75,TUN,1671.0,Tataouine,164.0,Tunisia,106212.0,Tataouine Sud,10.25,32.75,TUN,1671.0,Tataouine,164.0,Tunisia,106212.0,Tataouine Sud,both,identical +176782,10.75,32.75,TUN,1671.0,Tataouine,164.0,Tunisia,106211.0,Tataouine Nord,10.75,32.75,TUN,1671.0,Tataouine,164.0,Tunisia,106211.0,Tataouine Nord,both,identical +176783,11.25,32.75,TUN,1664.0,Mednine,164.0,Tunisia,106110.0,Ben Guerdane,11.25,32.75,TUN,1664.0,Mednine,164.0,Tunisia,106110.0,Ben Guerdane,both,identical +176784,11.75,32.75,LBY,1427.0,West,140.0,Libya,104053.0,Zwara,11.75,32.75,LBY,1427.0,West,140.0,Libya,104053.0,Zwara,both,identical +176785,12.25,32.75,LBY,1427.0,West,140.0,Libya,104053.0,Zwara,12.25,32.75,LBY,1427.0,West,140.0,Libya,104053.0,Zwara,both,identical +176786,12.75,32.75,LBY,1427.0,West,140.0,Libya,104048.0,Azzawya,12.75,32.75,LBY,1427.0,West,140.0,Libya,104048.0,Azzawya,both,identical +176787,13.25,32.75,LBY,1427.0,West,140.0,Libya,104046.0,Aljfara,13.25,32.75,LBY,1427.0,West,140.0,Libya,104046.0,Aljfara,both,identical +176788,13.75,32.75,LBY,1427.0,West,140.0,Libya,104047.0,Almargeb,13.75,32.75,LBY,1427.0,West,140.0,Libya,104047.0,Almargeb,both,identical +176789,14.25,32.75,LBY,1427.0,West,140.0,Libya,104047.0,Almargeb,14.25,32.75,LBY,1427.0,West,140.0,Libya,104047.0,Almargeb,both,identical +176790,14.75,32.75,LBY,1427.0,West,140.0,Libya,104049.0,Misrata,14.75,32.75,LBY,1427.0,West,140.0,Libya,104049.0,Misrata,both,identical +176801,20.25,32.75,LBY,1425.0,East,140.0,Libya,104035.0,Benghazi,20.25,32.75,LBY,1425.0,East,140.0,Libya,104035.0,Benghazi,both,identical +176802,20.75,32.75,LBY,1425.0,East,140.0,Libya,104034.0,Almarj,20.75,32.75,LBY,1425.0,East,140.0,Libya,104034.0,Almarj,both,identical +176803,21.25,32.75,LBY,1425.0,East,140.0,Libya,104034.0,Almarj,21.25,32.75,LBY,1425.0,East,140.0,Libya,104034.0,Almarj,both,identical +176804,21.75,32.75,LBY,1425.0,East,140.0,Libya,104032.0,Al Jabal Al Akhdar,21.75,32.75,LBY,1425.0,East,140.0,Libya,104032.0,Al Jabal Al Akhdar,both,identical +176805,22.25,32.75,LBY,1425.0,East,140.0,Libya,104036.0,Derna,22.25,32.75,LBY,1425.0,East,140.0,Libya,104036.0,Derna,both,identical +176806,22.75,32.75,LBY,1425.0,East,140.0,Libya,104036.0,Derna,22.75,32.75,LBY,1425.0,East,140.0,Libya,104036.0,Derna,both,identical +176807,23.25,32.75,LBY,1425.0,East,140.0,Libya,104036.0,Derna,23.25,32.75,LBY,1425.0,East,140.0,Libya,104036.0,Derna,both,identical +176830,34.75,32.75,ISR,2700.0,Haifa,244.0,Israel,127043.0,Administrative Unit Not Available,34.75,32.75,ISR,2700.0,Haifa,244.0,Israel,127043.0,Administrative Unit Not Available,both,identical +176831,35.25,32.75,ISR,2702.0,Northern,244.0,Israel,127045.0,Administrative Unit Not Available,35.25,32.75,ISR,2702.0,Northern,244.0,Israel,127045.0,Administrative Unit Not Available,both,identical +176832,35.75,32.75,ISR,2702.0,Northern,244.0,Israel,127045.0,Administrative Unit Not Available,35.75,32.75,ISR,2702.0,Northern,244.0,Israel,127045.0,Administrative Unit Not Available,both,identical +176833,36.25,32.75,SYR,2992.0,Dar'A,272.0,Syrian Arab Republic,130642.0,Dar'A,36.25,32.75,SYR,2992.0,Dar'A,272.0,Syrian Arab Republic,130642.0,Dar'A,both,identical +176834,36.75,32.75,SYR,2990.0,As-Sweida,272.0,Syrian Arab Republic,130637.0,As-Sweida,36.75,32.75,SYR,2990.0,As-Sweida,272.0,Syrian Arab Republic,130637.0,As-Sweida,both,identical +176835,37.25,32.75,SYR,2990.0,As-Sweida,272.0,Syrian Arab Republic,130637.0,As-Sweida,37.25,32.75,SYR,2990.0,As-Sweida,272.0,Syrian Arab Republic,130637.0,As-Sweida,both,identical +176836,37.75,32.75,JOR,2762.0,Mafraq,247.0,Jordan,128988.0,Al-Ruwaished,37.75,32.75,JOR,2762.0,Mafraq,247.0,Jordan,128988.0,Al-Ruwaished,both,identical +176837,38.25,32.75,JOR,2762.0,Mafraq,247.0,Jordan,128988.0,Al-Ruwaished,38.25,32.75,JOR,2762.0,Mafraq,247.0,Jordan,128988.0,Al-Ruwaished,both,identical +176838,38.75,32.75,JOR,2762.0,Mafraq,247.0,Jordan,128988.0,Al-Ruwaished,38.75,32.75,JOR,2762.0,Mafraq,247.0,Jordan,128988.0,Al-Ruwaished,both,identical +176839,39.25,32.75,IRQ,2681.0,Al-Anbar,243.0,Iraq,126944.0,Al-Rutba,39.25,32.75,IRQ,2681.0,Al-Anbar,243.0,Iraq,126944.0,Al-Rutba,both,identical +176840,39.75,32.75,IRQ,2681.0,Al-Anbar,243.0,Iraq,126944.0,Al-Rutba,39.75,32.75,IRQ,2681.0,Al-Anbar,243.0,Iraq,126944.0,Al-Rutba,both,identical +176841,40.25,32.75,IRQ,2681.0,Al-Anbar,243.0,Iraq,126944.0,Al-Rutba,40.25,32.75,IRQ,2681.0,Al-Anbar,243.0,Iraq,126944.0,Al-Rutba,both,identical +176842,40.75,32.75,IRQ,2681.0,Al-Anbar,243.0,Iraq,126944.0,Al-Rutba,40.75,32.75,IRQ,2681.0,Al-Anbar,243.0,Iraq,126944.0,Al-Rutba,both,identical +176843,41.25,32.75,IRQ,2681.0,Al-Anbar,243.0,Iraq,126944.0,Al-Rutba,41.25,32.75,IRQ,2681.0,Al-Anbar,243.0,Iraq,126944.0,Al-Rutba,both,identical +176844,41.75,32.75,IRQ,2681.0,Al-Anbar,243.0,Iraq,126944.0,Al-Rutba,41.75,32.75,IRQ,2681.0,Al-Anbar,243.0,Iraq,126944.0,Al-Rutba,both,identical +176845,42.25,32.75,IRQ,2681.0,Al-Anbar,243.0,Iraq,126944.0,Al-Rutba,42.25,32.75,IRQ,2681.0,Al-Anbar,243.0,Iraq,126944.0,Al-Rutba,both,identical +176846,42.75,32.75,IRQ,2681.0,Al-Anbar,243.0,Iraq,126944.0,Al-Rutba,42.75,32.75,IRQ,2681.0,Al-Anbar,243.0,Iraq,126944.0,Al-Rutba,both,identical +176847,43.25,32.75,IRQ,2681.0,Al-Anbar,243.0,Iraq,126943.0,Al-Ramadi,43.25,32.75,IRQ,2681.0,Al-Anbar,243.0,Iraq,126943.0,Al-Ramadi,both,identical +176848,43.75,32.75,IRQ,2692.0,Kerbala,243.0,Iraq,126941.0,Al-Falluja,43.75,32.75,IRQ,2681.0,Al-Anbar,243.0,Iraq,126941.0,Al-Falluja,both,admin_reallocation +176849,44.25,32.75,IRQ,2687.0,Babil,243.0,Iraq,126979.0,Al-Mussyab,44.25,32.75,IRQ,2687.0,Babil,243.0,Iraq,126979.0,Al-Mussyab,both,identical +176850,44.75,32.75,IRQ,2687.0,Babil,243.0,Iraq,127040.0,Al-Suwaira,44.75,32.75,IRQ,2698.0,Wassit,243.0,Iraq,127040.0,Al-Suwaira,both,admin_reallocation +176851,45.25,32.75,IRQ,2698.0,Wassit,243.0,Iraq,127040.0,Al-Suwaira,45.25,32.75,IRQ,2698.0,Wassit,243.0,Iraq,127040.0,Al-Suwaira,both,identical +176852,45.75,32.75,IRQ,2698.0,Wassit,243.0,Iraq,127038.0,Al-Kut,45.75,32.75,IRQ,2698.0,Wassit,243.0,Iraq,127038.0,Al-Kut,both,identical +176853,46.25,32.75,IRQ,2698.0,Wassit,243.0,Iraq,127038.0,Al-Kut,46.25,32.75,IRQ,2698.0,Wassit,243.0,Iraq,127038.0,Al-Kut,both,identical +176854,46.75,32.75,IRN,2659.0,Ilam,242.0,Iran (Islamic Republic Of),126651.0,Dehloran,46.75,32.75,IRN,2659.0,Ilam,242.0,Iran (Islamic Republic Of),126651.0,Dehloran,both,identical +176855,47.25,32.75,IRN,2659.0,Ilam,242.0,Iran (Islamic Republic Of),126651.0,Dehloran,47.25,32.75,IRN,2659.0,Ilam,242.0,Iran (Islamic Republic Of),126651.0,Dehloran,both,identical +176856,47.75,32.75,IRN,2659.0,Ilam,242.0,Iran (Islamic Republic Of),126648.0,Abdanan,47.75,32.75,IRN,2659.0,Ilam,242.0,Iran (Islamic Republic Of),126648.0,Abdanan,both,identical +176857,48.25,32.75,IRN,2663.0,Khuzestan,242.0,Iran (Islamic Republic Of),126723.0,Andimeshk,48.25,32.75,IRN,2663.0,Khuzestan,242.0,Iran (Islamic Republic Of),126723.0,Andimeshk,both,identical +176858,48.75,32.75,IRN,2663.0,Khuzestan,242.0,Iran (Islamic Republic Of),126728.0,Dezful,48.75,32.75,IRN,2663.0,Khuzestan,242.0,Iran (Islamic Republic Of),126728.0,Dezful,both,identical +176859,49.25,32.75,IRN,2663.0,Khuzestan,242.0,Iran (Islamic Republic Of),126728.0,Dezful,49.25,32.75,IRN,2663.0,Khuzestan,242.0,Iran (Islamic Republic Of),126728.0,Dezful,both,identical +176860,49.75,32.75,IRN,2652.0,Chaharmahal And Bakhtiari,242.0,Iran (Islamic Republic Of),126543.0,Kuhrang,49.75,32.75,IRN,2652.0,Chaharmahal And Bakhtiari,242.0,Iran (Islamic Republic Of),126543.0,Kuhrang,both,identical +176861,50.25,32.75,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126666.0,Fereydunshahr,50.25,32.75,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126666.0,Fereydunshahr,both,identical +176862,50.75,32.75,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126681.0,Tiran-O-Korun,50.75,32.75,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126681.0,Tiran-O-Korun,both,identical +176863,51.25,32.75,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126676.0,Najafabad,51.25,32.75,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126676.0,Najafabad,both,identical +176864,51.75,32.75,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126668.0,Isfahan,51.75,32.75,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126668.0,Isfahan,both,identical +176865,52.25,32.75,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126668.0,Isfahan,52.25,32.75,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126668.0,Isfahan,both,identical +176866,52.75,32.75,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126668.0,Isfahan,52.75,32.75,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126668.0,Isfahan,both,identical +176867,53.25,32.75,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126675.0,Nain,53.25,32.75,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126675.0,Nain,both,identical +176868,53.75,32.75,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126675.0,Nain,53.75,32.75,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126675.0,Nain,both,identical +176869,54.25,32.75,IRN,2679.0,Yazd,242.0,Iran (Islamic Republic Of),126924.0,Ardekan,54.25,32.75,IRN,2679.0,Yazd,242.0,Iran (Islamic Republic Of),126924.0,Ardekan,both,identical +176870,54.75,32.75,IRN,2679.0,Yazd,242.0,Iran (Islamic Republic Of),126924.0,Ardekan,54.75,32.75,IRN,2679.0,Yazd,242.0,Iran (Islamic Republic Of),126924.0,Ardekan,both,identical +176871,55.25,32.75,IRN,2679.0,Yazd,242.0,Iran (Islamic Republic Of),126924.0,Ardekan,55.25,32.75,IRN,2679.0,Yazd,242.0,Iran (Islamic Republic Of),126924.0,Ardekan,both,identical +176872,55.75,32.75,IRN,2679.0,Yazd,242.0,Iran (Islamic Republic Of),126924.0,Ardekan,55.75,32.75,IRN,2679.0,Yazd,242.0,Iran (Islamic Republic Of),126924.0,Ardekan,both,identical +176873,56.25,32.75,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126888.0,Tabas,56.25,32.75,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126888.0,Tabas,both,identical +176874,56.75,32.75,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126888.0,Tabas,56.75,32.75,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126888.0,Tabas,both,identical +176875,57.25,32.75,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126888.0,Tabas,57.25,32.75,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126888.0,Tabas,both,identical +176876,57.75,32.75,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126888.0,Tabas,57.75,32.75,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126888.0,Tabas,both,identical +176877,58.25,32.75,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126883.0,Khusf,58.25,32.75,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126883.0,Khusf,both,identical +176878,58.75,32.75,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126883.0,Khusf,58.75,32.75,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126883.0,Khusf,both,identical +176879,59.25,32.75,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126879.0,Birjand,59.25,32.75,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126879.0,Birjand,both,identical +176880,59.75,32.75,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126887.0,Sarbisheh,59.75,32.75,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126887.0,Sarbisheh,both,identical +176881,60.25,32.75,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126881.0,Darmian,60.25,32.75,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126881.0,Darmian,both,identical +176882,60.75,32.75,AFG,2409.0,Hirat,223.0,Afghanistan,123856.0,Shindand,60.75,32.75,AFG,2409.0,Hirat,223.0,Afghanistan,123856.0,Shindand,both,identical +177463,-8.75,33.25,MAR,1477.0,Grand Casablanca-Settat,147.0,Morocco,104258.0,El Jadida,-8.75,33.25,MAR,1477.0,Grand Casablanca-Settat,147.0,Morocco,104258.0,El Jadida,both,identical +177464,-8.25,33.25,MAR,1477.0,Grand Casablanca-Settat,147.0,Morocco,104258.0,El Jadida,-8.25,33.25,MAR,1477.0,Grand Casablanca-Settat,147.0,Morocco,104258.0,El Jadida,both,identical +177465,-7.75,33.25,MAR,1477.0,Grand Casablanca-Settat,147.0,Morocco,104256.0,Berrechid,-7.75,33.25,MAR,1477.0,Grand Casablanca-Settat,147.0,Morocco,104256.0,Berrechid,both,identical +177466,-7.25,33.25,MAR,1477.0,Grand Casablanca-Settat,147.0,Morocco,104255.0,Benslimane,-7.25,33.25,MAR,1477.0,Grand Casablanca-Settat,147.0,Morocco,104255.0,Benslimane,both,identical +177467,-6.75,33.25,MAR,1481.0,Rabat-Salé-Kénitra,147.0,Morocco,104284.0,Khémisset,-6.75,33.25,MAR,1481.0,Rabat-Salé-Kénitra,147.0,Morocco,104284.0,Khémisset,both,identical +177468,-6.25,33.25,MAR,1474.0,Béni Mellal-Khénifra,147.0,Morocco,104240.0,Khénifra,-6.25,33.25,MAR,1474.0,Béni Mellal-Khénifra,147.0,Morocco,104240.0,Khénifra,both,identical +177469,-5.75,33.25,MAR,1474.0,Béni Mellal-Khénifra,147.0,Morocco,104240.0,Khénifra,-5.75,33.25,MAR,1474.0,Béni Mellal-Khénifra,147.0,Morocco,104240.0,Khénifra,both,identical +177470,-5.25,33.25,MAR,1476.0,Fès-Meknès,147.0,Morocco,104249.0,Ifrane,-5.25,33.25,MAR,1476.0,Fès-Meknès,147.0,Morocco,104249.0,Ifrane,both,identical +177471,-4.75,33.25,MAR,1476.0,Fès-Meknès,147.0,Morocco,104246.0,Boulemane,-4.75,33.25,MAR,1476.0,Fès-Meknès,147.0,Morocco,104246.0,Boulemane,both,identical +177472,-4.25,33.25,MAR,1476.0,Fès-Meknès,147.0,Morocco,104246.0,Boulemane,-4.25,33.25,MAR,1476.0,Fès-Meknès,147.0,Morocco,104246.0,Boulemane,both,identical +177473,-3.75,33.25,MAR,1476.0,Fès-Meknès,147.0,Morocco,104246.0,Boulemane,-3.75,33.25,MAR,1476.0,Fès-Meknès,147.0,Morocco,104246.0,Boulemane,both,identical +177474,-3.25,33.25,MAR,1476.0,Fès-Meknès,147.0,Morocco,104246.0,Boulemane,-3.25,33.25,MAR,1476.0,Fès-Meknès,147.0,Morocco,104246.0,Boulemane,both,identical +177475,-2.75,33.25,MAR,1480.0,Oriental,147.0,Morocco,104278.0,Figuig,-2.75,33.25,MAR,1480.0,Oriental,147.0,Morocco,104278.0,Figuig,both,identical +177476,-2.25,33.25,MAR,1480.0,Oriental,147.0,Morocco,104278.0,Figuig,-2.25,33.25,MAR,1480.0,Oriental,147.0,Morocco,104278.0,Figuig,both,identical +177477,-1.75,33.25,MAR,1480.0,Oriental,147.0,Morocco,104278.0,Figuig,-1.75,33.25,MAR,1480.0,Oriental,147.0,Morocco,104278.0,Figuig,both,identical +177478,-1.25,33.25,DZA,1031.0,Naama,101.0,Algeria,100977.0,Kasdir,-1.25,33.25,DZA,1031.0,Naama,101.0,Algeria,100977.0,Kasdir,both,identical +177479,-0.75,33.25,DZA,1031.0,Naama,101.0,Algeria,100972.0,Ain Ben Khelil,-0.75,33.25,DZA,1031.0,Naama,101.0,Algeria,100972.0,Ain Ben Khelil,both,identical +177480,-0.25,33.25,DZA,1031.0,Naama,101.0,Algeria,100981.0,Naama,-0.25,33.25,DZA,1031.0,Naama,101.0,Algeria,100981.0,Naama,both,identical +177481,0.25,33.25,DZA,1017.0,El Bayadh,101.0,Algeria,100559.0,El Mehara,0.25,33.25,DZA,1017.0,El Bayadh,101.0,Algeria,100559.0,El Mehara,both,identical +177482,0.75,33.25,DZA,1017.0,El Bayadh,101.0,Algeria,100549.0,Arbaouat,0.75,33.25,DZA,1017.0,El Bayadh,101.0,Algeria,100549.0,Arbaouat,both,identical +177483,1.25,33.25,DZA,1017.0,El Bayadh,101.0,Algeria,100552.0,Brezina,1.25,33.25,DZA,1017.0,El Bayadh,101.0,Algeria,100552.0,Brezina,both,identical +177484,1.75,33.25,DZA,1017.0,El Bayadh,101.0,Algeria,100552.0,Brezina,1.75,33.25,DZA,1017.0,El Bayadh,101.0,Algeria,100552.0,Brezina,both,identical +177485,2.25,33.25,DZA,1025.0,Laghouat,101.0,Algeria,100727.0,Ain Madhi,2.25,33.25,DZA,1025.0,Laghouat,101.0,Algeria,100727.0,Ain Madhi,both,identical +177486,2.75,33.25,DZA,1025.0,Laghouat,101.0,Algeria,100738.0,Kheneg,2.75,33.25,DZA,1025.0,Laghouat,101.0,Algeria,100738.0,Kheneg,both,identical +177487,3.25,33.25,DZA,1025.0,Laghouat,101.0,Algeria,100737.0,Hassi R'Mel,3.25,33.25,DZA,1025.0,Laghouat,101.0,Algeria,100737.0,Hassi R'Mel,both,identical +177488,3.75,33.25,DZA,1025.0,Laghouat,101.0,Algeria,100736.0,Hassi Dhelaa,3.75,33.25,DZA,1025.0,Laghouat,101.0,Algeria,100736.0,Hassi Dhelaa,both,identical +177489,4.25,33.25,DZA,1016.0,Djelfa,101.0,Algeria,100736.0,Hassi Dhelaa,4.25,33.25,DZA,1025.0,Laghouat,101.0,Algeria,100736.0,Hassi Dhelaa,both,admin_reallocation +177490,4.75,33.25,DZA,1016.0,Djelfa,101.0,Algeria,100540.0,Oum Laadham,4.75,33.25,DZA,1016.0,Djelfa,101.0,Algeria,100540.0,Oum Laadham,both,identical +177491,5.25,33.25,DZA,1033.0,Ouargla,101.0,Algeria,101013.0,El Allia,5.25,33.25,DZA,1033.0,Ouargla,101.0,Algeria,101013.0,El Allia,both,identical +177492,5.75,33.25,DZA,1033.0,Ouargla,101.0,Algeria,101013.0,El Allia,5.75,33.25,DZA,1033.0,Ouargla,101.0,Algeria,101013.0,El Allia,both,identical +177493,6.25,33.25,DZA,1033.0,Ouargla,101.0,Algeria,101018.0,M'Naguer,6.25,33.25,DZA,1033.0,Ouargla,101.0,Algeria,101018.0,M'Naguer,both,identical +177494,6.75,33.25,DZA,1018.0,El Oued,101.0,Algeria,100585.0,Mih Ouensa,6.75,33.25,DZA,1018.0,El Oued,101.0,Algeria,100585.0,Mih Ouensa,both,identical +177495,7.25,33.25,DZA,1018.0,El Oued,101.0,Algeria,100574.0,Douar El Ma,7.25,33.25,DZA,1018.0,El Oued,101.0,Algeria,100574.0,Douar El Ma,both,identical +177496,7.75,33.25,DZA,1018.0,El Oued,101.0,Algeria,100574.0,Douar El Ma,7.75,33.25,DZA,1018.0,El Oued,101.0,Algeria,100574.0,Douar El Ma,both,identical +177497,8.25,33.25,TUN,1660.0,Kebili,164.0,Tunisia,106072.0,Faouar,8.25,33.25,TUN,1660.0,Kebili,164.0,Tunisia,106072.0,Faouar,both,identical +177498,8.75,33.25,TUN,1660.0,Kebili,164.0,Tunisia,106072.0,Faouar,8.75,33.25,TUN,1660.0,Kebili,164.0,Tunisia,106072.0,Faouar,both,identical +177499,9.25,33.25,TUN,1660.0,Kebili,164.0,Tunisia,106070.0,Douz Nord,9.25,33.25,TUN,1660.0,Kebili,164.0,Tunisia,106070.0,Douz Nord,both,identical +177500,9.75,33.25,TUN,1660.0,Kebili,164.0,Tunisia,106070.0,Douz Nord,9.75,33.25,TUN,1660.0,Kebili,164.0,Tunisia,106070.0,Douz Nord,both,identical +177501,10.25,33.25,TUN,1664.0,Mednine,164.0,Tunisia,106111.0,Beni Khedech,10.25,33.25,TUN,1664.0,Mednine,164.0,Tunisia,106111.0,Beni Khedech,both,identical +177502,10.75,33.25,TUN,1664.0,Mednine,164.0,Tunisia,106110.0,Ben Guerdane,10.75,33.25,TUN,1664.0,Mednine,164.0,Tunisia,106110.0,Ben Guerdane,both,identical +177503,11.25,33.25,TUN,1664.0,Mednine,164.0,Tunisia,106110.0,Ben Guerdane,11.25,33.25,TUN,1664.0,Mednine,164.0,Tunisia,106110.0,Ben Guerdane,both,identical +177504,11.75,33.25,LBY,1427.0,West,140.0,Libya,104053.0,Zwara,11.75,33.25,LBY,1427.0,West,140.0,Libya,104053.0,Zwara,both,identical +177551,35.25,33.25,LBN,2825.0,South,253.0,Lebanon,129450.0,Sour,35.25,33.25,LBN,2825.0,South,253.0,Lebanon,129450.0,Sour,both,identical +177552,35.75,33.25,ISR,2702.0,Northern,244.0,Israel,127045.0,Administrative Unit Not Available,35.75,33.25,SYR,2998.0,Quneitra,272.0,Syrian Arab Republic,130668.0,Quneitra,both,country_reassignment +177553,36.25,33.25,SYR,2999.0,Rural Damascus,272.0,Syrian Arab Republic,130641.0,As-Sanamayn,36.25,33.25,SYR,2992.0,Dar'A,272.0,Syrian Arab Republic,130641.0,As-Sanamayn,both,admin_reallocation +177554,36.75,33.25,SYR,2999.0,Rural Damascus,272.0,Syrian Arab Republic,130674.0,Duma,36.75,33.25,SYR,2999.0,Rural Damascus,272.0,Syrian Arab Republic,130674.0,Duma,both,identical +177555,37.25,33.25,SYR,2999.0,Rural Damascus,272.0,Syrian Arab Republic,130674.0,Duma,37.25,33.25,SYR,2999.0,Rural Damascus,272.0,Syrian Arab Republic,130674.0,Duma,both,identical +177556,37.75,33.25,SYR,2999.0,Rural Damascus,272.0,Syrian Arab Republic,130674.0,Duma,37.75,33.25,SYR,2999.0,Rural Damascus,272.0,Syrian Arab Republic,130674.0,Duma,both,identical +177557,38.25,33.25,SYR,2999.0,Rural Damascus,272.0,Syrian Arab Republic,130674.0,Duma,38.25,33.25,SYR,2999.0,Rural Damascus,272.0,Syrian Arab Republic,130674.0,Duma,both,identical +177558,38.75,33.25,JOR,2762.0,Mafraq,247.0,Jordan,128988.0,Al-Ruwaished,38.75,33.25,JOR,2762.0,Mafraq,247.0,Jordan,128988.0,Al-Ruwaished,both,identical +177559,39.25,33.25,IRQ,2681.0,Al-Anbar,243.0,Iraq,126944.0,Al-Rutba,39.25,33.25,IRQ,2681.0,Al-Anbar,243.0,Iraq,126944.0,Al-Rutba,both,identical +177560,39.75,33.25,IRQ,2681.0,Al-Anbar,243.0,Iraq,126944.0,Al-Rutba,39.75,33.25,IRQ,2681.0,Al-Anbar,243.0,Iraq,126944.0,Al-Rutba,both,identical +177561,40.25,33.25,IRQ,2681.0,Al-Anbar,243.0,Iraq,126944.0,Al-Rutba,40.25,33.25,IRQ,2681.0,Al-Anbar,243.0,Iraq,126944.0,Al-Rutba,both,identical +177562,40.75,33.25,IRQ,2681.0,Al-Anbar,243.0,Iraq,126944.0,Al-Rutba,40.75,33.25,IRQ,2681.0,Al-Anbar,243.0,Iraq,126944.0,Al-Rutba,both,identical +177563,41.25,33.25,IRQ,2681.0,Al-Anbar,243.0,Iraq,126944.0,Al-Rutba,41.25,33.25,IRQ,2681.0,Al-Anbar,243.0,Iraq,126944.0,Al-Rutba,both,identical +177564,41.75,33.25,IRQ,2681.0,Al-Anbar,243.0,Iraq,126944.0,Al-Rutba,41.75,33.25,IRQ,2681.0,Al-Anbar,243.0,Iraq,126944.0,Al-Rutba,both,identical +177565,42.25,33.25,IRQ,2681.0,Al-Anbar,243.0,Iraq,126944.0,Al-Rutba,42.25,33.25,IRQ,2681.0,Al-Anbar,243.0,Iraq,126944.0,Al-Rutba,both,identical +177566,42.75,33.25,IRQ,2681.0,Al-Anbar,243.0,Iraq,126943.0,Al-Ramadi,42.75,33.25,IRQ,2681.0,Al-Anbar,243.0,Iraq,126943.0,Al-Ramadi,both,identical +177567,43.25,33.25,IRQ,2681.0,Al-Anbar,243.0,Iraq,126943.0,Al-Ramadi,43.25,33.25,IRQ,2681.0,Al-Anbar,243.0,Iraq,126943.0,Al-Ramadi,both,identical +177568,43.75,33.25,IRQ,2681.0,Al-Anbar,243.0,Iraq,126941.0,Al-Falluja,43.75,33.25,IRQ,2681.0,Al-Anbar,243.0,Iraq,126941.0,Al-Falluja,both,identical +177569,44.25,33.25,IRQ,2688.0,Baghdad,243.0,Iraq,126984.0,Al-Mahmoudiya,44.25,33.25,IRQ,2688.0,Baghdad,243.0,Iraq,126984.0,Al-Mahmoudiya,both,identical +177570,44.75,33.25,IRQ,2688.0,Baghdad,243.0,Iraq,126983.0,Al-Mada'In,44.75,33.25,IRQ,2688.0,Baghdad,243.0,Iraq,126983.0,Al-Mada'In,both,identical +177571,45.25,33.25,IRQ,2689.0,Diyala,243.0,Iraq,126989.0,Baladruz,45.25,33.25,IRQ,2689.0,Diyala,243.0,Iraq,126989.0,Baladruz,both,identical +177572,45.75,33.25,IRQ,2689.0,Diyala,243.0,Iraq,126989.0,Baladruz,45.75,33.25,IRQ,2689.0,Diyala,243.0,Iraq,126989.0,Baladruz,both,identical +177573,46.25,33.25,IRN,2659.0,Ilam,242.0,Iran (Islamic Republic Of),126655.0,Mehran,46.25,33.25,IRN,2659.0,Ilam,242.0,Iran (Islamic Republic Of),126655.0,Mehran,both,identical +177574,46.75,33.25,IRN,2659.0,Ilam,242.0,Iran (Islamic Republic Of),126654.0,Malekshahi,46.75,33.25,IRN,2659.0,Ilam,242.0,Iran (Islamic Republic Of),126654.0,Malekshahi,both,identical +177575,47.25,33.25,IRN,2659.0,Ilam,242.0,Iran (Islamic Republic Of),126771.0,Kuhdasht,47.25,33.25,IRN,2666.0,Lorestan,242.0,Iran (Islamic Republic Of),126771.0,Kuhdasht,both,admin_reallocation +177576,47.75,33.25,IRN,2666.0,Lorestan,242.0,Iran (Islamic Republic Of),126772.0,Poldokhtar,47.75,33.25,IRN,2666.0,Lorestan,242.0,Iran (Islamic Republic Of),126772.0,Poldokhtar,both,identical +177577,48.25,33.25,IRN,2666.0,Lorestan,242.0,Iran (Islamic Republic Of),126772.0,Poldokhtar,48.25,33.25,IRN,2666.0,Lorestan,242.0,Iran (Islamic Republic Of),126772.0,Poldokhtar,both,identical +177578,48.75,33.25,IRN,2666.0,Lorestan,242.0,Iran (Islamic Republic Of),126770.0,Khorramabad,48.75,33.25,IRN,2666.0,Lorestan,242.0,Iran (Islamic Republic Of),126770.0,Khorramabad,both,identical +177579,49.25,33.25,IRN,2666.0,Lorestan,242.0,Iran (Islamic Republic Of),126764.0,Aligudarz,49.25,33.25,IRN,2666.0,Lorestan,242.0,Iran (Islamic Republic Of),126764.0,Aligudarz,both,identical +177580,49.75,33.25,IRN,2666.0,Lorestan,242.0,Iran (Islamic Republic Of),126764.0,Aligudarz,49.75,33.25,IRN,2666.0,Lorestan,242.0,Iran (Islamic Republic Of),126764.0,Aligudarz,both,identical +177581,50.25,33.25,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126660.0,Booeino Miyandasht,50.25,33.25,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126660.0,Booeino Miyandasht,both,identical +177582,50.75,33.25,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126676.0,Najafabad,50.75,33.25,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126676.0,Najafabad,both,identical +177583,51.25,33.25,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126679.0,Shahinshahro Meymeh,51.25,33.25,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126679.0,Shahinshahro Meymeh,both,identical +177584,51.75,33.25,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126677.0,Natanz,51.75,33.25,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126677.0,Natanz,both,identical +177585,52.25,33.25,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126659.0,Ardestan,52.25,33.25,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126659.0,Ardestan,both,identical +177586,52.75,33.25,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126659.0,Ardestan,52.75,33.25,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126659.0,Ardestan,both,identical +177587,53.25,33.25,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126675.0,Nain,53.25,33.25,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126675.0,Nain,both,identical +177588,53.75,33.25,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126675.0,Nain,53.75,33.25,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126675.0,Nain,both,identical +177589,54.25,33.25,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126675.0,Nain,54.25,33.25,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126675.0,Nain,both,identical +177590,54.75,33.25,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126672.0,Khorobiyabanak,54.75,33.25,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126672.0,Khorobiyabanak,both,identical +177591,55.25,33.25,IRN,2679.0,Yazd,242.0,Iran (Islamic Republic Of),126924.0,Ardekan,55.25,33.25,IRN,2679.0,Yazd,242.0,Iran (Islamic Republic Of),126924.0,Ardekan,both,identical +177592,55.75,33.25,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126888.0,Tabas,55.75,33.25,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126888.0,Tabas,both,identical +177593,56.25,33.25,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126888.0,Tabas,56.25,33.25,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126888.0,Tabas,both,identical +177594,56.75,33.25,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126888.0,Tabas,56.75,33.25,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126888.0,Tabas,both,identical +177595,57.25,33.25,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126888.0,Tabas,57.25,33.25,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126888.0,Tabas,both,identical +177596,57.75,33.25,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126886.0,Sarayan,57.75,33.25,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126886.0,Sarayan,both,identical +177597,58.25,33.25,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126886.0,Sarayan,58.25,33.25,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126886.0,Sarayan,both,identical +177598,58.75,33.25,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126886.0,Sarayan,58.75,33.25,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126886.0,Sarayan,both,identical +177599,59.25,33.25,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126879.0,Birjand,59.25,33.25,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126879.0,Birjand,both,identical +177600,59.75,33.25,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126881.0,Darmian,59.75,33.25,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126881.0,Darmian,both,identical +177601,60.25,33.25,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126889.0,Zirkouh,60.25,33.25,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126889.0,Zirkouh,both,identical +177602,60.75,33.25,AFG,2409.0,Hirat,223.0,Afghanistan,123856.0,Shindand,60.75,33.25,AFG,2409.0,Hirat,223.0,Afghanistan,123856.0,Shindand,both,identical +178185,-7.75,33.75,MAR,1477.0,Grand Casablanca-Settat,147.0,Morocco,104257.0,Casablanca,-7.75,33.75,MAR,1477.0,Grand Casablanca-Settat,147.0,Morocco,104257.0,Casablanca,both,identical +178186,-7.25,33.75,MAR,1477.0,Grand Casablanca-Settat,147.0,Morocco,104255.0,Benslimane,-7.25,33.75,MAR,1477.0,Grand Casablanca-Settat,147.0,Morocco,104255.0,Benslimane,both,identical +178187,-6.75,33.75,MAR,1481.0,Rabat-Salé-Kénitra,147.0,Morocco,104290.0,Skhirate- Témara,-6.75,33.75,MAR,1481.0,Rabat-Salé-Kénitra,147.0,Morocco,104290.0,Skhirate- Témara,both,identical +178188,-6.25,33.75,MAR,1481.0,Rabat-Salé-Kénitra,147.0,Morocco,104284.0,Khémisset,-6.25,33.75,MAR,1481.0,Rabat-Salé-Kénitra,147.0,Morocco,104284.0,Khémisset,both,identical +178189,-5.75,33.75,MAR,1476.0,Fès-Meknès,147.0,Morocco,104284.0,Khémisset,-5.75,33.75,MAR,1481.0,Rabat-Salé-Kénitra,147.0,Morocco,104284.0,Khémisset,both,admin_reallocation +178190,-5.25,33.75,MAR,1476.0,Fès-Meknès,147.0,Morocco,104247.0,El Hajeb,-5.25,33.75,MAR,1476.0,Fès-Meknès,147.0,Morocco,104247.0,El Hajeb,both,identical +178191,-4.75,33.75,MAR,1476.0,Fès-Meknès,147.0,Morocco,104252.0,Sefrou,-4.75,33.75,MAR,1476.0,Fès-Meknès,147.0,Morocco,104252.0,Sefrou,both,identical +178192,-4.25,33.75,MAR,1476.0,Fès-Meknès,147.0,Morocco,104252.0,Sefrou,-4.25,33.75,MAR,1476.0,Fès-Meknès,147.0,Morocco,104252.0,Sefrou,both,identical +178193,-3.75,33.75,MAR,1480.0,Oriental,147.0,Morocco,104279.0,Guercif,-3.75,33.75,MAR,1480.0,Oriental,147.0,Morocco,104279.0,Guercif,both,identical +178194,-3.25,33.75,MAR,1480.0,Oriental,147.0,Morocco,104246.0,Boulemane,-3.25,33.75,MAR,1476.0,Fès-Meknès,147.0,Morocco,104246.0,Boulemane,both,admin_reallocation +178195,-2.75,33.75,MAR,1480.0,Oriental,147.0,Morocco,104283.0,Taourirt,-2.75,33.75,MAR,1480.0,Oriental,147.0,Morocco,104283.0,Taourirt,both,identical +178196,-2.25,33.75,MAR,1480.0,Oriental,147.0,Morocco,104280.0,Jerada,-2.25,33.75,MAR,1480.0,Oriental,147.0,Morocco,104280.0,Jerada,both,identical +178197,-1.75,33.75,MAR,1480.0,Oriental,147.0,Morocco,104280.0,Jerada,-1.75,33.75,MAR,1480.0,Oriental,147.0,Morocco,104280.0,Jerada,both,identical +178198,-1.25,33.75,DZA,1031.0,Naama,101.0,Algeria,100977.0,Kasdir,-1.25,33.75,DZA,1031.0,Naama,101.0,Algeria,100977.0,Kasdir,both,identical +178199,-0.75,33.75,DZA,1031.0,Naama,101.0,Algeria,100979.0,Mekmen Ben Amar,-0.75,33.75,DZA,1031.0,Naama,101.0,Algeria,100979.0,Mekmen Ben Amar,both,identical +178200,-0.25,33.75,DZA,1031.0,Naama,101.0,Algeria,100976.0,El Biod,-0.25,33.75,DZA,1031.0,Naama,101.0,Algeria,100976.0,El Biod,both,identical +178201,0.25,33.75,DZA,1017.0,El Bayadh,101.0,Algeria,100550.0,Bougtoub,0.25,33.75,DZA,1017.0,El Bayadh,101.0,Algeria,100550.0,Bougtoub,both,identical +178202,0.75,33.75,DZA,1017.0,El Bayadh,101.0,Algeria,100562.0,Kef El Ahmar,0.75,33.75,DZA,1017.0,El Bayadh,101.0,Algeria,100562.0,Kef El Ahmar,both,identical +178203,1.25,33.75,DZA,1017.0,El Bayadh,101.0,Algeria,100568.0,Stitten,1.25,33.75,DZA,1017.0,El Bayadh,101.0,Algeria,100568.0,Stitten,both,identical +178204,1.75,33.75,DZA,1017.0,El Bayadh,101.0,Algeria,100567.0,Sidi Tifour,1.75,33.75,DZA,1017.0,El Bayadh,101.0,Algeria,100567.0,Sidi Tifour,both,identical +178205,2.25,33.75,DZA,1025.0,Laghouat,101.0,Algeria,100732.0,El Ghicha,2.25,33.75,DZA,1025.0,Laghouat,101.0,Algeria,100732.0,El Ghicha,both,identical +178206,2.75,33.75,DZA,1025.0,Laghouat,101.0,Algeria,100738.0,Kheneg,2.75,33.75,DZA,1025.0,Laghouat,101.0,Algeria,100738.0,Kheneg,both,identical +178207,3.25,33.75,DZA,1025.0,Laghouat,101.0,Algeria,100736.0,Hassi Dhelaa,3.25,33.75,DZA,1025.0,Laghouat,101.0,Algeria,100736.0,Hassi Dhelaa,both,identical +178208,3.75,33.75,DZA,1016.0,Djelfa,101.0,Algeria,100542.0,Selmana,3.75,33.75,DZA,1016.0,Djelfa,101.0,Algeria,100542.0,Selmana,both,identical +178209,4.25,33.75,DZA,1016.0,Djelfa,101.0,Algeria,100540.0,Oum Laadham,4.25,33.75,DZA,1016.0,Djelfa,101.0,Algeria,100540.0,Oum Laadham,both,identical +178210,4.75,33.75,DZA,1009.0,Biskra,101.0,Algeria,100324.0,Ras El Miaad,4.75,33.75,DZA,1009.0,Biskra,101.0,Algeria,100324.0,Ras El Miaad,both,identical +178211,5.25,33.75,DZA,1009.0,Biskra,101.0,Algeria,100324.0,Ras El Miaad,5.25,33.75,DZA,1009.0,Biskra,101.0,Algeria,100324.0,Ras El Miaad,both,identical +178212,5.75,33.75,DZA,1018.0,El Oued,101.0,Algeria,100575.0,El M'Ghair,5.75,33.75,DZA,1018.0,El Oued,101.0,Algeria,100575.0,El M'Ghair,both,identical +178213,6.25,33.75,DZA,1018.0,El Oued,101.0,Algeria,100590.0,Reguiba,6.25,33.75,DZA,1018.0,El Oued,101.0,Algeria,100590.0,Reguiba,both,identical +178214,6.75,33.75,DZA,1018.0,El Oued,101.0,Algeria,100578.0,Guemar,6.75,33.75,DZA,1018.0,El Oued,101.0,Algeria,100578.0,Guemar,both,identical +178215,7.25,33.75,DZA,1018.0,El Oued,101.0,Algeria,100581.0,Hassi Khelifa,7.25,33.75,DZA,1018.0,El Oued,101.0,Algeria,100581.0,Hassi Khelifa,both,identical +178216,7.75,33.75,TUN,1672.0,Tozeur,164.0,Tunisia,106216.0,Nefta,7.75,33.75,TUN,1672.0,Tozeur,164.0,Tunisia,106216.0,Nefta,both,identical +178217,8.25,33.75,TUN,1672.0,Tozeur,164.0,Tunisia,106075.0,R'Gim Maàtoug,8.25,33.75,TUN,1660.0,Kebili,164.0,Tunisia,106075.0,R'Gim Maàtoug,both,admin_reallocation +178218,8.75,33.75,TUN,1660.0,Kebili,164.0,Tunisia,106076.0,Souk El Ahed,8.75,33.75,TUN,1660.0,Kebili,164.0,Tunisia,106076.0,Souk El Ahed,both,identical +178219,9.25,33.75,TUN,1660.0,Kebili,164.0,Tunisia,106073.0,Kebili Nord,9.25,33.75,TUN,1660.0,Kebili,164.0,Tunisia,106073.0,Kebili Nord,both,identical +178220,9.75,33.75,TUN,1655.0,Gabes,164.0,Tunisia,106010.0,El Hamma,9.75,33.75,TUN,1655.0,Gabes,164.0,Tunisia,106010.0,El Hamma,both,identical +178221,10.25,33.75,TUN,1655.0,Gabes,164.0,Tunisia,106017.0,Mareth,10.25,33.75,TUN,1655.0,Gabes,164.0,Tunisia,106017.0,Mareth,both,identical +178222,10.75,33.75,TUN,1664.0,Mednine,164.0,Tunisia,106117.0,Sidi Makhloulf,10.75,33.75,TUN,1664.0,Mednine,164.0,Tunisia,106117.0,Sidi Makhloulf,both,identical +178223,11.25,33.75,TUN,1664.0,Mednine,164.0,Tunisia,106118.0,Zarzis,11.25,33.75,TUN,1664.0,Mednine,164.0,Tunisia,106118.0,Zarzis,both,identical +178271,35.25,33.75,LBN,2823.0,Mount Lebanon,253.0,Lebanon,129438.0,Chouf,35.25,33.75,LBN,2823.0,Mount Lebanon,253.0,Lebanon,129438.0,Chouf,both,identical +178272,35.75,33.75,LBN,2823.0,Mount Lebanon,253.0,Lebanon,129430.0,West Bekaa,35.75,33.75,LBN,2821.0,Bekaa,253.0,Lebanon,129430.0,West Bekaa,both,admin_reallocation +178273,36.25,33.75,SYR,2999.0,Rural Damascus,272.0,Syrian Arab Republic,130672.0,Az-Zabdani,36.25,33.75,SYR,2999.0,Rural Damascus,272.0,Syrian Arab Republic,130672.0,Az-Zabdani,both,identical +178274,36.75,33.75,SYR,2999.0,Rural Damascus,272.0,Syrian Arab Republic,130669.0,Al Qutayfah,36.75,33.75,SYR,2999.0,Rural Damascus,272.0,Syrian Arab Republic,130669.0,Al Qutayfah,both,identical +178275,37.25,33.75,SYR,2999.0,Rural Damascus,272.0,Syrian Arab Republic,130674.0,Duma,37.25,33.75,SYR,2999.0,Rural Damascus,272.0,Syrian Arab Republic,130674.0,Duma,both,identical +178276,37.75,33.75,SYR,2999.0,Rural Damascus,272.0,Syrian Arab Republic,130674.0,Duma,37.75,33.75,SYR,2999.0,Rural Damascus,272.0,Syrian Arab Republic,130674.0,Duma,both,identical +178277,38.25,33.75,SYR,2999.0,Rural Damascus,272.0,Syrian Arab Republic,130674.0,Duma,38.25,33.75,SYR,2999.0,Rural Damascus,272.0,Syrian Arab Republic,130674.0,Duma,both,identical +178278,38.75,33.75,SYR,2999.0,Rural Damascus,272.0,Syrian Arab Republic,130674.0,Duma,38.75,33.75,SYR,2999.0,Rural Damascus,272.0,Syrian Arab Republic,130674.0,Duma,both,identical +178279,39.25,33.75,SYR,2995.0,Homs,272.0,Syrian Arab Republic,130656.0,Tadmor,39.25,33.75,SYR,2995.0,Homs,272.0,Syrian Arab Republic,130656.0,Tadmor,both,identical +178280,39.75,33.75,IRQ,2681.0,Al-Anbar,243.0,Iraq,126944.0,Al-Rutba,39.75,33.75,IRQ,2681.0,Al-Anbar,243.0,Iraq,126944.0,Al-Rutba,both,identical +178281,40.25,33.75,IRQ,2681.0,Al-Anbar,243.0,Iraq,126944.0,Al-Rutba,40.25,33.75,IRQ,2681.0,Al-Anbar,243.0,Iraq,126944.0,Al-Rutba,both,identical +178282,40.75,33.75,IRQ,2681.0,Al-Anbar,243.0,Iraq,126944.0,Al-Rutba,40.75,33.75,IRQ,2681.0,Al-Anbar,243.0,Iraq,126944.0,Al-Rutba,both,identical +178283,41.25,33.75,IRQ,2681.0,Al-Anbar,243.0,Iraq,126944.0,Al-Rutba,41.25,33.75,IRQ,2681.0,Al-Anbar,243.0,Iraq,126944.0,Al-Rutba,both,identical +178284,41.75,33.75,IRQ,2681.0,Al-Anbar,243.0,Iraq,126945.0,Ana,41.75,33.75,IRQ,2681.0,Al-Anbar,243.0,Iraq,126945.0,Ana,both,identical +178285,42.25,33.75,IRQ,2681.0,Al-Anbar,243.0,Iraq,126947.0,Heet,42.25,33.75,IRQ,2681.0,Al-Anbar,243.0,Iraq,126947.0,Heet,both,identical +178286,42.75,33.75,IRQ,2681.0,Al-Anbar,243.0,Iraq,126947.0,Heet,42.75,33.75,IRQ,2681.0,Al-Anbar,243.0,Iraq,126947.0,Heet,both,identical +178287,43.25,33.75,IRQ,2681.0,Al-Anbar,243.0,Iraq,126943.0,Al-Ramadi,43.25,33.75,IRQ,2681.0,Al-Anbar,243.0,Iraq,126943.0,Al-Ramadi,both,identical +178288,43.75,33.75,IRQ,2696.0,Salah Al-Din,243.0,Iraq,127027.0,Balad,43.75,33.75,IRQ,2696.0,Salah Al-Din,243.0,Iraq,127027.0,Balad,both,identical +178289,44.25,33.75,IRQ,2696.0,Salah Al-Din,243.0,Iraq,127027.0,Balad,44.25,33.75,IRQ,2696.0,Salah Al-Din,243.0,Iraq,127027.0,Balad,both,identical +178290,44.75,33.75,IRQ,2689.0,Diyala,243.0,Iraq,126990.0,Baquba,44.75,33.75,IRQ,2689.0,Diyala,243.0,Iraq,126990.0,Baquba,both,identical +178291,45.25,33.75,IRQ,2689.0,Diyala,243.0,Iraq,126989.0,Baladruz,45.25,33.75,IRQ,2689.0,Diyala,243.0,Iraq,126989.0,Baladruz,both,identical +178292,45.75,33.75,IRN,2662.0,Kermanshah,242.0,Iran (Islamic Republic Of),126653.0,Ilam,45.75,33.75,IRQ,2689.0,Diyala,243.0,Iraq,126989.0,Baladruz,both,country_reassignment +178293,46.25,33.75,IRN,2659.0,Ilam,242.0,Iran (Islamic Republic Of),126653.0,Ilam,46.25,33.75,IRN,2659.0,Ilam,242.0,Iran (Islamic Republic Of),126653.0,Ilam,both,identical +178294,46.75,33.75,IRN,2659.0,Ilam,242.0,Iran (Islamic Republic Of),126708.0,Islamabad-E-Gharb,46.75,33.75,IRN,2662.0,Kermanshah,242.0,Iran (Islamic Republic Of),126708.0,Islamabad-E-Gharb,both,admin_reallocation +178295,47.25,33.75,IRN,2666.0,Lorestan,242.0,Iran (Islamic Republic Of),126771.0,Kuhdasht,47.25,33.75,IRN,2666.0,Lorestan,242.0,Iran (Islamic Republic Of),126771.0,Kuhdasht,both,identical +178296,47.75,33.75,IRN,2666.0,Lorestan,242.0,Iran (Islamic Republic Of),126771.0,Kuhdasht,47.75,33.75,IRN,2666.0,Lorestan,242.0,Iran (Islamic Republic Of),126771.0,Kuhdasht,both,identical +178297,48.25,33.75,IRN,2666.0,Lorestan,242.0,Iran (Islamic Republic Of),126774.0,Selseleh,48.25,33.75,IRN,2666.0,Lorestan,242.0,Iran (Islamic Republic Of),126774.0,Selseleh,both,identical +178298,48.75,33.75,IRN,2666.0,Lorestan,242.0,Iran (Islamic Republic Of),126766.0,Borujerd,48.75,33.75,IRN,2666.0,Lorestan,242.0,Iran (Islamic Republic Of),126766.0,Borujerd,both,identical +178299,49.25,33.75,IRN,2667.0,Markazi,242.0,Iran (Islamic Republic Of),126784.0,Shazand,49.25,33.75,IRN,2667.0,Markazi,242.0,Iran (Islamic Republic Of),126784.0,Shazand,both,identical +178300,49.75,33.75,IRN,2667.0,Markazi,242.0,Iran (Islamic Republic Of),126779.0,Khomein,49.75,33.75,IRN,2667.0,Markazi,242.0,Iran (Islamic Republic Of),126779.0,Khomein,both,identical +178301,50.25,33.75,IRN,2667.0,Markazi,242.0,Iran (Islamic Republic Of),126779.0,Khomein,50.25,33.75,IRN,2667.0,Markazi,242.0,Iran (Islamic Republic Of),126779.0,Khomein,both,identical +178302,50.75,33.75,IRN,2667.0,Markazi,242.0,Iran (Islamic Republic Of),126777.0,Delijan,50.75,33.75,IRN,2667.0,Markazi,242.0,Iran (Islamic Republic Of),126777.0,Delijan,both,identical +178303,51.25,33.75,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126669.0,Kashan,51.25,33.75,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126669.0,Kashan,both,identical +178304,51.75,33.75,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126677.0,Natanz,51.75,33.75,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126677.0,Natanz,both,identical +178305,52.25,33.75,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126659.0,Ardestan,52.25,33.75,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126659.0,Ardestan,both,identical +178306,52.75,33.75,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126659.0,Ardestan,52.75,33.75,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126659.0,Ardestan,both,identical +178307,53.25,33.75,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126675.0,Nain,53.25,33.75,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126675.0,Nain,both,identical +178308,53.75,33.75,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126675.0,Nain,53.75,33.75,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126675.0,Nain,both,identical +178309,54.25,33.75,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126675.0,Nain,54.25,33.75,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126675.0,Nain,both,identical +178310,54.75,33.75,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126672.0,Khorobiyabanak,54.75,33.75,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126672.0,Khorobiyabanak,both,identical +178311,55.25,33.75,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126672.0,Khorobiyabanak,55.25,33.75,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126672.0,Khorobiyabanak,both,identical +178312,55.75,33.75,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126888.0,Tabas,55.75,33.75,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126888.0,Tabas,both,identical +178313,56.25,33.75,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126888.0,Tabas,56.25,33.75,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126888.0,Tabas,both,identical +178314,56.75,33.75,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126888.0,Tabas,56.75,33.75,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126888.0,Tabas,both,identical +178315,57.25,33.75,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126880.0,Boshruyeh,57.25,33.75,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126880.0,Boshruyeh,both,identical +178316,57.75,33.75,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126882.0,Ferdows,57.75,33.75,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126882.0,Ferdows,both,identical +178317,58.25,33.75,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126886.0,Sarayan,58.25,33.75,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126886.0,Sarayan,both,identical +178318,58.75,33.75,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126885.0,Qaen,58.75,33.75,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126885.0,Qaen,both,identical +178319,59.25,33.75,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126885.0,Qaen,59.25,33.75,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126885.0,Qaen,both,identical +178320,59.75,33.75,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126889.0,Zirkouh,59.75,33.75,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126889.0,Zirkouh,both,identical +178321,60.25,33.75,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126889.0,Zirkouh,60.25,33.75,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126889.0,Zirkouh,both,identical +178322,60.75,33.75,AFG,2409.0,Hirat,223.0,Afghanistan,123845.0,Ghoryan,60.75,33.75,AFG,2409.0,Hirat,223.0,Afghanistan,123845.0,Ghoryan,both,identical +178907,-6.75,34.25,MAR,1481.0,Rabat-Salé-Kénitra,147.0,Morocco,104285.0,Kénitra,-6.75,34.25,MAR,1481.0,Rabat-Salé-Kénitra,147.0,Morocco,104285.0,Kénitra,both,identical +178908,-6.25,34.25,MAR,1481.0,Rabat-Salé-Kénitra,147.0,Morocco,104289.0,Sidi Slimane,-6.25,34.25,MAR,1481.0,Rabat-Salé-Kénitra,147.0,Morocco,104289.0,Sidi Slimane,both,identical +178909,-5.75,34.25,MAR,1481.0,Rabat-Salé-Kénitra,147.0,Morocco,104288.0,Sidi Kacem,-5.75,34.25,MAR,1481.0,Rabat-Salé-Kénitra,147.0,Morocco,104288.0,Sidi Kacem,both,identical +178910,-5.25,34.25,MAR,1476.0,Fès-Meknès,147.0,Morocco,104253.0,Taounate,-5.25,34.25,MAR,1476.0,Fès-Meknès,147.0,Morocco,104253.0,Taounate,both,identical +178911,-4.75,34.25,MAR,1476.0,Fès-Meknès,147.0,Morocco,104253.0,Taounate,-4.75,34.25,MAR,1476.0,Fès-Meknès,147.0,Morocco,104253.0,Taounate,both,identical +178912,-4.25,34.25,MAR,1476.0,Fès-Meknès,147.0,Morocco,104254.0,Taza,-4.25,34.25,MAR,1476.0,Fès-Meknès,147.0,Morocco,104254.0,Taza,both,identical +178913,-3.75,34.25,MAR,1480.0,Oriental,147.0,Morocco,104279.0,Guercif,-3.75,34.25,MAR,1480.0,Oriental,147.0,Morocco,104279.0,Guercif,both,identical +178914,-3.25,34.25,MAR,1480.0,Oriental,147.0,Morocco,104279.0,Guercif,-3.25,34.25,MAR,1480.0,Oriental,147.0,Morocco,104279.0,Guercif,both,identical +178915,-2.75,34.25,MAR,1480.0,Oriental,147.0,Morocco,104283.0,Taourirt,-2.75,34.25,MAR,1480.0,Oriental,147.0,Morocco,104283.0,Taourirt,both,identical +178916,-2.25,34.25,MAR,1480.0,Oriental,147.0,Morocco,104280.0,Jerada,-2.25,34.25,MAR,1480.0,Oriental,147.0,Morocco,104280.0,Jerada,both,identical +178917,-1.75,34.25,MAR,1480.0,Oriental,147.0,Morocco,104280.0,Jerada,-1.75,34.25,MAR,1480.0,Oriental,147.0,Morocco,104280.0,Jerada,both,identical +178918,-1.25,34.25,DZA,1048.0,Tlemcen,101.0,Algeria,100977.0,Kasdir,-1.25,34.25,DZA,1031.0,Naama,101.0,Algeria,100977.0,Kasdir,both,admin_reallocation +178919,-0.75,34.25,DZA,1031.0,Naama,101.0,Algeria,100979.0,Mekmen Ben Amar,-0.75,34.25,DZA,1031.0,Naama,101.0,Algeria,100979.0,Mekmen Ben Amar,both,identical +178920,-0.25,34.25,DZA,1038.0,Sidi Bel Abbes,101.0,Algeria,101195.0,Marhoum,-0.25,34.25,DZA,1038.0,Sidi Bel Abbes,101.0,Algeria,101195.0,Marhoum,both,identical +178921,0.25,34.25,DZA,1017.0,El Bayadh,101.0,Algeria,100550.0,Bougtoub,0.25,34.25,DZA,1017.0,El Bayadh,101.0,Algeria,100550.0,Bougtoub,both,identical +178922,0.75,34.25,DZA,1017.0,El Bayadh,101.0,Algeria,100564.0,Rogassa,0.75,34.25,DZA,1017.0,El Bayadh,101.0,Algeria,100564.0,Rogassa,both,identical +178923,1.25,34.25,DZA,1043.0,Tiaret,101.0,Algeria,101334.0,Chehaima,1.25,34.25,DZA,1043.0,Tiaret,101.0,Algeria,101334.0,Chehaima,both,identical +178924,1.75,34.25,DZA,1025.0,Laghouat,101.0,Algeria,100734.0,Gueltat Sidi Saad,1.75,34.25,DZA,1025.0,Laghouat,101.0,Algeria,100734.0,Gueltat Sidi Saad,both,identical +178925,2.25,34.25,DZA,1025.0,Laghouat,101.0,Algeria,100745.0,Sidi Bouzid,2.25,34.25,DZA,1025.0,Laghouat,101.0,Algeria,100745.0,Sidi Bouzid,both,identical +178926,2.75,34.25,DZA,1016.0,Djelfa,101.0,Algeria,100746.0,Sidi Makhlouf,2.75,34.25,DZA,1025.0,Laghouat,101.0,Algeria,100746.0,Sidi Makhlouf,both,admin_reallocation +178927,3.25,34.25,DZA,1016.0,Djelfa,101.0,Algeria,100524.0,Deldoul,3.25,34.25,DZA,1016.0,Djelfa,101.0,Algeria,100524.0,Deldoul,both,identical +178928,3.75,34.25,DZA,1016.0,Djelfa,101.0,Algeria,100542.0,Selmana,3.75,34.25,DZA,1016.0,Djelfa,101.0,Algeria,100542.0,Selmana,both,identical +178929,4.25,34.25,DZA,1009.0,Biskra,101.0,Algeria,100324.0,Ras El Miaad,4.25,34.25,DZA,1009.0,Biskra,101.0,Algeria,100324.0,Ras El Miaad,both,identical +178930,4.75,34.25,DZA,1009.0,Biskra,101.0,Algeria,100298.0,Besbes,4.75,34.25,DZA,1009.0,Biskra,101.0,Algeria,100298.0,Besbes,both,identical +178931,5.25,34.25,DZA,1009.0,Biskra,101.0,Algeria,100298.0,Besbes,5.25,34.25,DZA,1009.0,Biskra,101.0,Algeria,100298.0,Besbes,both,identical +178932,5.75,34.25,DZA,1018.0,El Oued,101.0,Algeria,100588.0,Oum Tiour,5.75,34.25,DZA,1018.0,El Oued,101.0,Algeria,100588.0,Oum Tiour,both,identical +178933,6.25,34.25,DZA,1018.0,El Oued,101.0,Algeria,100579.0,Hamraia,6.25,34.25,DZA,1018.0,El Oued,101.0,Algeria,100579.0,Hamraia,both,identical +178934,6.75,34.25,DZA,1018.0,El Oued,101.0,Algeria,100706.0,Babar,6.75,34.25,DZA,1024.0,Khenchela,101.0,Algeria,100706.0,Babar,both,admin_reallocation +178935,7.25,34.25,DZA,1018.0,El Oued,101.0,Algeria,100571.0,Beni Guecha,7.25,34.25,DZA,1018.0,El Oued,101.0,Algeria,100571.0,Beni Guecha,both,identical +178936,7.75,34.25,TUN,1672.0,Tozeur,164.0,Tunisia,106217.0,Tameghza,7.75,34.25,DZA,1042.0,Tebessa,101.0,Algeria,101322.0,Negrine,both,country_reassignment +178937,8.25,34.25,TUN,1656.0,Gafsa,164.0,Tunisia,106028.0,Metlaoui,8.25,34.25,TUN,1656.0,Gafsa,164.0,Tunisia,106028.0,Metlaoui,both,identical +178938,8.75,34.25,TUN,1656.0,Gafsa,164.0,Tunisia,106027.0,Mdhila,8.75,34.25,TUN,1656.0,Gafsa,164.0,Tunisia,106027.0,Mdhila,both,identical +178939,9.25,34.25,TUN,1656.0,Gafsa,164.0,Tunisia,106022.0,Belkhir,9.25,34.25,TUN,1656.0,Gafsa,164.0,Tunisia,106022.0,Belkhir,both,identical +178940,9.75,34.25,TUN,1655.0,Gabes,164.0,Tunisia,106171.0,Mezzouna,9.75,34.25,TUN,1668.0,Sidi Bouzid,164.0,Tunisia,106171.0,Mezzouna,both,admin_reallocation +178941,10.25,34.25,TUN,1667.0,Sfax,164.0,Tunisia,106162.0,Skhira,10.25,34.25,TUN,1667.0,Sfax,164.0,Tunisia,106162.0,Skhira,both,identical +178992,35.75,34.25,LBN,2824.0,North,253.0,Lebanon,129440.0,Jbeil,35.75,34.25,LBN,2823.0,Mount Lebanon,253.0,Lebanon,129440.0,Jbeil,both,admin_reallocation +178993,36.25,34.25,LBN,2819.0,Baalbek-El Hermel,253.0,Lebanon,129426.0,Baalbek,36.25,34.25,LBN,2819.0,Baalbek-El Hermel,253.0,Lebanon,129426.0,Baalbek,both,identical +178994,36.75,34.25,SYR,2995.0,Homs,272.0,Syrian Arab Republic,130655.0,Homs,36.75,34.25,SYR,2995.0,Homs,272.0,Syrian Arab Republic,130655.0,Homs,both,identical +178995,37.25,34.25,SYR,2995.0,Homs,272.0,Syrian Arab Republic,130655.0,Homs,37.25,34.25,SYR,2995.0,Homs,272.0,Syrian Arab Republic,130655.0,Homs,both,identical +178996,37.75,34.25,SYR,2995.0,Homs,272.0,Syrian Arab Republic,130656.0,Tadmor,37.75,34.25,SYR,2995.0,Homs,272.0,Syrian Arab Republic,130656.0,Tadmor,both,identical +178997,38.25,34.25,SYR,2995.0,Homs,272.0,Syrian Arab Republic,130656.0,Tadmor,38.25,34.25,SYR,2995.0,Homs,272.0,Syrian Arab Republic,130656.0,Tadmor,both,identical +178998,38.75,34.25,SYR,2995.0,Homs,272.0,Syrian Arab Republic,130656.0,Tadmor,38.75,34.25,SYR,2995.0,Homs,272.0,Syrian Arab Republic,130656.0,Tadmor,both,identical +178999,39.25,34.25,SYR,2995.0,Homs,272.0,Syrian Arab Republic,130656.0,Tadmor,39.25,34.25,SYR,2995.0,Homs,272.0,Syrian Arab Republic,130656.0,Tadmor,both,identical +179000,39.75,34.25,SYR,2995.0,Homs,272.0,Syrian Arab Republic,130656.0,Tadmor,39.75,34.25,SYR,2995.0,Homs,272.0,Syrian Arab Republic,130656.0,Tadmor,both,identical +179001,40.25,34.25,SYR,2993.0,Deir-Ez-Zor,272.0,Syrian Arab Republic,130644.0,Abu Kamal,40.25,34.25,SYR,2993.0,Deir-Ez-Zor,272.0,Syrian Arab Republic,130644.0,Abu Kamal,both,identical +179002,40.75,34.25,IRQ,2681.0,Al-Anbar,243.0,Iraq,126942.0,Al-Kaim,40.75,34.25,IRQ,2681.0,Al-Anbar,243.0,Iraq,126942.0,Al-Kaim,both,identical +179003,41.25,34.25,IRQ,2681.0,Al-Anbar,243.0,Iraq,126942.0,Al-Kaim,41.25,34.25,IRQ,2681.0,Al-Anbar,243.0,Iraq,126942.0,Al-Kaim,both,identical +179004,41.75,34.25,IRQ,2681.0,Al-Anbar,243.0,Iraq,126945.0,Ana,41.75,34.25,IRQ,2681.0,Al-Anbar,243.0,Iraq,126945.0,Ana,both,identical +179005,42.25,34.25,IRQ,2681.0,Al-Anbar,243.0,Iraq,126946.0,Haditha,42.25,34.25,IRQ,2681.0,Al-Anbar,243.0,Iraq,126946.0,Haditha,both,identical +179006,42.75,34.25,IRQ,2681.0,Al-Anbar,243.0,Iraq,126947.0,Heet,42.75,34.25,IRQ,2681.0,Al-Anbar,243.0,Iraq,126947.0,Heet,both,identical +179007,43.25,34.25,IRQ,2696.0,Salah Al-Din,243.0,Iraq,127029.0,Samarra,43.25,34.25,IRQ,2696.0,Salah Al-Din,243.0,Iraq,127029.0,Samarra,both,identical +179008,43.75,34.25,IRQ,2696.0,Salah Al-Din,243.0,Iraq,127029.0,Samarra,43.75,34.25,IRQ,2696.0,Salah Al-Din,243.0,Iraq,127029.0,Samarra,both,identical +179009,44.25,34.25,IRQ,2696.0,Salah Al-Din,243.0,Iraq,127025.0,Al-Daur,44.25,34.25,IRQ,2696.0,Salah Al-Din,243.0,Iraq,127025.0,Al-Daur,both,identical +179010,44.75,34.25,IRQ,2689.0,Diyala,243.0,Iraq,126987.0,Al-Khalis,44.75,34.25,IRQ,2689.0,Diyala,243.0,Iraq,126987.0,Al-Khalis,both,identical +179011,45.25,34.25,IRQ,2689.0,Diyala,243.0,Iraq,126991.0,Khanaqin,45.25,34.25,IRQ,2689.0,Diyala,243.0,Iraq,126991.0,Khanaqin,both,identical +179012,45.75,34.25,IRN,2662.0,Kermanshah,242.0,Iran (Islamic Republic Of),126706.0,Gilan-E-Gharb,45.75,34.25,IRN,2662.0,Kermanshah,242.0,Iran (Islamic Republic Of),126706.0,Gilan-E-Gharb,both,identical +179013,46.25,34.25,IRN,2662.0,Kermanshah,242.0,Iran (Islamic Republic Of),126705.0,Dalaho,46.25,34.25,IRN,2662.0,Kermanshah,242.0,Iran (Islamic Republic Of),126705.0,Dalaho,both,identical +179014,46.75,34.25,IRN,2662.0,Kermanshah,242.0,Iran (Islamic Republic Of),126711.0,Kermanshah,46.75,34.25,IRN,2662.0,Kermanshah,242.0,Iran (Islamic Republic Of),126711.0,Kermanshah,both,identical +179015,47.25,34.25,IRN,2662.0,Kermanshah,242.0,Iran (Islamic Republic Of),126711.0,Kermanshah,47.25,34.25,IRN,2662.0,Kermanshah,242.0,Iran (Islamic Republic Of),126711.0,Kermanshah,both,identical +179016,47.75,34.25,IRN,2666.0,Lorestan,242.0,Iran (Islamic Republic Of),126767.0,Delfan,47.75,34.25,IRN,2666.0,Lorestan,242.0,Iran (Islamic Republic Of),126767.0,Delfan,both,identical +179017,48.25,34.25,IRN,2657.0,Hamadan,242.0,Iran (Islamic Republic Of),126632.0,Nahavand,48.25,34.25,IRN,2657.0,Hamadan,242.0,Iran (Islamic Republic Of),126632.0,Nahavand,both,identical +179018,48.75,34.25,IRN,2657.0,Hamadan,242.0,Iran (Islamic Republic Of),126631.0,Malayer,48.75,34.25,IRN,2657.0,Hamadan,242.0,Iran (Islamic Republic Of),126631.0,Malayer,both,identical +179019,49.25,34.25,IRN,2667.0,Markazi,242.0,Iran (Islamic Republic Of),126780.0,Khondab,49.25,34.25,IRN,2667.0,Markazi,242.0,Iran (Islamic Republic Of),126780.0,Khondab,both,identical +179020,49.75,34.25,IRN,2667.0,Markazi,242.0,Iran (Islamic Republic Of),126775.0,Arak,49.75,34.25,IRN,2667.0,Markazi,242.0,Iran (Islamic Republic Of),126775.0,Arak,both,identical +179021,50.25,34.25,IRN,2667.0,Markazi,242.0,Iran (Islamic Republic Of),126775.0,Arak,50.25,34.25,IRN,2667.0,Markazi,242.0,Iran (Islamic Republic Of),126775.0,Arak,both,identical +179022,50.75,34.25,IRN,2671.0,Qom,242.0,Iran (Islamic Republic Of),126823.0,Qom,50.75,34.25,IRN,2671.0,Qom,242.0,Iran (Islamic Republic Of),126823.0,Qom,both,identical +179023,51.25,34.25,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126669.0,Kashan,51.25,34.25,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126669.0,Kashan,both,identical +179024,51.75,34.25,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126658.0,Aran-O-Bidgol,51.75,34.25,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126658.0,Aran-O-Bidgol,both,identical +179025,52.25,34.25,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126658.0,Aran-O-Bidgol,52.25,34.25,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126658.0,Aran-O-Bidgol,both,identical +179026,52.75,34.25,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126659.0,Ardestan,52.75,34.25,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126659.0,Ardestan,both,identical +179027,53.25,34.25,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126859.0,Sorkheh,53.25,34.25,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126859.0,Sorkheh,both,admin_reallocation +179028,53.75,34.25,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126675.0,Nain,53.75,34.25,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126675.0,Nain,both,identical +179029,54.25,34.25,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126853.0,Damghan,54.25,34.25,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126853.0,Damghan,both,admin_reallocation +179030,54.75,34.25,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126672.0,Khorobiyabanak,54.75,34.25,IRN,2660.0,Isfahan,242.0,Iran (Islamic Republic Of),126672.0,Khorobiyabanak,both,admin_reallocation +179031,55.25,34.25,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126858.0,Shahrud,55.25,34.25,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126858.0,Shahrud,both,identical +179032,55.75,34.25,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126888.0,Tabas,55.75,34.25,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126888.0,Tabas,both,identical +179033,56.25,34.25,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126888.0,Tabas,56.25,34.25,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126888.0,Tabas,both,identical +179034,56.75,34.25,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126888.0,Tabas,56.75,34.25,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126888.0,Tabas,both,identical +179035,57.25,34.25,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126880.0,Boshruyeh,57.25,34.25,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126880.0,Boshruyeh,both,identical +179036,57.75,34.25,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126882.0,Ferdows,57.75,34.25,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126882.0,Ferdows,both,identical +179037,58.25,34.25,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126882.0,Ferdows,58.25,34.25,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126882.0,Ferdows,both,admin_reallocation +179038,58.75,34.25,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126832.0,Gonabad,58.75,34.25,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126832.0,Gonabad,both,identical +179039,59.25,34.25,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126832.0,Gonabad,59.25,34.25,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126832.0,Gonabad,both,identical +179040,59.75,34.25,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126837.0,Khaf,59.75,34.25,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126837.0,Khaf,both,identical +179041,60.25,34.25,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126837.0,Khaf,60.25,34.25,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126837.0,Khaf,both,identical +179042,60.75,34.25,AFG,2409.0,Hirat,223.0,Afghanistan,123845.0,Ghoryan,60.75,34.25,AFG,2409.0,Hirat,223.0,Afghanistan,123845.0,Ghoryan,both,identical +179627,-6.75,34.75,MAR,1481.0,Rabat-Salé-Kénitra,147.0,Morocco,104285.0,Kénitra,-6.75,34.75,MAR,1481.0,Rabat-Salé-Kénitra,147.0,Morocco,104285.0,Kénitra,both,identical +179628,-6.25,34.75,MAR,1481.0,Rabat-Salé-Kénitra,147.0,Morocco,104285.0,Kénitra,-6.25,34.75,MAR,1481.0,Rabat-Salé-Kénitra,147.0,Morocco,104285.0,Kénitra,both,identical +179629,-5.75,34.75,MAR,1481.0,Rabat-Salé-Kénitra,147.0,Morocco,104288.0,Sidi Kacem,-5.75,34.75,MAR,1481.0,Rabat-Salé-Kénitra,147.0,Morocco,104288.0,Sidi Kacem,both,identical +179630,-5.25,34.75,MAR,1483.0,Tanger-Tétouan-Al Hoceima,147.0,Morocco,104302.0,Ouezzane,-5.25,34.75,MAR,1483.0,Tanger-Tétouan-Al Hoceima,147.0,Morocco,104302.0,Ouezzane,both,identical +179631,-4.75,34.75,MAR,1476.0,Fès-Meknès,147.0,Morocco,104253.0,Taounate,-4.75,34.75,MAR,1476.0,Fès-Meknès,147.0,Morocco,104253.0,Taounate,both,identical +179632,-4.25,34.75,MAR,1483.0,Tanger-Tétouan-Al Hoceima,147.0,Morocco,104297.0,Al Hoceima,-4.25,34.75,MAR,1483.0,Tanger-Tétouan-Al Hoceima,147.0,Morocco,104297.0,Al Hoceima,both,identical +179633,-3.75,34.75,MAR,1476.0,Fès-Meknès,147.0,Morocco,104254.0,Taza,-3.75,34.75,MAR,1476.0,Fès-Meknès,147.0,Morocco,104254.0,Taza,both,identical +179634,-3.25,34.75,MAR,1480.0,Oriental,147.0,Morocco,104279.0,Guercif,-3.25,34.75,MAR,1480.0,Oriental,147.0,Morocco,104279.0,Guercif,both,identical +179635,-2.75,34.75,MAR,1480.0,Oriental,147.0,Morocco,104283.0,Taourirt,-2.75,34.75,MAR,1480.0,Oriental,147.0,Morocco,104283.0,Taourirt,both,identical +179636,-2.25,34.75,MAR,1480.0,Oriental,147.0,Morocco,104276.0,Berkane,-2.25,34.75,MAR,1480.0,Oriental,147.0,Morocco,104276.0,Berkane,both,identical +179637,-1.75,34.75,DZA,1048.0,Tlemcen,101.0,Algeria,101500.0,Beni Boussaid,-1.75,34.75,MAR,1480.0,Oriental,147.0,Morocco,104282.0,Oujda-Angad,both,country_reassignment +179638,-1.25,34.75,DZA,1048.0,Tlemcen,101.0,Algeria,101514.0,El Gor,-1.25,34.75,DZA,1048.0,Tlemcen,101.0,Algeria,101514.0,El Gor,both,identical +179639,-0.75,34.75,DZA,1038.0,Sidi Bel Abbes,101.0,Algeria,101494.0,Ain Tallout,-0.75,34.75,DZA,1048.0,Tlemcen,101.0,Algeria,101494.0,Ain Tallout,both,admin_reallocation +179640,-0.25,34.75,DZA,1038.0,Sidi Bel Abbes,101.0,Algeria,101113.0,Youb,-0.25,34.75,DZA,1036.0,Saida,101.0,Algeria,101113.0,Youb,both,admin_reallocation +179641,0.25,34.75,DZA,1036.0,Saida,101.0,Algeria,101109.0,Sidi Ahmed,0.25,34.75,DZA,1036.0,Saida,101.0,Algeria,101109.0,Sidi Ahmed,both,identical +179642,0.75,34.75,DZA,1043.0,Tiaret,101.0,Algeria,101104.0,Maamora,0.75,34.75,DZA,1036.0,Saida,101.0,Algeria,101104.0,Maamora,both,admin_reallocation +179643,1.25,34.75,DZA,1043.0,Tiaret,101.0,Algeria,101334.0,Chehaima,1.25,34.75,DZA,1043.0,Tiaret,101.0,Algeria,101334.0,Chehaima,both,identical +179644,1.75,34.75,DZA,1043.0,Tiaret,101.0,Algeria,101351.0,Naima,1.75,34.75,DZA,1043.0,Tiaret,101.0,Algeria,101351.0,Naima,both,identical +179645,2.25,34.75,DZA,1043.0,Tiaret,101.0,Algeria,101338.0,Faidja,2.25,34.75,DZA,1043.0,Tiaret,101.0,Algeria,101338.0,Faidja,both,identical +179646,2.75,34.75,DZA,1016.0,Djelfa,101.0,Algeria,100546.0,Zaafrane,2.75,34.75,DZA,1016.0,Djelfa,101.0,Algeria,100546.0,Zaafrane,both,identical +179647,3.25,34.75,DZA,1016.0,Djelfa,101.0,Algeria,100525.0,Djelfa,3.25,34.75,DZA,1016.0,Djelfa,101.0,Algeria,100525.0,Djelfa,both,identical +179648,3.75,34.75,DZA,1016.0,Djelfa,101.0,Algeria,100538.0,Mliliha,3.75,34.75,DZA,1016.0,Djelfa,101.0,Algeria,100538.0,Mliliha,both,identical +179649,4.25,34.75,DZA,1026.0,M'Sila,101.0,Algeria,100752.0,Ain Errich,4.25,34.75,DZA,1026.0,M'Sila,101.0,Algeria,100752.0,Ain Errich,both,identical +179650,4.75,34.75,DZA,1009.0,Biskra,101.0,Algeria,100306.0,Ech Chaiba,4.75,34.75,DZA,1009.0,Biskra,101.0,Algeria,100306.0,Ech Chaiba,both,identical +179651,5.25,34.75,DZA,1009.0,Biskra,101.0,Algeria,100327.0,Tolga,5.25,34.75,DZA,1009.0,Biskra,101.0,Algeria,100327.0,Tolga,both,identical +179652,5.75,34.75,DZA,1009.0,Biskra,101.0,Algeria,100323.0,Oumache,5.75,34.75,DZA,1009.0,Biskra,101.0,Algeria,100323.0,Oumache,both,identical +179653,6.25,34.75,DZA,1009.0,Biskra,101.0,Algeria,100318.0,M'Ziraa,6.25,34.75,DZA,1009.0,Biskra,101.0,Algeria,100318.0,M'Ziraa,both,identical +179654,6.75,34.75,DZA,1024.0,Khenchela,101.0,Algeria,100706.0,Babar,6.75,34.75,DZA,1024.0,Khenchela,101.0,Algeria,100706.0,Babar,both,identical +179655,7.25,34.75,DZA,1024.0,Khenchela,101.0,Algeria,100706.0,Babar,7.25,34.75,DZA,1024.0,Khenchela,101.0,Algeria,100706.0,Babar,both,identical +179656,7.75,34.75,DZA,1042.0,Tebessa,101.0,Algeria,101327.0,Thlidjene,7.75,34.75,DZA,1042.0,Tebessa,101.0,Algeria,101327.0,Thlidjene,both,identical +179657,8.25,34.75,TUN,1659.0,Kasserine,164.0,Tunisia,106029.0,Oum El Araies,8.25,34.75,DZA,1042.0,Tebessa,101.0,Algeria,101304.0,Bir El Ater,both,country_reassignment +179658,8.75,34.75,TUN,1659.0,Kasserine,164.0,Tunisia,106066.0,Majel Bel Abbès,8.75,34.75,TUN,1659.0,Kasserine,164.0,Tunisia,106066.0,Majel Bel Abbès,both,identical +179659,9.25,34.75,TUN,1668.0,Sidi Bouzid,164.0,Tunisia,106174.0,Sidi Ali Ben Aoûn,9.25,34.75,TUN,1668.0,Sidi Bouzid,164.0,Tunisia,106174.0,Sidi Ali Ben Aoûn,both,identical +179660,9.75,34.75,TUN,1668.0,Sidi Bouzid,164.0,Tunisia,106173.0,Regueb,9.75,34.75,TUN,1668.0,Sidi Bouzid,164.0,Tunisia,106173.0,Regueb,both,identical +179661,10.25,34.75,TUN,1667.0,Sfax,164.0,Tunisia,106149.0,Bir Ali Ben Kelifa,10.25,34.75,TUN,1667.0,Sfax,164.0,Tunisia,106149.0,Bir Ali Ben Kelifa,both,identical +179662,10.75,34.75,TUN,1667.0,Sfax,164.0,Tunisia,106156.0,Menzel Chaker,10.75,34.75,TUN,1667.0,Sfax,164.0,Tunisia,106156.0,Menzel Chaker,both,identical +179663,11.25,34.75,TUN,1667.0,Sfax,164.0,Tunisia,106154.0,Kerkenah,11.25,34.75,TUN,1667.0,Sfax,164.0,Tunisia,106154.0,Kerkenah,both,identical +179712,35.75,34.75,SYR,3000.0,Tartous,272.0,Syrian Arab Republic,130683.0,Tartous,35.75,34.75,SYR,3000.0,Tartous,272.0,Syrian Arab Republic,130683.0,Tartous,both,identical +179713,36.25,34.75,SYR,2995.0,Homs,272.0,Syrian Arab Republic,130657.0,Tall Kalakh,36.25,34.75,LBN,2818.0,Akkar,253.0,Lebanon,129425.0,Akkar,both,country_reassignment +179714,36.75,34.75,SYR,2995.0,Homs,272.0,Syrian Arab Republic,130655.0,Homs,36.75,34.75,SYR,2995.0,Homs,272.0,Syrian Arab Republic,130655.0,Homs,both,identical +179715,37.25,34.75,SYR,2995.0,Homs,272.0,Syrian Arab Republic,130652.0,Al Makhrim,37.25,34.75,SYR,2995.0,Homs,272.0,Syrian Arab Republic,130652.0,Al Makhrim,both,identical +179716,37.75,34.75,SYR,2995.0,Homs,272.0,Syrian Arab Republic,130652.0,Al Makhrim,37.75,34.75,SYR,2995.0,Homs,272.0,Syrian Arab Republic,130652.0,Al Makhrim,both,identical +179717,38.25,34.75,SYR,2995.0,Homs,272.0,Syrian Arab Republic,130656.0,Tadmor,38.25,34.75,SYR,2995.0,Homs,272.0,Syrian Arab Republic,130656.0,Tadmor,both,identical +179718,38.75,34.75,SYR,2995.0,Homs,272.0,Syrian Arab Republic,130656.0,Tadmor,38.75,34.75,SYR,2995.0,Homs,272.0,Syrian Arab Republic,130656.0,Tadmor,both,identical +179719,39.25,34.75,SYR,2995.0,Homs,272.0,Syrian Arab Republic,130656.0,Tadmor,39.25,34.75,SYR,2995.0,Homs,272.0,Syrian Arab Republic,130656.0,Tadmor,both,identical +179720,39.75,34.75,SYR,2993.0,Deir-Ez-Zor,272.0,Syrian Arab Republic,130656.0,Tadmor,39.75,34.75,SYR,2995.0,Homs,272.0,Syrian Arab Republic,130656.0,Tadmor,both,admin_reallocation +179721,40.25,34.75,SYR,2993.0,Deir-Ez-Zor,272.0,Syrian Arab Republic,130645.0,Al Mayadin,40.25,34.75,SYR,2993.0,Deir-Ez-Zor,272.0,Syrian Arab Republic,130645.0,Al Mayadin,both,identical +179722,40.75,34.75,SYR,2993.0,Deir-Ez-Zor,272.0,Syrian Arab Republic,130644.0,Abu Kamal,40.75,34.75,SYR,2993.0,Deir-Ez-Zor,272.0,Syrian Arab Republic,130644.0,Abu Kamal,both,identical +179723,41.25,34.75,IRQ,2681.0,Al-Anbar,243.0,Iraq,126942.0,Al-Kaim,41.25,34.75,IRQ,2681.0,Al-Anbar,243.0,Iraq,126942.0,Al-Kaim,both,identical +179724,41.75,34.75,IRQ,2681.0,Al-Anbar,243.0,Iraq,126945.0,Ana,41.75,34.75,IRQ,2681.0,Al-Anbar,243.0,Iraq,126945.0,Ana,both,identical +179725,42.25,34.75,IRQ,2681.0,Al-Anbar,243.0,Iraq,126945.0,Ana,42.25,34.75,IRQ,2681.0,Al-Anbar,243.0,Iraq,126945.0,Ana,both,identical +179726,42.75,34.75,IRQ,2696.0,Salah Al-Din,243.0,Iraq,127028.0,Beygee,42.75,34.75,IRQ,2696.0,Salah Al-Din,243.0,Iraq,127028.0,Beygee,both,identical +179727,43.25,34.75,IRQ,2696.0,Salah Al-Din,243.0,Iraq,127028.0,Beygee,43.25,34.75,IRQ,2696.0,Salah Al-Din,243.0,Iraq,127028.0,Beygee,both,identical +179728,43.75,34.75,IRQ,2696.0,Salah Al-Din,243.0,Iraq,127030.0,Tikrit,43.75,34.75,IRQ,2696.0,Salah Al-Din,243.0,Iraq,127030.0,Tikrit,both,identical +179729,44.25,34.75,IRQ,2696.0,Salah Al-Din,243.0,Iraq,127025.0,Al-Daur,44.25,34.75,IRQ,2696.0,Salah Al-Din,243.0,Iraq,127025.0,Al-Daur,both,identical +179730,44.75,34.75,IRQ,2696.0,Salah Al-Din,243.0,Iraq,127031.0,Tooz Khurmato,44.75,34.75,IRQ,2696.0,Salah Al-Din,243.0,Iraq,127031.0,Tooz Khurmato,both,identical +179731,45.25,34.75,IRQ,2686.0,Al-Sulaymaniyah,243.0,Iraq,126971.0,Kalar,45.25,34.75,IRQ,2686.0,Al-Sulaymaniyah,243.0,Iraq,126971.0,Kalar,both,identical +179732,45.75,34.75,IRN,2662.0,Kermanshah,242.0,Iran (Islamic Republic Of),126716.0,Sarpol-E-Zahab,45.75,34.75,IRQ,2689.0,Diyala,243.0,Iraq,126991.0,Khanaqin,both,country_reassignment +179733,46.25,34.75,IRN,2662.0,Kermanshah,242.0,Iran (Islamic Republic Of),126717.0,Solas-E-Babajani,46.25,34.75,IRN,2662.0,Kermanshah,242.0,Iran (Islamic Republic Of),126717.0,Solas-E-Babajani,both,identical +179734,46.75,34.75,IRN,2662.0,Kermanshah,242.0,Iran (Islamic Republic Of),126758.0,Kamyaran,46.75,34.75,IRN,2665.0,Kurdistan,242.0,Iran (Islamic Republic Of),126758.0,Kamyaran,both,admin_reallocation +179735,47.25,34.75,IRN,2662.0,Kermanshah,242.0,Iran (Islamic Republic Of),126718.0,Sonqor,47.25,34.75,IRN,2662.0,Kermanshah,242.0,Iran (Islamic Republic Of),126718.0,Sonqor,both,identical +179736,47.75,34.75,IRN,2662.0,Kermanshah,242.0,Iran (Islamic Republic Of),126718.0,Sonqor,47.75,34.75,IRN,2662.0,Kermanshah,242.0,Iran (Islamic Republic Of),126718.0,Sonqor,both,identical +179737,48.25,34.75,IRN,2657.0,Hamadan,242.0,Iran (Islamic Republic Of),126634.0,Tuyserkan,48.25,34.75,IRN,2657.0,Hamadan,242.0,Iran (Islamic Republic Of),126634.0,Tuyserkan,both,identical +179738,48.75,34.75,IRN,2657.0,Hamadan,242.0,Iran (Islamic Republic Of),126629.0,Hamadan,48.75,34.75,IRN,2657.0,Hamadan,242.0,Iran (Islamic Republic Of),126629.0,Hamadan,both,identical +179739,49.25,34.75,IRN,2667.0,Markazi,242.0,Iran (Islamic Republic Of),126781.0,Komeijan,49.25,34.75,IRN,2667.0,Markazi,242.0,Iran (Islamic Republic Of),126781.0,Komeijan,both,identical +179740,49.75,34.75,IRN,2667.0,Markazi,242.0,Iran (Islamic Republic Of),126785.0,Tafresh,49.75,34.75,IRN,2667.0,Markazi,242.0,Iran (Islamic Republic Of),126785.0,Tafresh,both,identical +179741,50.25,34.75,IRN,2667.0,Markazi,242.0,Iran (Islamic Republic Of),126823.0,Qom,50.25,34.75,IRN,2671.0,Qom,242.0,Iran (Islamic Republic Of),126823.0,Qom,both,admin_reallocation +179742,50.75,34.75,IRN,2671.0,Qom,242.0,Iran (Islamic Republic Of),126823.0,Qom,50.75,34.75,IRN,2671.0,Qom,242.0,Iran (Islamic Republic Of),126823.0,Qom,both,identical +179743,51.25,34.75,IRN,2671.0,Qom,242.0,Iran (Islamic Republic Of),126823.0,Qom,51.25,34.75,IRN,2671.0,Qom,242.0,Iran (Islamic Republic Of),126823.0,Qom,both,identical +179744,51.75,34.75,IRN,2671.0,Qom,242.0,Iran (Islamic Republic Of),126823.0,Qom,51.75,34.75,IRN,2671.0,Qom,242.0,Iran (Islamic Republic Of),126823.0,Qom,both,identical +179745,52.25,34.75,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126854.0,Garmsar,52.25,34.75,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126854.0,Garmsar,both,identical +179746,52.75,34.75,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126852.0,Aradan,52.75,34.75,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126852.0,Aradan,both,identical +179747,53.25,34.75,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126859.0,Sorkheh,53.25,34.75,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126859.0,Sorkheh,both,identical +179748,53.75,34.75,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126857.0,Semnan,53.75,34.75,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126857.0,Semnan,both,identical +179749,54.25,34.75,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126853.0,Damghan,54.25,34.75,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126853.0,Damghan,both,identical +179750,54.75,34.75,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126858.0,Shahrud,54.75,34.75,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126858.0,Shahrud,both,identical +179751,55.25,34.75,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126858.0,Shahrud,55.25,34.75,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126858.0,Shahrud,both,identical +179752,55.75,34.75,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126858.0,Shahrud,55.75,34.75,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126858.0,Shahrud,both,identical +179753,56.25,34.75,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126858.0,Shahrud,56.25,34.75,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126858.0,Shahrud,both,identical +179754,56.75,34.75,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126888.0,Tabas,56.75,34.75,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126888.0,Tabas,both,identical +179755,57.25,34.75,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126888.0,Tabas,57.25,34.75,IRN,2675.0,South Khorasan,242.0,Iran (Islamic Republic Of),126888.0,Tabas,both,identical +179756,57.75,34.75,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126824.0,Bajestan,57.75,34.75,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126824.0,Bajestan,both,identical +179757,58.25,34.75,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126824.0,Bajestan,58.25,34.75,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126824.0,Bajestan,both,identical +179758,58.75,34.75,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126832.0,Gonabad,58.75,34.75,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126832.0,Gonabad,both,identical +179759,59.25,34.75,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126844.0,Rashtkhar,59.25,34.75,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126844.0,Rashtkhar,both,identical +179760,59.75,34.75,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126837.0,Khaf,59.75,34.75,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126837.0,Khaf,both,identical +179761,60.25,34.75,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126837.0,Khaf,60.25,34.75,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126837.0,Khaf,both,identical +179762,60.75,34.75,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126847.0,Taybad,60.75,34.75,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126847.0,Taybad,both,identical +179763,61.25,34.75,AFG,2409.0,Hirat,223.0,Afghanistan,123851.0,Kohsan,61.25,34.75,AFG,2409.0,Hirat,223.0,Afghanistan,123851.0,Kohsan,both,identical +180348,-6.25,35.25,MAR,1483.0,Tanger-Tétouan-Al Hoceima,147.0,Morocco,104300.0,Larache,-6.25,35.25,MAR,1483.0,Tanger-Tétouan-Al Hoceima,147.0,Morocco,104300.0,Larache,both,identical +180349,-5.75,35.25,MAR,1483.0,Tanger-Tétouan-Al Hoceima,147.0,Morocco,104300.0,Larache,-5.75,35.25,MAR,1483.0,Tanger-Tétouan-Al Hoceima,147.0,Morocco,104300.0,Larache,both,identical +180350,-5.25,35.25,MAR,1483.0,Tanger-Tétouan-Al Hoceima,147.0,Morocco,104298.0,Chefchaouen,-5.25,35.25,MAR,1483.0,Tanger-Tétouan-Al Hoceima,147.0,Morocco,104298.0,Chefchaouen,both,identical +180351,-4.75,35.25,MAR,1483.0,Tanger-Tétouan-Al Hoceima,147.0,Morocco,104298.0,Chefchaouen,-4.75,35.25,MAR,1483.0,Tanger-Tétouan-Al Hoceima,147.0,Morocco,104298.0,Chefchaouen,both,identical +180352,-4.25,35.25,MAR,1483.0,Tanger-Tétouan-Al Hoceima,147.0,Morocco,104297.0,Al Hoceima,-4.25,35.25,MAR,1483.0,Tanger-Tétouan-Al Hoceima,147.0,Morocco,104297.0,Al Hoceima,both,identical +180353,-3.75,35.25,MAR,1480.0,Oriental,147.0,Morocco,104277.0,Driouch,-3.75,35.25,MAR,1480.0,Oriental,147.0,Morocco,104277.0,Driouch,both,identical +180354,-3.25,35.25,MAR,1480.0,Oriental,147.0,Morocco,104281.0,Nador,-3.25,35.25,MAR,1480.0,Oriental,147.0,Morocco,104281.0,Nador,both,identical +180355,-2.75,35.25,MAR,1480.0,Oriental,147.0,Morocco,104281.0,Nador,-2.75,35.25,MAR,1480.0,Oriental,147.0,Morocco,104281.0,Nador,both,identical +180356,-2.25,35.25,MAR,1480.0,Oriental,147.0,Morocco,104276.0,Berkane,-2.25,35.25,MAR,1480.0,Oriental,147.0,Morocco,104276.0,Berkane,both,identical +180357,-1.75,35.25,DZA,1048.0,Tlemcen,101.0,Algeria,101503.0,Beni Ouarsous,-1.75,35.25,DZA,1048.0,Tlemcen,101.0,Algeria,101503.0,Beni Ouarsous,both,identical +180358,-1.25,35.25,DZA,1003.0,Ain-Temouchent,101.0,Algeria,101532.0,Sidi Abdelli,-1.25,35.25,DZA,1048.0,Tlemcen,101.0,Algeria,101532.0,Sidi Abdelli,both,admin_reallocation +180359,-0.75,35.25,DZA,1038.0,Sidi Bel Abbes,101.0,Algeria,100082.0,Oued Sebbah,-0.75,35.25,DZA,1003.0,Ain-Temouchent,101.0,Algeria,100082.0,Oued Sebbah,both,admin_reallocation +180360,-0.25,35.25,DZA,1038.0,Sidi Bel Abbes,101.0,Algeria,100806.0,Chorfa,-0.25,35.25,DZA,1027.0,Mascara,101.0,Algeria,100806.0,Chorfa,both,admin_reallocation +180361,0.25,35.25,DZA,1027.0,Mascara,101.0,Algeria,100802.0,Aouf,0.25,35.25,DZA,1027.0,Mascara,101.0,Algeria,100802.0,Aouf,both,identical +180362,0.75,35.25,DZA,1043.0,Tiaret,101.0,Algeria,101365.0,Takhmaret,0.75,35.25,DZA,1043.0,Tiaret,101.0,Algeria,101365.0,Takhmaret,both,identical +180363,1.25,35.25,DZA,1043.0,Tiaret,101.0,Algeria,101368.0,Tousnina,1.25,35.25,DZA,1043.0,Tiaret,101.0,Algeria,101368.0,Tousnina,both,identical +180364,1.75,35.25,DZA,1043.0,Tiaret,101.0,Algeria,101350.0,Nadorah,1.75,35.25,DZA,1043.0,Tiaret,101.0,Algeria,101350.0,Nadorah,both,identical +180365,2.25,35.25,DZA,1043.0,Tiaret,101.0,Algeria,101354.0,Rechaiga,2.25,35.25,DZA,1043.0,Tiaret,101.0,Algeria,101354.0,Rechaiga,both,identical +180366,2.75,35.25,DZA,1016.0,Djelfa,101.0,Algeria,100516.0,Ain Ouessara,2.75,35.25,DZA,1016.0,Djelfa,101.0,Algeria,100516.0,Ain Ouessara,both,identical +180367,3.25,35.25,DZA,1016.0,Djelfa,101.0,Algeria,100533.0,Had Sahary,3.25,35.25,DZA,1016.0,Djelfa,101.0,Algeria,100533.0,Had Sahary,both,identical +180368,3.75,35.25,DZA,1026.0,M'Sila,101.0,Algeria,100789.0,Sidi Ameur,3.75,35.25,DZA,1026.0,M'Sila,101.0,Algeria,100789.0,Sidi Ameur,both,identical +180369,4.25,35.25,DZA,1026.0,M'Sila,101.0,Algeria,100767.0,El Houamed,4.25,35.25,DZA,1026.0,M'Sila,101.0,Algeria,100767.0,El Houamed,both,identical +180370,4.75,35.25,DZA,1026.0,M'Sila,101.0,Algeria,100771.0,M'Cif,4.75,35.25,DZA,1026.0,M'Sila,101.0,Algeria,100771.0,M'Cif,both,identical +180371,5.25,35.25,DZA,1006.0,Batna,101.0,Algeria,100169.0,Bitam,5.25,35.25,DZA,1006.0,Batna,101.0,Algeria,100169.0,Bitam,both,identical +180372,5.75,35.25,DZA,1006.0,Batna,101.0,Algeria,100220.0,Tilatou,5.75,35.25,DZA,1006.0,Batna,101.0,Algeria,100220.0,Tilatou,both,identical +180373,6.25,35.25,DZA,1006.0,Batna,101.0,Algeria,100201.0,Oued Taga,6.25,35.25,DZA,1006.0,Batna,101.0,Algeria,100201.0,Oued Taga,both,identical +180374,6.75,35.25,DZA,1024.0,Khenchela,101.0,Algeria,100719.0,M'Sara,6.75,35.25,DZA,1024.0,Khenchela,101.0,Algeria,100719.0,M'Sara,both,identical +180375,7.25,35.25,DZA,1024.0,Khenchela,101.0,Algeria,100713.0,El Mahmal,7.25,35.25,DZA,1024.0,Khenchela,101.0,Algeria,100713.0,El Mahmal,both,identical +180376,7.75,35.25,DZA,1042.0,Tebessa,101.0,Algeria,101313.0,El Mazeraa,7.75,35.25,DZA,1042.0,Tebessa,101.0,Algeria,101313.0,El Mazeraa,both,identical +180377,8.25,35.25,DZA,1042.0,Tebessa,101.0,Algeria,101316.0,El Ogla El Malha,8.25,35.25,TUN,1659.0,Kasserine,164.0,Tunisia,106061.0,Foussana,both,country_reassignment +180378,8.75,35.25,TUN,1659.0,Kasserine,164.0,Tunisia,106065.0,Kasserine Sud,8.75,35.25,TUN,1659.0,Kasserine,164.0,Tunisia,106065.0,Kasserine Sud,both,identical +180379,9.25,35.25,TUN,1668.0,Sidi Bouzid,164.0,Tunisia,106067.0,Sbeitla,9.25,35.25,TUN,1659.0,Kasserine,164.0,Tunisia,106067.0,Sbeitla,both,admin_reallocation +180380,9.75,35.25,TUN,1658.0,Kairouan,164.0,Tunisia,106175.0,Sidi Bouzid Est,9.75,35.25,TUN,1668.0,Sidi Bouzid,164.0,Tunisia,106175.0,Sidi Bouzid Est,both,admin_reallocation +180381,10.25,35.25,TUN,1662.0,Mahdia,164.0,Tunisia,106156.0,Menzel Chaker,10.25,35.25,TUN,1667.0,Sfax,164.0,Tunisia,106156.0,Menzel Chaker,both,admin_reallocation +180382,10.75,35.25,TUN,1662.0,Mahdia,164.0,Tunisia,106152.0,El Hencha,10.75,35.25,TUN,1667.0,Sfax,164.0,Tunisia,106152.0,El Hencha,both,admin_reallocation +180383,11.25,35.25,TUN,1662.0,Mahdia,164.0,Tunisia,106090.0,Chebba,11.25,35.25,TUN,1662.0,Mahdia,164.0,Tunisia,106090.0,Chebba,both,identical +180432,35.75,35.25,SYR,2997.0,Lattakia,272.0,Syrian Arab Republic,130678.0,Banyas,35.75,35.25,SYR,3000.0,Tartous,272.0,Syrian Arab Republic,130678.0,Banyas,both,admin_reallocation +180433,36.25,35.25,SYR,2994.0,Hama,272.0,Syrian Arab Republic,130648.0,As-Suqaylabiyah,36.25,35.25,SYR,2994.0,Hama,272.0,Syrian Arab Republic,130648.0,As-Suqaylabiyah,both,identical +180434,36.75,35.25,SYR,2994.0,Hama,272.0,Syrian Arab Republic,130649.0,Hama,36.75,35.25,SYR,2994.0,Hama,272.0,Syrian Arab Republic,130649.0,Hama,both,identical +180435,37.25,35.25,SYR,2994.0,Hama,272.0,Syrian Arab Republic,130647.0,As-Salamiyeh,37.25,35.25,SYR,2994.0,Hama,272.0,Syrian Arab Republic,130647.0,As-Salamiyeh,both,identical +180436,37.75,35.25,SYR,2994.0,Hama,272.0,Syrian Arab Republic,130647.0,As-Salamiyeh,37.75,35.25,SYR,2994.0,Hama,272.0,Syrian Arab Republic,130647.0,As-Salamiyeh,both,identical +180437,38.25,35.25,SYR,2994.0,Hama,272.0,Syrian Arab Republic,130647.0,As-Salamiyeh,38.25,35.25,SYR,2994.0,Hama,272.0,Syrian Arab Republic,130647.0,As-Salamiyeh,both,identical +180438,38.75,35.25,SYR,2995.0,Homs,272.0,Syrian Arab Republic,130656.0,Tadmor,38.75,35.25,SYR,2995.0,Homs,272.0,Syrian Arab Republic,130656.0,Tadmor,both,identical +180439,39.25,35.25,SYR,2995.0,Homs,272.0,Syrian Arab Republic,130656.0,Tadmor,39.25,35.25,SYR,2995.0,Homs,272.0,Syrian Arab Republic,130656.0,Tadmor,both,identical +180440,39.75,35.25,SYR,2993.0,Deir-Ez-Zor,272.0,Syrian Arab Republic,130646.0,Deir-Ez-Zor,39.75,35.25,SYR,2993.0,Deir-Ez-Zor,272.0,Syrian Arab Republic,130646.0,Deir-Ez-Zor,both,identical +180441,40.25,35.25,SYR,2993.0,Deir-Ez-Zor,272.0,Syrian Arab Republic,130646.0,Deir-Ez-Zor,40.25,35.25,SYR,2993.0,Deir-Ez-Zor,272.0,Syrian Arab Republic,130646.0,Deir-Ez-Zor,both,identical +180442,40.75,35.25,SYR,2993.0,Deir-Ez-Zor,272.0,Syrian Arab Republic,130646.0,Deir-Ez-Zor,40.75,35.25,SYR,2993.0,Deir-Ez-Zor,272.0,Syrian Arab Republic,130646.0,Deir-Ez-Zor,both,identical +180443,41.25,35.25,IRQ,2695.0,Ninewa,243.0,Iraq,127016.0,Al-Baaj,41.25,35.25,IRQ,2695.0,Ninewa,243.0,Iraq,127016.0,Al-Baaj,both,identical +180444,41.75,35.25,IRQ,2695.0,Ninewa,243.0,Iraq,127016.0,Al-Baaj,41.75,35.25,IRQ,2695.0,Ninewa,243.0,Iraq,127016.0,Al-Baaj,both,identical +180445,42.25,35.25,IRQ,2695.0,Ninewa,243.0,Iraq,127018.0,Al-Hatra,42.25,35.25,IRQ,2695.0,Ninewa,243.0,Iraq,127018.0,Al-Hatra,both,identical +180446,42.75,35.25,IRQ,2695.0,Ninewa,243.0,Iraq,127018.0,Al-Hatra,42.75,35.25,IRQ,2695.0,Ninewa,243.0,Iraq,127018.0,Al-Hatra,both,identical +180447,43.25,35.25,IRQ,2696.0,Salah Al-Din,243.0,Iraq,127028.0,Beygee,43.25,35.25,IRQ,2696.0,Salah Al-Din,243.0,Iraq,127028.0,Beygee,both,identical +180448,43.75,35.25,IRQ,2693.0,Kirkuk,243.0,Iraq,127006.0,Al-Hawiga,43.75,35.25,IRQ,2693.0,Kirkuk,243.0,Iraq,127006.0,Al-Hawiga,both,identical +180449,44.25,35.25,IRQ,2693.0,Kirkuk,243.0,Iraq,127007.0,Daquq,44.25,35.25,IRQ,2693.0,Kirkuk,243.0,Iraq,127007.0,Daquq,both,identical +180450,44.75,35.25,IRQ,2686.0,Al-Sulaymaniyah,243.0,Iraq,126967.0,Chamchamal,44.75,35.25,IRQ,2686.0,Al-Sulaymaniyah,243.0,Iraq,126967.0,Chamchamal,both,identical +180451,45.25,35.25,IRQ,2686.0,Al-Sulaymaniyah,243.0,Iraq,126967.0,Chamchamal,45.25,35.25,IRQ,2686.0,Al-Sulaymaniyah,243.0,Iraq,126967.0,Chamchamal,both,identical +180452,45.75,35.25,IRQ,2686.0,Al-Sulaymaniyah,243.0,Iraq,126970.0,Halabcha,45.75,35.25,IRQ,2686.0,Al-Sulaymaniyah,243.0,Iraq,126970.0,Halabcha,both,identical +180453,46.25,35.25,IRN,2665.0,Kurdistan,242.0,Iran (Islamic Republic Of),126763.0,Sarvabad,46.25,35.25,IRN,2665.0,Kurdistan,242.0,Iran (Islamic Republic Of),126763.0,Sarvabad,both,identical +180454,46.75,35.25,IRN,2665.0,Kurdistan,242.0,Iran (Islamic Republic Of),126761.0,Sannandaj,46.75,35.25,IRN,2665.0,Kurdistan,242.0,Iran (Islamic Republic Of),126761.0,Sannandaj,both,identical +180455,47.25,35.25,IRN,2665.0,Kurdistan,242.0,Iran (Islamic Republic Of),126756.0,Dehgolan,47.25,35.25,IRN,2665.0,Kurdistan,242.0,Iran (Islamic Republic Of),126756.0,Dehgolan,both,identical +180456,47.75,35.25,IRN,2665.0,Kurdistan,242.0,Iran (Islamic Republic Of),126760.0,Qorveh,47.75,35.25,IRN,2665.0,Kurdistan,242.0,Iran (Islamic Republic Of),126760.0,Qorveh,both,identical +180457,48.25,35.25,IRN,2657.0,Hamadan,242.0,Iran (Islamic Republic Of),126630.0,Kabudarahang,48.25,35.25,IRN,2657.0,Hamadan,242.0,Iran (Islamic Republic Of),126630.0,Kabudarahang,both,identical +180458,48.75,35.25,IRN,2657.0,Hamadan,242.0,Iran (Islamic Republic Of),126630.0,Kabudarahang,48.75,35.25,IRN,2657.0,Hamadan,242.0,Iran (Islamic Republic Of),126630.0,Kabudarahang,both,identical +180459,49.25,35.25,IRN,2657.0,Hamadan,242.0,Iran (Islamic Republic Of),126633.0,Razan,49.25,35.25,IRN,2657.0,Hamadan,242.0,Iran (Islamic Republic Of),126633.0,Razan,both,identical +180460,49.75,35.25,IRN,2667.0,Markazi,242.0,Iran (Islamic Republic Of),126783.0,Saveh,49.75,35.25,IRN,2667.0,Markazi,242.0,Iran (Islamic Republic Of),126783.0,Saveh,both,identical +180461,50.25,35.25,IRN,2667.0,Markazi,242.0,Iran (Islamic Republic Of),126786.0,Zarandieh,50.25,35.25,IRN,2667.0,Markazi,242.0,Iran (Islamic Republic Of),126786.0,Zarandieh,both,identical +180462,50.75,35.25,IRN,2667.0,Markazi,242.0,Iran (Islamic Republic Of),126786.0,Zarandieh,50.75,35.25,IRN,2667.0,Markazi,242.0,Iran (Islamic Republic Of),126786.0,Zarandieh,both,identical +180463,51.25,35.25,IRN,2676.0,Tehran,242.0,Iran (Islamic Republic Of),126899.0,Rey,51.25,35.25,IRN,2676.0,Tehran,242.0,Iran (Islamic Republic Of),126899.0,Rey,both,identical +180464,51.75,35.25,IRN,2676.0,Tehran,242.0,Iran (Islamic Republic Of),126905.0,Varamin,51.75,35.25,IRN,2676.0,Tehran,242.0,Iran (Islamic Republic Of),126905.0,Varamin,both,identical +180465,52.25,35.25,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126854.0,Garmsar,52.25,35.25,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126854.0,Garmsar,both,identical +180466,52.75,35.25,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126852.0,Aradan,52.75,35.25,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126852.0,Aradan,both,identical +180467,53.25,35.25,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126859.0,Sorkheh,53.25,35.25,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126859.0,Sorkheh,both,identical +180468,53.75,35.25,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126857.0,Semnan,53.75,35.25,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126857.0,Semnan,both,identical +180469,54.25,35.25,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126853.0,Damghan,54.25,35.25,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126853.0,Damghan,both,identical +180470,54.75,35.25,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126858.0,Shahrud,54.75,35.25,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126858.0,Shahrud,both,identical +180471,55.25,35.25,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126858.0,Shahrud,55.25,35.25,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126858.0,Shahrud,both,identical +180472,55.75,35.25,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126858.0,Shahrud,55.75,35.25,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126858.0,Shahrud,both,identical +180473,56.25,35.25,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126858.0,Shahrud,56.25,35.25,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126858.0,Shahrud,both,identical +180474,56.75,35.25,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126858.0,Shahrud,56.75,35.25,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126858.0,Shahrud,both,identical +180475,57.25,35.25,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126826.0,Bardaskan,57.25,35.25,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126826.0,Bardaskan,both,identical +180476,57.75,35.25,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126826.0,Bardaskan,57.75,35.25,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126826.0,Bardaskan,both,identical +180477,58.25,35.25,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126838.0,Khalilabad,58.25,35.25,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126838.0,Khalilabad,both,identical +180478,58.75,35.25,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126840.0,Mahvelat,58.75,35.25,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126840.0,Mahvelat,both,identical +180479,59.25,35.25,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126848.0,Torbat-E-Heydarieh,59.25,35.25,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126848.0,Torbat-E-Heydarieh,both,identical +180480,59.75,35.25,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126851.0,Zave,59.75,35.25,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126851.0,Zave,both,identical +180481,60.25,35.25,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126849.0,Torbat-E-Jam,60.25,35.25,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126849.0,Torbat-E-Jam,both,identical +180482,60.75,35.25,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126849.0,Torbat-E-Jam,60.75,35.25,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126849.0,Torbat-E-Jam,both,identical +180483,61.25,35.25,AFG,2409.0,Hirat,223.0,Afghanistan,123846.0,Gulran,61.25,35.25,AFG,2409.0,Hirat,223.0,Afghanistan,123846.0,Gulran,both,identical +181068,-6.25,35.75,MAR,1483.0,Tanger-Tétouan-Al Hoceima,147.0,Morocco,104303.0,Tanger -Assilah,-6.25,35.75,MAR,1483.0,Tanger-Tétouan-Al Hoceima,147.0,Morocco,104303.0,Tanger -Assilah,both,identical +181069,-5.75,35.75,MAR,1483.0,Tanger-Tétouan-Al Hoceima,147.0,Morocco,104303.0,Tanger -Assilah,-5.75,35.75,MAR,1483.0,Tanger-Tétouan-Al Hoceima,147.0,Morocco,104303.0,Tanger -Assilah,both,identical +181070,-5.25,35.75,MAR,1483.0,Tanger-Tétouan-Al Hoceima,147.0,Morocco,104304.0,Tétouan,-5.25,35.75,MAR,1483.0,Tanger-Tétouan-Al Hoceima,147.0,Morocco,104304.0,Tétouan,both,identical +181078,-1.25,35.75,DZA,1003.0,Ain-Temouchent,101.0,Algeria,100076.0,El M'Said,-1.25,35.75,DZA,1003.0,Ain-Temouchent,101.0,Algeria,100076.0,El M'Said,both,identical +181079,-0.75,35.75,DZA,1032.0,Oran,101.0,Algeria,101004.0,Misserghin,-0.75,35.75,DZA,1032.0,Oran,101.0,Algeria,101004.0,Misserghin,both,identical +181080,-0.25,35.75,DZA,1027.0,Mascara,101.0,Algeria,100826.0,Moctadouz,-0.25,35.75,DZA,1027.0,Mascara,101.0,Algeria,100826.0,Moctadouz,both,identical +181081,0.25,35.75,DZA,1030.0,Mostaganem,101.0,Algeria,100827.0,Mohammadia,0.25,35.75,DZA,1027.0,Mascara,101.0,Algeria,100827.0,Mohammadia,both,admin_reallocation +181082,0.75,35.75,DZA,1035.0,Relizane,101.0,Algeria,101093.0,Sidi M'Hamed Benaouda,0.75,35.75,DZA,1035.0,Relizane,101.0,Algeria,101093.0,Sidi M'Hamed Benaouda,both,identical +181083,1.25,35.75,DZA,1035.0,Relizane,101.0,Algeria,101061.0,Ain Tarek,1.25,35.75,DZA,1035.0,Relizane,101.0,Algeria,101061.0,Ain Tarek,both,identical +181084,1.75,35.75,DZA,1046.0,Tissemsilt,101.0,Algeria,101420.0,Tissemsilt,1.75,35.75,DZA,1046.0,Tissemsilt,101.0,Algeria,101420.0,Tissemsilt,both,identical +181085,2.25,35.75,DZA,1028.0,Medea,101.0,Algeria,100854.0,Bouaiche,2.25,35.75,DZA,1028.0,Medea,101.0,Algeria,100854.0,Bouaiche,both,identical +181086,2.75,35.75,DZA,1028.0,Medea,101.0,Algeria,100857.0,Boughzoul,2.75,35.75,DZA,1028.0,Medea,101.0,Algeria,100857.0,Boughzoul,both,identical +181087,3.25,35.75,DZA,1028.0,Medea,101.0,Algeria,100520.0,Birine,3.25,35.75,DZA,1016.0,Djelfa,101.0,Algeria,100520.0,Birine,both,admin_reallocation +181088,3.75,35.75,DZA,1026.0,M'Sila,101.0,Algeria,100788.0,Sidi Aissa,3.75,35.75,DZA,1026.0,M'Sila,101.0,Algeria,100788.0,Sidi Aissa,both,identical +181089,4.25,35.75,DZA,1026.0,M'Sila,101.0,Algeria,100790.0,Sidi Hadjeres,4.25,35.75,DZA,1026.0,M'Sila,101.0,Algeria,100790.0,Sidi Hadjeres,both,identical +181090,4.75,35.75,DZA,1026.0,M'Sila,101.0,Algeria,100781.0,Ouled Addi Guebala,4.75,35.75,DZA,1026.0,M'Sila,101.0,Algeria,100781.0,Ouled Addi Guebala,both,identical +181091,5.25,35.75,DZA,1037.0,Setif,101.0,Algeria,100776.0,Magra,5.25,35.75,DZA,1026.0,M'Sila,101.0,Algeria,100776.0,Magra,both,admin_reallocation +181092,5.75,35.75,DZA,1006.0,Batna,101.0,Algeria,100205.0,Ouled Sellam,5.75,35.75,DZA,1006.0,Batna,101.0,Algeria,100205.0,Ouled Sellam,both,identical +181093,6.25,35.75,DZA,1006.0,Batna,101.0,Algeria,100222.0,Zana El Beida,6.25,35.75,DZA,1006.0,Batna,101.0,Algeria,100222.0,Zana El Beida,both,identical +181094,6.75,35.75,DZA,1034.0,Oum El Bouaghi,101.0,Algeria,101045.0,El Fedjoudj Boughrara Sao,6.75,35.75,DZA,1034.0,Oum El Bouaghi,101.0,Algeria,101045.0,El Fedjoudj Boughrara Sao,both,identical +181095,7.25,35.75,DZA,1034.0,Oum El Bouaghi,101.0,Algeria,101037.0,Ain Zitoun,7.25,35.75,DZA,1034.0,Oum El Bouaghi,101.0,Algeria,101037.0,Ain Zitoun,both,identical +181096,7.75,35.75,DZA,1034.0,Oum El Bouaghi,101.0,Algeria,101309.0,El Aouinet,7.75,35.75,DZA,1042.0,Tebessa,101.0,Algeria,101309.0,El Aouinet,both,admin_reallocation +181097,8.25,35.75,DZA,1042.0,Tebessa,101.0,Algeria,101300.0,Ain Zerga,8.25,35.75,TUN,1661.0,Le Kef,164.0,Tunisia,106082.0,Kalâat Snan,both,country_reassignment +181098,8.75,35.75,TUN,1661.0,Le Kef,164.0,Tunisia,106069.0,Thala,8.75,35.75,TUN,1659.0,Kasserine,164.0,Tunisia,106069.0,Thala,both,admin_reallocation +181099,9.25,35.75,TUN,1669.0,Siliana,164.0,Tunisia,106183.0,Er-Rouhia,9.25,35.75,TUN,1669.0,Siliana,164.0,Tunisia,106183.0,Er-Rouhia,both,identical +181100,9.75,35.75,TUN,1658.0,Kairouan,164.0,Tunisia,106049.0,El Ouslatia,9.75,35.75,TUN,1658.0,Kairouan,164.0,Tunisia,106049.0,El Ouslatia,both,identical +181101,10.25,35.75,TUN,1658.0,Kairouan,164.0,Tunisia,106053.0,Kairouan Sud,10.25,35.75,TUN,1658.0,Kairouan,164.0,Tunisia,106053.0,Kairouan Sud,both,identical +181102,10.75,35.75,TUN,1665.0,Monastir,164.0,Tunisia,106131.0,Zermadine,10.75,35.75,TUN,1665.0,Monastir,164.0,Tunisia,106131.0,Zermadine,both,identical +181103,11.25,35.75,TUN,1665.0,Monastir,164.0,Tunisia,106119.0,Bekalta,11.25,35.75,TUN,1665.0,Monastir,164.0,Tunisia,106119.0,Bekalta,both,identical +181152,35.75,35.75,SYR,2997.0,Lattakia,272.0,Syrian Arab Republic,130666.0,Lattakia,35.75,35.75,SYR,2997.0,Lattakia,272.0,Syrian Arab Republic,130666.0,Lattakia,both,identical +181153,36.25,35.75,SYR,2996.0,Idleb,272.0,Syrian Arab Republic,130662.0,Jisr-Ash-Shugur,36.25,35.75,SYR,2996.0,Idleb,272.0,Syrian Arab Republic,130662.0,Jisr-Ash-Shugur,both,identical +181154,36.75,35.75,SYR,2996.0,Idleb,272.0,Syrian Arab Republic,130658.0,Al Ma'Ra,36.75,35.75,SYR,2996.0,Idleb,272.0,Syrian Arab Republic,130658.0,Al Ma'Ra,both,identical +181155,37.25,35.75,SYR,2988.0,Aleppo,272.0,Syrian Arab Republic,130632.0,Jebel Saman,37.25,35.75,SYR,2988.0,Aleppo,272.0,Syrian Arab Republic,130632.0,Jebel Saman,both,identical +181156,37.75,35.75,SYR,2988.0,Aleppo,272.0,Syrian Arab Republic,130630.0,As-Safira,37.75,35.75,SYR,2988.0,Aleppo,272.0,Syrian Arab Republic,130630.0,As-Safira,both,identical +181157,38.25,35.75,SYR,2989.0,Ar-Raqqa,272.0,Syrian Arab Republic,130635.0,Ath-Thawrah,38.25,35.75,SYR,2989.0,Ar-Raqqa,272.0,Syrian Arab Republic,130635.0,Ath-Thawrah,both,identical +181158,38.75,35.75,SYR,2989.0,Ar-Raqqa,272.0,Syrian Arab Republic,130635.0,Ath-Thawrah,38.75,35.75,SYR,2989.0,Ar-Raqqa,272.0,Syrian Arab Republic,130635.0,Ath-Thawrah,both,identical +181159,39.25,35.75,SYR,2989.0,Ar-Raqqa,272.0,Syrian Arab Republic,130634.0,Ar-Raqqa,39.25,35.75,SYR,2989.0,Ar-Raqqa,272.0,Syrian Arab Republic,130634.0,Ar-Raqqa,both,identical +181160,39.75,35.75,SYR,2993.0,Deir-Ez-Zor,272.0,Syrian Arab Republic,130646.0,Deir-Ez-Zor,39.75,35.75,SYR,2993.0,Deir-Ez-Zor,272.0,Syrian Arab Republic,130646.0,Deir-Ez-Zor,both,identical +181161,40.25,35.75,SYR,2993.0,Deir-Ez-Zor,272.0,Syrian Arab Republic,130646.0,Deir-Ez-Zor,40.25,35.75,SYR,2993.0,Deir-Ez-Zor,272.0,Syrian Arab Republic,130646.0,Deir-Ez-Zor,both,identical +181162,40.75,35.75,SYR,2987.0,Al-Hasakeh,272.0,Syrian Arab Republic,130622.0,Al-Hasakeh,40.75,35.75,SYR,2987.0,Al-Hasakeh,272.0,Syrian Arab Republic,130622.0,Al-Hasakeh,both,identical +181163,41.25,35.75,SYR,2987.0,Al-Hasakeh,272.0,Syrian Arab Republic,130622.0,Al-Hasakeh,41.25,35.75,SYR,2987.0,Al-Hasakeh,272.0,Syrian Arab Republic,130622.0,Al-Hasakeh,both,identical +181164,41.75,35.75,IRQ,2695.0,Ninewa,243.0,Iraq,127016.0,Al-Baaj,41.75,35.75,IRQ,2695.0,Ninewa,243.0,Iraq,127016.0,Al-Baaj,both,identical +181165,42.25,35.75,IRQ,2695.0,Ninewa,243.0,Iraq,127018.0,Al-Hatra,42.25,35.75,IRQ,2695.0,Ninewa,243.0,Iraq,127018.0,Al-Hatra,both,identical +181166,42.75,35.75,IRQ,2695.0,Ninewa,243.0,Iraq,127018.0,Al-Hatra,42.75,35.75,IRQ,2695.0,Ninewa,243.0,Iraq,127018.0,Al-Hatra,both,identical +181167,43.25,35.75,IRQ,2695.0,Ninewa,243.0,Iraq,127019.0,Al-Mosul,43.25,35.75,IRQ,2695.0,Ninewa,243.0,Iraq,127019.0,Al-Mosul,both,identical +181168,43.75,35.75,IRQ,2691.0,Erbil,243.0,Iraq,127000.0,Makhmour,43.75,35.75,IRQ,2691.0,Erbil,243.0,Iraq,127000.0,Makhmour,both,identical +181169,44.25,35.75,IRQ,2693.0,Kirkuk,243.0,Iraq,127008.0,Dibis,44.25,35.75,IRQ,2693.0,Kirkuk,243.0,Iraq,127008.0,Dibis,both,identical +181170,44.75,35.75,IRQ,2686.0,Al-Sulaymaniyah,243.0,Iraq,126967.0,Chamchamal,44.75,35.75,IRQ,2686.0,Al-Sulaymaniyah,243.0,Iraq,126967.0,Chamchamal,both,identical +181171,45.25,35.75,IRQ,2686.0,Al-Sulaymaniyah,243.0,Iraq,126966.0,Al-Sulaymaniyah,45.25,35.75,IRQ,2686.0,Al-Sulaymaniyah,243.0,Iraq,126966.0,Al-Sulaymaniyah,both,identical +181172,45.75,35.75,IRQ,2686.0,Al-Sulaymaniyah,243.0,Iraq,126975.0,Sharbazher,45.75,35.75,IRQ,2686.0,Al-Sulaymaniyah,243.0,Iraq,126975.0,Sharbazher,both,identical +181173,46.25,35.75,IRN,2665.0,Kurdistan,242.0,Iran (Islamic Republic Of),126759.0,Marivan,46.25,35.75,IRN,2665.0,Kurdistan,242.0,Iran (Islamic Republic Of),126759.0,Marivan,both,identical +181174,46.75,35.75,IRN,2665.0,Kurdistan,242.0,Iran (Islamic Republic Of),126757.0,Divandarreh,46.75,35.75,IRN,2665.0,Kurdistan,242.0,Iran (Islamic Republic Of),126757.0,Divandarreh,both,identical +181175,47.25,35.75,IRN,2665.0,Kurdistan,242.0,Iran (Islamic Republic Of),126755.0,Bijar,47.25,35.75,IRN,2665.0,Kurdistan,242.0,Iran (Islamic Republic Of),126755.0,Bijar,both,identical +181176,47.75,35.75,IRN,2665.0,Kurdistan,242.0,Iran (Islamic Republic Of),126755.0,Bijar,47.75,35.75,IRN,2665.0,Kurdistan,242.0,Iran (Islamic Republic Of),126755.0,Bijar,both,identical +181177,48.25,35.75,IRN,2680.0,Zanjan,242.0,Iran (Islamic Republic Of),126935.0,Khodabandeh,48.25,35.75,IRN,2680.0,Zanjan,242.0,Iran (Islamic Republic Of),126935.0,Khodabandeh,both,identical +181178,48.75,35.75,IRN,2680.0,Zanjan,242.0,Iran (Islamic Republic Of),126935.0,Khodabandeh,48.75,35.75,IRN,2680.0,Zanjan,242.0,Iran (Islamic Republic Of),126935.0,Khodabandeh,both,identical +181179,49.25,35.75,IRN,2670.0,Qazvin,242.0,Iran (Islamic Republic Of),126819.0,Avaj,49.25,35.75,IRN,2670.0,Qazvin,242.0,Iran (Islamic Republic Of),126819.0,Avaj,both,identical +181180,49.75,35.75,IRN,2670.0,Qazvin,242.0,Iran (Islamic Republic Of),126820.0,Buin-Zahra,49.75,35.75,IRN,2670.0,Qazvin,242.0,Iran (Islamic Republic Of),126820.0,Buin-Zahra,both,identical +181181,50.25,35.75,IRN,2670.0,Qazvin,242.0,Iran (Islamic Republic Of),126820.0,Buin-Zahra,50.25,35.75,IRN,2670.0,Qazvin,242.0,Iran (Islamic Republic Of),126820.0,Buin-Zahra,both,identical +181182,50.75,35.75,IRN,2649.0,Alborz,242.0,Iran (Islamic Republic Of),126894.0,Malard,50.75,35.75,IRN,2676.0,Tehran,242.0,Iran (Islamic Republic Of),126894.0,Malard,both,admin_reallocation +181183,51.25,35.75,IRN,2676.0,Tehran,242.0,Iran (Islamic Republic Of),126904.0,Tehran,51.25,35.75,IRN,2676.0,Tehran,242.0,Iran (Islamic Republic Of),126904.0,Tehran,both,identical +181184,51.75,35.75,IRN,2676.0,Tehran,242.0,Iran (Islamic Republic Of),126903.0,Shemiranat,51.75,35.75,IRN,2676.0,Tehran,242.0,Iran (Islamic Republic Of),126903.0,Shemiranat,both,identical +181185,52.25,35.75,IRN,2676.0,Tehran,242.0,Iran (Islamic Republic Of),126891.0,Damavand,52.25,35.75,IRN,2676.0,Tehran,242.0,Iran (Islamic Republic Of),126891.0,Damavand,both,identical +181186,52.75,35.75,IRN,2676.0,Tehran,242.0,Iran (Islamic Republic Of),126892.0,Firuzkuh,52.75,35.75,IRN,2676.0,Tehran,242.0,Iran (Islamic Republic Of),126892.0,Firuzkuh,both,identical +181187,53.25,35.75,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126855.0,Mehdishahr,53.25,35.75,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126855.0,Mehdishahr,both,identical +181188,53.75,35.75,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126857.0,Semnan,53.75,35.75,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126857.0,Semnan,both,identical +181189,54.25,35.75,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126853.0,Damghan,54.25,35.75,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126853.0,Damghan,both,identical +181190,54.75,35.75,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126853.0,Damghan,54.75,35.75,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126853.0,Damghan,both,identical +181191,55.25,35.75,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126858.0,Shahrud,55.25,35.75,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126858.0,Shahrud,both,identical +181192,55.75,35.75,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126858.0,Shahrud,55.75,35.75,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126858.0,Shahrud,both,identical +181193,56.25,35.75,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126858.0,Shahrud,56.25,35.75,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126858.0,Shahrud,both,identical +181194,56.75,35.75,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126858.0,Shahrud,56.75,35.75,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126858.0,Shahrud,both,identical +181195,57.25,35.75,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126845.0,Sabzevar,57.25,35.75,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126845.0,Sabzevar,both,identical +181196,57.75,35.75,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126845.0,Sabzevar,57.75,35.75,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126845.0,Sabzevar,both,identical +181197,58.25,35.75,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126845.0,Sabzevar,58.25,35.75,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126845.0,Sabzevar,both,identical +181198,58.75,35.75,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126842.0,Nishapur,58.75,35.75,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126842.0,Nishapur,both,identical +181199,59.25,35.75,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126848.0,Torbat-E-Heydarieh,59.25,35.75,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126848.0,Torbat-E-Heydarieh,both,identical +181200,59.75,35.75,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126830.0,Fariman,59.75,35.75,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126830.0,Fariman,both,identical +181201,60.25,35.75,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126841.0,Mashhad,60.25,35.75,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126841.0,Mashhad,both,identical +181202,60.75,35.75,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126849.0,Torbat-E-Jam,60.75,35.75,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126849.0,Torbat-E-Jam,both,identical +181203,61.25,35.75,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126849.0,Torbat-E-Jam,61.25,35.75,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126849.0,Torbat-E-Jam,both,identical +181801,0.25,36.25,DZA,1030.0,Mostaganem,101.0,Algeria,100963.0,Sidi Ali,0.25,36.25,DZA,1030.0,Mostaganem,101.0,Algeria,100963.0,Sidi Ali,both,identical +181802,0.75,36.25,DZA,1014.0,Chlef,101.0,Algeria,100476.0,Dahra,0.75,36.25,DZA,1014.0,Chlef,101.0,Algeria,100476.0,Dahra,both,identical +181803,1.25,36.25,DZA,1014.0,Chlef,101.0,Algeria,100489.0,Ouled Fares,1.25,36.25,DZA,1014.0,Chlef,101.0,Algeria,100489.0,Ouled Fares,both,identical +181804,1.75,36.25,DZA,1002.0,Ain-Defla,101.0,Algeria,100061.0,Tachta Zegarra,1.75,36.25,DZA,1002.0,Ain-Defla,101.0,Algeria,100061.0,Tachta Zegarra,both,identical +181805,2.25,36.25,DZA,1002.0,Ain-Defla,101.0,Algeria,100035.0,Arib,2.25,36.25,DZA,1002.0,Ain-Defla,101.0,Algeria,100035.0,Arib,both,identical +181806,2.75,36.25,DZA,1028.0,Medea,101.0,Algeria,100907.0,Zoubiria,2.75,36.25,DZA,1028.0,Medea,101.0,Algeria,100907.0,Zoubiria,both,identical +181807,3.25,36.25,DZA,1028.0,Medea,101.0,Algeria,100856.0,Bouchrahil,3.25,36.25,DZA,1028.0,Medea,101.0,Algeria,100856.0,Bouchrahil,both,identical +181808,3.75,36.25,DZA,1012.0,Bouira,101.0,Algeria,100409.0,El Hachimia,3.75,36.25,DZA,1012.0,Bouira,101.0,Algeria,100409.0,El Hachimia,both,identical +181809,4.25,36.25,DZA,1012.0,Bouira,101.0,Algeria,100375.0,Mansoura,4.25,36.25,DZA,1011.0,Bordj Bou Arrer,101.0,Algeria,100375.0,Mansoura,both,admin_reallocation +181810,4.75,36.25,DZA,1011.0,Bordj Bou Arrer,101.0,Algeria,100376.0,Medjana,4.75,36.25,DZA,1011.0,Bordj Bou Arrer,101.0,Algeria,100376.0,Medjana,both,identical +181811,5.25,36.25,DZA,1037.0,Setif,101.0,Algeria,101115.0,Ain Arnat,5.25,36.25,DZA,1037.0,Setif,101.0,Algeria,101115.0,Ain Arnat,both,identical +181812,5.75,36.25,DZA,1037.0,Setif,101.0,Algeria,101126.0,Bazer Sakra,5.75,36.25,DZA,1037.0,Setif,101.0,Algeria,101126.0,Bazer Sakra,both,identical +181813,6.25,36.25,DZA,1029.0,Mila,101.0,Algeria,100925.0,Oued Athmania,6.25,36.25,DZA,1029.0,Mila,101.0,Algeria,100925.0,Oued Athmania,both,identical +181814,6.75,36.25,DZA,1015.0,Constantine,101.0,Algeria,100502.0,Ben Badis,6.75,36.25,DZA,1015.0,Constantine,101.0,Algeria,100502.0,Ben Badis,both,identical +181815,7.25,36.25,DZA,1021.0,Guelma,101.0,Algeria,100670.0,Tamlouka,7.25,36.25,DZA,1021.0,Guelma,101.0,Algeria,100670.0,Tamlouka,both,identical +181816,7.75,36.25,DZA,1040.0,Souk-Ahras,101.0,Algeria,101273.0,Mechroha,7.75,36.25,DZA,1040.0,Souk-Ahras,101.0,Algeria,101273.0,Mechroha,both,identical +181817,8.25,36.25,DZA,1040.0,Souk-Ahras,101.0,Algeria,101283.0,Sidi Fredj,8.25,36.25,TUN,1661.0,Le Kef,164.0,Tunisia,106086.0,Sakiet Sidi Youssef,both,country_reassignment +181818,8.75,36.25,TUN,1661.0,Le Kef,164.0,Tunisia,106085.0,Nebeur,8.75,36.25,TUN,1661.0,Le Kef,164.0,Tunisia,106085.0,Nebeur,both,identical +181819,9.25,36.25,TUN,1669.0,Siliana,164.0,Tunisia,106184.0,Gaâfour,9.25,36.25,TUN,1669.0,Siliana,164.0,Tunisia,106184.0,Gaâfour,both,identical +181820,9.75,36.25,TUN,1674.0,Zaghouan,164.0,Tunisia,106241.0,El Fahs,9.75,36.25,TUN,1674.0,Zaghouan,164.0,Tunisia,106241.0,El Fahs,both,identical +181821,10.25,36.25,TUN,1674.0,Zaghouan,164.0,Tunisia,106245.0,Zaghouan,10.25,36.25,TUN,1674.0,Zaghouan,164.0,Tunisia,106245.0,Zaghouan,both,identical +181822,10.75,36.25,TUN,1666.0,Nabeul,164.0,Tunisia,106140.0,Hammamet,10.75,36.25,TUN,1666.0,Nabeul,164.0,Tunisia,106140.0,Hammamet,both,identical +181859,29.25,36.25,TUR,3110.0,Antalya,278.0,Türkiye,131848.0,Kas,29.25,36.25,TUR,3110.0,Antalya,278.0,Türkiye,131848.0,Kas,both,identical +181860,29.75,36.25,TUR,3110.0,Antalya,278.0,Türkiye,131848.0,Kas,29.75,36.25,TUR,3110.0,Antalya,278.0,Türkiye,131848.0,Kas,both,identical +181861,30.25,36.25,TUR,3110.0,Antalya,278.0,Türkiye,131853.0,Kumluca,30.25,36.25,TUR,3110.0,Antalya,278.0,Türkiye,131853.0,Kumluca,both,identical +181862,30.75,36.25,TUR,3110.0,Antalya,278.0,Türkiye,131849.0,Kemer,30.75,36.25,TUR,3110.0,Antalya,278.0,Türkiye,131849.0,Kemer,both,identical +181865,32.25,36.25,TUR,3110.0,Antalya,278.0,Türkiye,131845.0,Gazipasa,32.25,36.25,TUR,3110.0,Antalya,278.0,Türkiye,131845.0,Gazipasa,both,identical +181866,32.75,36.25,TUR,3160.0,Mersin,278.0,Türkiye,132456.0,Anamur,32.75,36.25,TUR,3160.0,Mersin,278.0,Türkiye,132456.0,Anamur,both,identical +181867,33.25,36.25,TUR,3160.0,Mersin,278.0,Türkiye,132461.0,Gulnar,33.25,36.25,TUR,3160.0,Mersin,278.0,Türkiye,132461.0,Gulnar,both,identical +181868,33.75,36.25,TUR,3160.0,Mersin,278.0,Türkiye,132464.0,Silifke,33.75,36.25,TUR,3160.0,Mersin,278.0,Türkiye,132464.0,Silifke,both,identical +181869,34.25,36.25,TUR,3160.0,Mersin,278.0,Türkiye,132464.0,Silifke,34.25,36.25,TUR,3160.0,Mersin,278.0,Türkiye,132464.0,Silifke,both,identical +181872,35.75,36.25,TUR,3139.0,Hatay,278.0,Türkiye,132165.0,Arsuz,35.75,36.25,TUR,3139.0,Hatay,278.0,Türkiye,132165.0,Arsuz,both,identical +181873,36.25,36.25,TUR,3139.0,Hatay,278.0,Türkiye,132164.0,Antakya,36.25,36.25,TUR,3139.0,Hatay,278.0,Türkiye,132164.0,Antakya,both,identical +181874,36.75,36.25,SYR,2988.0,Aleppo,272.0,Syrian Arab Republic,130627.0,Afrin,36.75,36.25,SYR,2988.0,Aleppo,272.0,Syrian Arab Republic,130627.0,Afrin,both,identical +181875,37.25,36.25,SYR,2988.0,Aleppo,272.0,Syrian Arab Republic,130632.0,Jebel Saman,37.25,36.25,SYR,2988.0,Aleppo,272.0,Syrian Arab Republic,130632.0,Jebel Saman,both,identical +181876,37.75,36.25,SYR,2988.0,Aleppo,272.0,Syrian Arab Republic,130633.0,Menbij,37.75,36.25,SYR,2988.0,Aleppo,272.0,Syrian Arab Republic,130633.0,Menbij,both,identical +181877,38.25,36.25,SYR,2988.0,Aleppo,272.0,Syrian Arab Republic,130635.0,Ath-Thawrah,38.25,36.25,SYR,2989.0,Ar-Raqqa,272.0,Syrian Arab Republic,130635.0,Ath-Thawrah,both,admin_reallocation +181878,38.75,36.25,SYR,2989.0,Ar-Raqqa,272.0,Syrian Arab Republic,130634.0,Ar-Raqqa,38.75,36.25,SYR,2989.0,Ar-Raqqa,272.0,Syrian Arab Republic,130634.0,Ar-Raqqa,both,identical +181879,39.25,36.25,SYR,2989.0,Ar-Raqqa,272.0,Syrian Arab Republic,130634.0,Ar-Raqqa,39.25,36.25,SYR,2989.0,Ar-Raqqa,272.0,Syrian Arab Republic,130634.0,Ar-Raqqa,both,identical +181880,39.75,36.25,SYR,2989.0,Ar-Raqqa,272.0,Syrian Arab Republic,130636.0,Tell Abiad,39.75,36.25,SYR,2989.0,Ar-Raqqa,272.0,Syrian Arab Republic,130636.0,Tell Abiad,both,identical +181881,40.25,36.25,SYR,2987.0,Al-Hasakeh,272.0,Syrian Arab Republic,130622.0,Al-Hasakeh,40.25,36.25,SYR,2987.0,Al-Hasakeh,272.0,Syrian Arab Republic,130622.0,Al-Hasakeh,both,identical +181882,40.75,36.25,SYR,2987.0,Al-Hasakeh,272.0,Syrian Arab Republic,130622.0,Al-Hasakeh,40.75,36.25,SYR,2987.0,Al-Hasakeh,272.0,Syrian Arab Republic,130622.0,Al-Hasakeh,both,identical +181883,41.25,36.25,SYR,2987.0,Al-Hasakeh,272.0,Syrian Arab Republic,130622.0,Al-Hasakeh,41.25,36.25,SYR,2987.0,Al-Hasakeh,272.0,Syrian Arab Republic,130622.0,Al-Hasakeh,both,identical +181884,41.75,36.25,IRQ,2695.0,Ninewa,243.0,Iraq,127022.0,Sinjar,41.75,36.25,IRQ,2695.0,Ninewa,243.0,Iraq,127022.0,Sinjar,both,identical +181885,42.25,36.25,IRQ,2695.0,Ninewa,243.0,Iraq,127023.0,Telafar,42.25,36.25,IRQ,2695.0,Ninewa,243.0,Iraq,127023.0,Telafar,both,identical +181886,42.75,36.25,IRQ,2695.0,Ninewa,243.0,Iraq,127019.0,Al-Mosul,42.75,36.25,IRQ,2695.0,Ninewa,243.0,Iraq,127019.0,Al-Mosul,both,identical +181887,43.25,36.25,IRQ,2695.0,Ninewa,243.0,Iraq,127019.0,Al-Mosul,43.25,36.25,IRQ,2695.0,Ninewa,243.0,Iraq,127019.0,Al-Mosul,both,identical +181888,43.75,36.25,IRQ,2691.0,Erbil,243.0,Iraq,126998.0,Erbil,43.75,36.25,IRQ,2691.0,Erbil,243.0,Iraq,126998.0,Erbil,both,identical +181889,44.25,36.25,IRQ,2691.0,Erbil,243.0,Iraq,127002.0,Shaqlawa,44.25,36.25,IRQ,2691.0,Erbil,243.0,Iraq,127002.0,Shaqlawa,both,identical +181890,44.75,36.25,IRQ,2686.0,Al-Sulaymaniyah,243.0,Iraq,126974.0,Rania,44.75,36.25,IRQ,2686.0,Al-Sulaymaniyah,243.0,Iraq,126974.0,Rania,both,identical +181891,45.25,36.25,IRQ,2686.0,Al-Sulaymaniyah,243.0,Iraq,126973.0,Pshdar,45.25,36.25,IRQ,2686.0,Al-Sulaymaniyah,243.0,Iraq,126973.0,Pshdar,both,identical +181892,45.75,36.25,IRN,2678.0,West Azerbaijan,242.0,Iran (Islamic Republic Of),126754.0,Baneh,45.75,36.25,IRN,2665.0,Kurdistan,242.0,Iran (Islamic Republic Of),126754.0,Baneh,both,admin_reallocation +181893,46.25,36.25,IRN,2665.0,Kurdistan,242.0,Iran (Islamic Republic Of),126762.0,Saqqez,46.25,36.25,IRN,2665.0,Kurdistan,242.0,Iran (Islamic Republic Of),126762.0,Saqqez,both,identical +181894,46.75,36.25,IRN,2665.0,Kurdistan,242.0,Iran (Islamic Republic Of),126762.0,Saqqez,46.75,36.25,IRN,2665.0,Kurdistan,242.0,Iran (Islamic Republic Of),126762.0,Saqqez,both,identical +181895,47.25,36.25,IRN,2665.0,Kurdistan,242.0,Iran (Islamic Republic Of),126921.0,Takab,47.25,36.25,IRN,2678.0,West Azerbaijan,242.0,Iran (Islamic Republic Of),126921.0,Takab,both,admin_reallocation +181896,47.75,36.25,IRN,2665.0,Kurdistan,242.0,Iran (Islamic Republic Of),126755.0,Bijar,47.75,36.25,IRN,2665.0,Kurdistan,242.0,Iran (Islamic Republic Of),126755.0,Bijar,both,identical +181897,48.25,36.25,IRN,2680.0,Zanjan,242.0,Iran (Islamic Republic Of),126934.0,Eejrud,48.25,36.25,IRN,2680.0,Zanjan,242.0,Iran (Islamic Republic Of),126934.0,Eejrud,both,identical +181898,48.75,36.25,IRN,2680.0,Zanjan,242.0,Iran (Islamic Republic Of),126935.0,Khodabandeh,48.75,36.25,IRN,2680.0,Zanjan,242.0,Iran (Islamic Republic Of),126935.0,Khodabandeh,both,identical +181899,49.25,36.25,IRN,2680.0,Zanjan,242.0,Iran (Islamic Republic Of),126933.0,Abhar,49.25,36.25,IRN,2680.0,Zanjan,242.0,Iran (Islamic Republic Of),126933.0,Abhar,both,identical +181900,49.75,36.25,IRN,2670.0,Qazvin,242.0,Iran (Islamic Republic Of),126821.0,Qazvin,49.75,36.25,IRN,2670.0,Qazvin,242.0,Iran (Islamic Republic Of),126821.0,Qazvin,both,identical +181901,50.25,36.25,IRN,2670.0,Qazvin,242.0,Iran (Islamic Republic Of),126821.0,Qazvin,50.25,36.25,IRN,2670.0,Qazvin,242.0,Iran (Islamic Republic Of),126821.0,Qazvin,both,identical +181902,50.75,36.25,IRN,2649.0,Alborz,242.0,Iran (Islamic Republic Of),126517.0,Taleghan,50.75,36.25,IRN,2649.0,Alborz,242.0,Iran (Islamic Republic Of),126517.0,Taleghan,both,identical +181903,51.25,36.25,IRN,2668.0,Mazandaran,242.0,Iran (Islamic Republic Of),126792.0,Chalus,51.25,36.25,IRN,2668.0,Mazandaran,242.0,Iran (Islamic Republic Of),126792.0,Chalus,both,identical +181904,51.75,36.25,IRN,2668.0,Mazandaran,242.0,Iran (Islamic Republic Of),126802.0,Nur,51.75,36.25,IRN,2668.0,Mazandaran,242.0,Iran (Islamic Republic Of),126802.0,Nur,both,identical +181905,52.25,36.25,IRN,2668.0,Mazandaran,242.0,Iran (Islamic Republic Of),126788.0,Amol,52.25,36.25,IRN,2668.0,Mazandaran,242.0,Iran (Islamic Republic Of),126788.0,Amol,both,identical +181906,52.75,36.25,IRN,2668.0,Mazandaran,242.0,Iran (Islamic Republic Of),126789.0,Babol,52.75,36.25,IRN,2668.0,Mazandaran,242.0,Iran (Islamic Republic Of),126789.0,Babol,both,identical +181907,53.25,36.25,IRN,2668.0,Mazandaran,242.0,Iran (Islamic Republic Of),126805.0,Sari,53.25,36.25,IRN,2668.0,Mazandaran,242.0,Iran (Islamic Republic Of),126805.0,Sari,both,identical +181908,53.75,36.25,IRN,2668.0,Mazandaran,242.0,Iran (Islamic Republic Of),126805.0,Sari,53.75,36.25,IRN,2668.0,Mazandaran,242.0,Iran (Islamic Republic Of),126805.0,Sari,both,identical +181909,54.25,36.25,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126853.0,Damghan,54.25,36.25,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126853.0,Damghan,both,identical +181910,54.75,36.25,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126858.0,Shahrud,54.75,36.25,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126858.0,Shahrud,both,identical +181911,55.25,36.25,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126858.0,Shahrud,55.25,36.25,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126858.0,Shahrud,both,identical +181912,55.75,36.25,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126858.0,Shahrud,55.75,36.25,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126858.0,Shahrud,both,identical +181913,56.25,36.25,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126858.0,Shahrud,56.25,36.25,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126858.0,Shahrud,both,identical +181914,56.75,36.25,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126829.0,Davarzan,56.75,36.25,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126829.0,Davarzan,both,admin_reallocation +181915,57.25,36.25,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126829.0,Davarzan,57.25,36.25,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126829.0,Davarzan,both,identical +181916,57.75,36.25,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126845.0,Sabzevar,57.75,36.25,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126845.0,Sabzevar,both,identical +181917,58.25,36.25,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126831.0,Firuzeh,58.25,36.25,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126831.0,Firuzeh,both,identical +181918,58.75,36.25,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126842.0,Nishapur,58.75,36.25,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126842.0,Nishapur,both,identical +181919,59.25,36.25,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126850.0,Torghabe-O-Shandiz,59.25,36.25,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126850.0,Torghabe-O-Shandiz,both,identical +181920,59.75,36.25,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126841.0,Mashhad,59.75,36.25,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126841.0,Mashhad,both,identical +181921,60.25,36.25,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126841.0,Mashhad,60.25,36.25,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126841.0,Mashhad,both,identical +181922,60.75,36.25,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126846.0,Sarakhs,60.75,36.25,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126846.0,Sarakhs,both,identical +181923,61.25,36.25,TKM,3097.0,Ahal,277.0,Turkmenistan,131743.0,Administrative Unit Not Available,61.25,36.25,TKM,3097.0,Ahal,277.0,Turkmenistan,131743.0,Administrative Unit Not Available,both,identical +182523,1.25,36.75,DZA,1014.0,Chlef,101.0,Algeria,100498.0,Tenes,1.25,36.75,DZA,1014.0,Chlef,101.0,Algeria,100498.0,Tenes,both,identical +182524,1.75,36.75,DZA,1045.0,Tipaza,101.0,Algeria,101384.0,Gouraya,1.75,36.75,DZA,1045.0,Tipaza,101.0,Algeria,101384.0,Gouraya,both,identical +182525,2.25,36.75,DZA,1045.0,Tipaza,101.0,Algeria,101380.0,Cherchel,2.25,36.75,DZA,1045.0,Tipaza,101.0,Algeria,101380.0,Cherchel,both,identical +182526,2.75,36.75,DZA,1010.0,Blida,101.0,Algeria,101387.0,Hattatba,2.75,36.75,DZA,1045.0,Tipaza,101.0,Algeria,101387.0,Hattatba,both,admin_reallocation +182527,3.25,36.75,DZA,1004.0,Alger,101.0,Algeria,100345.0,Larbaa,3.25,36.75,DZA,1010.0,Blida,101.0,Algeria,100345.0,Larbaa,both,admin_reallocation +182528,3.75,36.75,DZA,1013.0,Boumerdes,101.0,Algeria,100438.0,Bordj Menaiel,3.75,36.75,DZA,1013.0,Boumerdes,101.0,Algeria,100438.0,Bordj Menaiel,both,identical +182529,4.25,36.75,DZA,1047.0,Tizi Ouzou,101.0,Algeria,101442.0,Azeffoun,4.25,36.75,DZA,1047.0,Tizi Ouzou,101.0,Algeria,101442.0,Azeffoun,both,identical +182530,4.75,36.75,DZA,1008.0,Bejaia,101.0,Algeria,100255.0,Beni Ksila,4.75,36.75,DZA,1008.0,Bejaia,101.0,Algeria,100255.0,Beni Ksila,both,identical +182531,5.25,36.75,DZA,1008.0,Bejaia,101.0,Algeria,100260.0,Boukhelifa,5.25,36.75,DZA,1008.0,Bejaia,101.0,Algeria,100260.0,Boukhelifa,both,identical +182532,5.75,36.75,DZA,1023.0,Jijel,101.0,Algeria,100703.0,Texenna,5.75,36.75,DZA,1023.0,Jijel,101.0,Algeria,100703.0,Texenna,both,identical +182533,6.25,36.75,DZA,1023.0,Jijel,101.0,Algeria,100689.0,El Milia,6.25,36.75,DZA,1023.0,Jijel,101.0,Algeria,100689.0,El Milia,both,identical +182534,6.75,36.75,DZA,1039.0,Skikda,101.0,Algeria,100511.0,Zighoud Youcef,6.75,36.75,DZA,1015.0,Constantine,101.0,Algeria,100511.0,Zighoud Youcef,both,admin_reallocation +182535,7.25,36.75,DZA,1039.0,Skikda,101.0,Algeria,101232.0,Ben Azzouz,7.25,36.75,DZA,1039.0,Skikda,101.0,Algeria,101232.0,Ben Azzouz,both,identical +182536,7.75,36.75,DZA,1005.0,Annaba,101.0,Algeria,100611.0,Chihani,7.75,36.75,DZA,1019.0,El-Tarf,101.0,Algeria,100611.0,Chihani,both,admin_reallocation +182537,8.25,36.75,DZA,1019.0,El-Tarf,101.0,Algeria,100615.0,El Kala,8.25,36.75,DZA,1019.0,El-Tarf,101.0,Algeria,100615.0,El Kala,both,identical +182538,8.75,36.75,TUN,1657.0,Jendouba,164.0,Tunisia,106035.0,Ain Draham,8.75,36.75,TUN,1657.0,Jendouba,164.0,Tunisia,106035.0,Ain Draham,both,identical +182539,9.25,36.75,TUN,1652.0,Beja,164.0,Tunisia,105997.0,Djoumine,9.25,36.75,TUN,1654.0,Bizerte,164.0,Tunisia,105997.0,Djoumine,both,admin_reallocation +182540,9.75,36.75,TUN,1663.0,Manouba,164.0,Tunisia,105978.0,Medjez El Bab,9.75,36.75,TUN,1652.0,Beja,164.0,Tunisia,105978.0,Medjez El Bab,both,admin_reallocation +182541,10.25,36.75,TUN,1653.0,Ben Arous,164.0,Tunisia,105993.0,Mornag,10.25,36.75,TUN,1653.0,Ben Arous,164.0,Tunisia,105993.0,Mornag,both,identical +182542,10.75,36.75,TUN,1666.0,Nabeul,164.0,Tunisia,106147.0,Takelsa,10.75,36.75,TUN,1666.0,Nabeul,164.0,Tunisia,106147.0,Takelsa,both,identical +182543,11.25,36.75,TUN,1666.0,Nabeul,164.0,Tunisia,106141.0,Kelibia,11.25,36.75,TUN,1666.0,Nabeul,164.0,Tunisia,106141.0,Kelibia,both,identical +182575,27.25,36.75,GRC,3473.0,Aigaioy,305.0,Greece,135886.0,Notioy Aigaioy,27.25,36.75,GRC,3473.0,Aigaioy,305.0,Greece,135886.0,Notioy Aigaioy,both,identical +182576,27.75,36.75,TUR,3161.0,Mugla,278.0,Türkiye,132470.0,Datca,27.75,36.75,TUR,3161.0,Mugla,278.0,Türkiye,132470.0,Datca,both,identical +182577,28.25,36.75,TUR,3161.0,Mugla,278.0,Türkiye,132474.0,Marmaris,28.25,36.75,TUR,3161.0,Mugla,278.0,Türkiye,132474.0,Marmaris,both,identical +182578,28.75,36.75,TUR,3161.0,Mugla,278.0,Türkiye,132473.0,Koycegiz,28.75,36.75,TUR,3161.0,Mugla,278.0,Türkiye,132473.0,Koycegiz,both,identical +182579,29.25,36.75,TUR,3161.0,Mugla,278.0,Türkiye,132478.0,Seydikemer,29.25,36.75,TUR,3161.0,Mugla,278.0,Türkiye,132478.0,Seydikemer,both,identical +182580,29.75,36.75,TUR,3110.0,Antalya,278.0,Türkiye,132478.0,Seydikemer,29.75,36.75,TUR,3161.0,Mugla,278.0,Türkiye,132478.0,Seydikemer,both,admin_reallocation +182581,30.25,36.75,TUR,3110.0,Antalya,278.0,Türkiye,131853.0,Kumluca,30.25,36.75,TUR,3110.0,Antalya,278.0,Türkiye,131853.0,Kumluca,both,identical +182582,30.75,36.75,TUR,3110.0,Antalya,278.0,Türkiye,131851.0,Konyaalti,30.75,36.75,TUR,3110.0,Antalya,278.0,Türkiye,131851.0,Konyaalti,both,identical +182583,31.25,36.75,TUR,3110.0,Antalya,278.0,Türkiye,131854.0,Manavgat,31.25,36.75,TUR,3110.0,Antalya,278.0,Türkiye,131854.0,Manavgat,both,identical +182584,31.75,36.75,TUR,3110.0,Antalya,278.0,Türkiye,131838.0,Akseki,31.75,36.75,TUR,3110.0,Antalya,278.0,Türkiye,131838.0,Akseki,both,identical +182585,32.25,36.75,TUR,3110.0,Antalya,278.0,Türkiye,131846.0,Gundogmus,32.25,36.75,TUR,3110.0,Antalya,278.0,Türkiye,131846.0,Gundogmus,both,identical +182586,32.75,36.75,TUR,3146.0,Karaman,278.0,Türkiye,132283.0,Ermenek,32.75,36.75,TUR,3146.0,Karaman,278.0,Türkiye,132283.0,Ermenek,both,identical +182587,33.25,36.75,TUR,3160.0,Mersin,278.0,Türkiye,132463.0,Mut,33.25,36.75,TUR,3160.0,Mersin,278.0,Türkiye,132463.0,Mut,both,identical +182588,33.75,36.75,TUR,3160.0,Mersin,278.0,Türkiye,132464.0,Silifke,33.75,36.75,TUR,3160.0,Mersin,278.0,Türkiye,132464.0,Silifke,both,identical +182589,34.25,36.75,TUR,3160.0,Mersin,278.0,Türkiye,132460.0,Erdemli,34.25,36.75,TUR,3160.0,Mersin,278.0,Türkiye,132460.0,Erdemli,both,identical +182590,34.75,36.75,TUR,3160.0,Mersin,278.0,Türkiye,132465.0,Tarsus,34.75,36.75,TUR,3160.0,Mersin,278.0,Türkiye,132465.0,Tarsus,both,identical +182591,35.25,36.75,TUR,3103.0,Adana,278.0,Türkiye,131754.0,Karatas,35.25,36.75,TUR,3103.0,Adana,278.0,Türkiye,131754.0,Karatas,both,identical +182592,35.75,36.75,TUR,3103.0,Adana,278.0,Türkiye,131761.0,Yumurtalik,35.75,36.75,TUR,3103.0,Adana,278.0,Türkiye,131761.0,Yumurtalik,both,identical +182593,36.25,36.75,TUR,3139.0,Hatay,278.0,Türkiye,132168.0,Dortyol,36.25,36.75,TUR,3139.0,Hatay,278.0,Türkiye,132168.0,Dortyol,both,identical +182594,36.75,36.75,TUR,3135.0,Gaziantep,278.0,Türkiye,132128.0,Islahiye,36.75,36.75,SYR,2988.0,Aleppo,272.0,Syrian Arab Republic,130627.0,Afrin,both,country_reassignment +182595,37.25,36.75,TUR,3150.0,Kilis,278.0,Türkiye,132133.0,Sahinbey,37.25,36.75,SYR,2988.0,Aleppo,272.0,Syrian Arab Republic,130626.0,A'Zaz,both,country_reassignment +182596,37.75,36.75,TUR,3135.0,Gaziantep,278.0,Türkiye,132132.0,Oguzeli,37.75,36.75,SYR,2988.0,Aleppo,272.0,Syrian Arab Republic,130631.0,Jarablus,both,country_reassignment +182597,38.25,36.75,SYR,2988.0,Aleppo,272.0,Syrian Arab Republic,130628.0,Ain Al Arab,38.25,36.75,SYR,2988.0,Aleppo,272.0,Syrian Arab Republic,130628.0,Ain Al Arab,both,identical +182598,38.75,36.75,TUR,3170.0,Sanliurfa,278.0,Türkiye,132572.0,Akcakale,38.75,36.75,TUR,3170.0,Sanliurfa,278.0,Türkiye,132572.0,Akcakale,both,identical +182599,39.25,36.75,TUR,3170.0,Sanliurfa,278.0,Türkiye,132579.0,Harran,39.25,36.75,SYR,2989.0,Ar-Raqqa,272.0,Syrian Arab Republic,130636.0,Tell Abiad,both,country_reassignment +182600,39.75,36.75,TUR,3170.0,Sanliurfa,278.0,Türkiye,132575.0,Ceylanpinar,39.75,36.75,SYR,2987.0,Al-Hasakeh,272.0,Syrian Arab Republic,130625.0,Ras Al Ain,both,country_reassignment +182601,40.25,36.75,SYR,2987.0,Al-Hasakeh,272.0,Syrian Arab Republic,130625.0,Ras Al Ain,40.25,36.75,SYR,2987.0,Al-Hasakeh,272.0,Syrian Arab Republic,130625.0,Ras Al Ain,both,identical +182602,40.75,36.75,SYR,2987.0,Al-Hasakeh,272.0,Syrian Arab Republic,130622.0,Al-Hasakeh,40.75,36.75,SYR,2987.0,Al-Hasakeh,272.0,Syrian Arab Republic,130622.0,Al-Hasakeh,both,identical +182603,41.25,36.75,SYR,2987.0,Al-Hasakeh,272.0,Syrian Arab Republic,130624.0,Quamishli,41.25,36.75,SYR,2987.0,Al-Hasakeh,272.0,Syrian Arab Republic,130624.0,Quamishli,both,identical +182604,41.75,36.75,SYR,2987.0,Al-Hasakeh,272.0,Syrian Arab Republic,130624.0,Quamishli,41.75,36.75,SYR,2987.0,Al-Hasakeh,272.0,Syrian Arab Republic,130624.0,Quamishli,both,identical +182605,42.25,36.75,IRQ,2695.0,Ninewa,243.0,Iraq,127023.0,Telafar,42.25,36.75,IRQ,2695.0,Ninewa,243.0,Iraq,127023.0,Telafar,both,identical +182606,42.75,36.75,IRQ,2695.0,Ninewa,243.0,Iraq,127023.0,Telafar,42.75,36.75,IRQ,2695.0,Ninewa,243.0,Iraq,127023.0,Telafar,both,identical +182607,43.25,36.75,IRQ,2695.0,Ninewa,243.0,Iraq,127020.0,Al-Shikhan,43.25,36.75,IRQ,2695.0,Ninewa,243.0,Iraq,127020.0,Al-Shikhan,both,identical +182608,43.75,36.75,IRQ,2695.0,Ninewa,243.0,Iraq,127021.0,Aqra,43.75,36.75,IRQ,2695.0,Ninewa,243.0,Iraq,127021.0,Aqra,both,identical +182609,44.25,36.75,IRQ,2691.0,Erbil,243.0,Iraq,127001.0,Rawanduz,44.25,36.75,IRQ,2691.0,Erbil,243.0,Iraq,127001.0,Rawanduz,both,identical +182610,44.75,36.75,IRQ,2691.0,Erbil,243.0,Iraq,127001.0,Rawanduz,44.75,36.75,IRQ,2691.0,Erbil,243.0,Iraq,127001.0,Rawanduz,both,identical +182611,45.25,36.75,IRN,2678.0,West Azerbaijan,242.0,Iran (Islamic Republic Of),126915.0,Piranshahr,45.25,36.75,IRN,2678.0,West Azerbaijan,242.0,Iran (Islamic Republic Of),126915.0,Piranshahr,both,identical +182612,45.75,36.75,IRN,2678.0,West Azerbaijan,242.0,Iran (Islamic Republic Of),126910.0,Mahabad,45.75,36.75,IRN,2678.0,West Azerbaijan,242.0,Iran (Islamic Republic Of),126910.0,Mahabad,both,identical +182613,46.25,36.75,IRN,2678.0,West Azerbaijan,242.0,Iran (Islamic Republic Of),126906.0,Bukan,46.25,36.75,IRN,2678.0,West Azerbaijan,242.0,Iran (Islamic Republic Of),126906.0,Bukan,both,identical +182614,46.75,36.75,IRN,2678.0,West Azerbaijan,242.0,Iran (Islamic Republic Of),126919.0,Shahindej,46.75,36.75,IRN,2678.0,West Azerbaijan,242.0,Iran (Islamic Republic Of),126919.0,Shahindej,both,identical +182615,47.25,36.75,IRN,2680.0,Zanjan,242.0,Iran (Islamic Republic Of),126937.0,Mahneshan,47.25,36.75,IRN,2680.0,Zanjan,242.0,Iran (Islamic Republic Of),126937.0,Mahneshan,both,identical +182616,47.75,36.75,IRN,2680.0,Zanjan,242.0,Iran (Islamic Republic Of),126937.0,Mahneshan,47.75,36.75,IRN,2680.0,Zanjan,242.0,Iran (Islamic Republic Of),126937.0,Mahneshan,both,identical +182617,48.25,36.75,IRN,2680.0,Zanjan,242.0,Iran (Islamic Republic Of),126940.0,Zanjan,48.25,36.75,IRN,2680.0,Zanjan,242.0,Iran (Islamic Republic Of),126940.0,Zanjan,both,identical +182618,48.75,36.75,IRN,2680.0,Zanjan,242.0,Iran (Islamic Republic Of),126940.0,Zanjan,48.75,36.75,IRN,2680.0,Zanjan,242.0,Iran (Islamic Republic Of),126940.0,Zanjan,both,identical +182619,49.25,36.75,IRN,2670.0,Qazvin,242.0,Iran (Islamic Republic Of),126821.0,Qazvin,49.25,36.75,IRN,2670.0,Qazvin,242.0,Iran (Islamic Republic Of),126821.0,Qazvin,both,identical +182620,49.75,36.75,IRN,2655.0,Gilan,242.0,Iran (Islamic Republic Of),126606.0,Rudbar,49.75,36.75,IRN,2655.0,Gilan,242.0,Iran (Islamic Republic Of),126606.0,Rudbar,both,identical +182621,50.25,36.75,IRN,2655.0,Gilan,242.0,Iran (Islamic Republic Of),126607.0,Rudsar,50.25,36.75,IRN,2655.0,Gilan,242.0,Iran (Islamic Republic Of),126607.0,Rudsar,both,identical +182622,50.75,36.75,IRN,2668.0,Mazandaran,242.0,Iran (Islamic Republic Of),126808.0,Tonekabon,50.75,36.75,IRN,2668.0,Mazandaran,242.0,Iran (Islamic Republic Of),126808.0,Tonekabon,both,identical +182623,51.25,36.75,IRN,2677.0,Waterbody,242.0,Iran (Islamic Republic Of),900052.0,Waterbody,51.25,36.75,IRN,2677.0,Waterbody,242.0,Iran (Islamic Republic Of),900052.0,Waterbody,both,identical +182624,51.75,36.75,IRN,2677.0,Waterbody,242.0,Iran (Islamic Republic Of),900052.0,Waterbody,51.75,36.75,IRN,2677.0,Waterbody,242.0,Iran (Islamic Republic Of),900052.0,Waterbody,both,identical +182625,52.25,36.75,IRN,2677.0,Waterbody,242.0,Iran (Islamic Republic Of),900052.0,Waterbody,52.25,36.75,IRN,2677.0,Waterbody,242.0,Iran (Islamic Republic Of),900052.0,Waterbody,both,identical +182626,52.75,36.75,IRN,2677.0,Waterbody,242.0,Iran (Islamic Republic Of),900052.0,Waterbody,52.75,36.75,IRN,2677.0,Waterbody,242.0,Iran (Islamic Republic Of),900052.0,Waterbody,both,identical +182627,53.25,36.75,IRN,2668.0,Mazandaran,242.0,Iran (Islamic Republic Of),900052.0,Waterbody,53.25,36.75,IRN,2677.0,Waterbody,242.0,Iran (Islamic Republic Of),900052.0,Waterbody,both,admin_reallocation +182628,53.75,36.75,IRN,2668.0,Mazandaran,242.0,Iran (Islamic Republic Of),900052.0,Waterbody,53.75,36.75,IRN,2677.0,Waterbody,242.0,Iran (Islamic Republic Of),900052.0,Waterbody,both,admin_reallocation +182629,54.25,36.75,IRN,2656.0,Golestan,242.0,Iran (Islamic Republic Of),126622.0,Kordkuy,54.25,36.75,IRN,2656.0,Golestan,242.0,Iran (Islamic Republic Of),126622.0,Kordkuy,both,identical +182630,54.75,36.75,IRN,2656.0,Golestan,242.0,Iran (Islamic Republic Of),126612.0,Aliabad,54.75,36.75,IRN,2656.0,Golestan,242.0,Iran (Islamic Republic Of),126612.0,Aliabad,both,identical +182631,55.25,36.75,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126858.0,Shahrud,55.25,36.75,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126858.0,Shahrud,both,identical +182632,55.75,36.75,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126856.0,Meyami,55.75,36.75,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126856.0,Meyami,both,identical +182633,56.25,36.75,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126856.0,Meyami,56.25,36.75,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126856.0,Meyami,both,identical +182634,56.75,36.75,IRN,2669.0,North Khorasan,242.0,Iran (Islamic Republic Of),126813.0,Jajrom,56.75,36.75,IRN,2669.0,North Khorasan,242.0,Iran (Islamic Republic Of),126813.0,Jajrom,both,identical +182635,57.25,36.75,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126810.0,Esfarayen,57.25,36.75,IRN,2669.0,North Khorasan,242.0,Iran (Islamic Republic Of),126810.0,Esfarayen,both,admin_reallocation +182636,57.75,36.75,IRN,2669.0,North Khorasan,242.0,Iran (Islamic Republic Of),126810.0,Esfarayen,57.75,36.75,IRN,2669.0,North Khorasan,242.0,Iran (Islamic Republic Of),126810.0,Esfarayen,both,identical +182637,58.25,36.75,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126842.0,Nishapur,58.25,36.75,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126842.0,Nishapur,both,identical +182638,58.75,36.75,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126827.0,Chenaran,58.75,36.75,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126827.0,Chenaran,both,identical +182639,59.25,36.75,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126827.0,Chenaran,59.25,36.75,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126827.0,Chenaran,both,identical +182640,59.75,36.75,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126841.0,Mashhad,59.75,36.75,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126841.0,Mashhad,both,identical +182641,60.25,36.75,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126835.0,Kalat,60.25,36.75,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126835.0,Kalat,both,identical +182642,60.75,36.75,TKM,3097.0,Ahal,277.0,Turkmenistan,131743.0,Administrative Unit Not Available,60.75,36.75,TKM,3097.0,Ahal,277.0,Turkmenistan,131743.0,Administrative Unit Not Available,both,identical +182643,61.25,36.75,TKM,3097.0,Ahal,277.0,Turkmenistan,131743.0,Administrative Unit Not Available,61.25,36.75,TKM,3097.0,Ahal,277.0,Turkmenistan,131743.0,Administrative Unit Not Available,both,identical +183253,6.25,37.25,DZA,1039.0,Skikda,101.0,Algeria,101249.0,Kanoua,6.25,37.25,DZA,1039.0,Skikda,101.0,Algeria,101249.0,Kanoua,both,identical +183254,6.75,37.25,DZA,1039.0,Skikda,101.0,Algeria,101238.0,Cheraia,6.75,37.25,DZA,1039.0,Skikda,101.0,Algeria,101238.0,Cheraia,both,identical +183255,7.25,37.25,DZA,1005.0,Annaba,101.0,Algeria,100153.0,Chetaibi,7.25,37.25,DZA,1005.0,Annaba,101.0,Algeria,100153.0,Chetaibi,both,identical +183256,7.75,37.25,DZA,1005.0,Annaba,101.0,Algeria,100158.0,Oued El Aneb,7.75,37.25,DZA,1005.0,Annaba,101.0,Algeria,100158.0,Oued El Aneb,both,identical +183258,8.75,37.25,TUN,1652.0,Beja,164.0,Tunisia,105979.0,Nefza,8.75,37.25,TUN,1652.0,Beja,164.0,Tunisia,105979.0,Nefza,both,identical +183259,9.25,37.25,TUN,1654.0,Bizerte,164.0,Tunisia,106005.0,Sedjnane,9.25,37.25,TUN,1654.0,Bizerte,164.0,Tunisia,106005.0,Sedjnane,both,identical +183260,9.75,37.25,TUN,1654.0,Bizerte,164.0,Tunisia,105996.0,Bizerte Sud,9.75,37.25,TUN,1654.0,Bizerte,164.0,Tunisia,105996.0,Bizerte Sud,both,identical +183261,10.25,37.25,TUN,1654.0,Bizerte,164.0,Tunisia,106007.0,Utique,10.25,37.25,TUN,1654.0,Bizerte,164.0,Tunisia,106007.0,Utique,both,identical +183262,10.75,37.25,TUN,1666.0,Nabeul,164.0,Tunisia,106136.0,El Haouaria,10.75,37.25,TUN,1666.0,Nabeul,164.0,Tunisia,106136.0,El Haouaria,both,identical +183263,11.25,37.25,TUN,1666.0,Nabeul,164.0,Tunisia,106136.0,El Haouaria,11.25,37.25,TUN,1666.0,Nabeul,164.0,Tunisia,106136.0,El Haouaria,both,identical +183295,27.25,37.25,TUR,3161.0,Mugla,278.0,Türkiye,131875.0,Didim,27.25,37.25,TUR,3113.0,Aydin,278.0,Türkiye,131875.0,Didim,both,admin_reallocation +183296,27.75,37.25,TUR,3161.0,Mugla,278.0,Türkiye,132476.0,Milas,27.75,37.25,TUR,3161.0,Mugla,278.0,Türkiye,132476.0,Milas,both,identical +183297,28.25,37.25,TUR,3161.0,Mugla,278.0,Türkiye,132475.0,Mentese,28.25,37.25,TUR,3161.0,Mugla,278.0,Türkiye,132475.0,Mentese,both,identical +183298,28.75,37.25,TUR,3161.0,Mugla,278.0,Türkiye,132475.0,Mentese,28.75,37.25,TUR,3161.0,Mugla,278.0,Türkiye,132475.0,Mentese,both,identical +183299,29.25,37.25,TUR,3127.0,Denizli,278.0,Türkiye,132020.0,Acipayam,29.25,37.25,TUR,3127.0,Denizli,278.0,Türkiye,132020.0,Acipayam,both,identical +183300,29.75,37.25,TUR,3122.0,Burdur,278.0,Türkiye,131963.0,Tefenni,29.75,37.25,TUR,3122.0,Burdur,278.0,Türkiye,131963.0,Tefenni,both,identical +183301,30.25,37.25,TUR,3110.0,Antalya,278.0,Türkiye,131852.0,Korkuteli,30.25,37.25,TUR,3110.0,Antalya,278.0,Türkiye,131852.0,Korkuteli,both,identical +183302,30.75,37.25,TUR,3110.0,Antalya,278.0,Türkiye,131956.0,Bucak,30.75,37.25,TUR,3122.0,Burdur,278.0,Türkiye,131956.0,Bucak,both,admin_reallocation +183303,31.25,37.25,TUR,3110.0,Antalya,278.0,Türkiye,131854.0,Manavgat,31.25,37.25,TUR,3110.0,Antalya,278.0,Türkiye,131854.0,Manavgat,both,identical +183304,31.75,37.25,TUR,3110.0,Antalya,278.0,Türkiye,131838.0,Akseki,31.75,37.25,TUR,3110.0,Antalya,278.0,Türkiye,131838.0,Akseki,both,identical +183305,32.25,37.25,TUR,3155.0,Konya,278.0,Türkiye,132376.0,Bozkir,32.25,37.25,TUR,3155.0,Konya,278.0,Türkiye,132376.0,Bozkir,both,identical +183306,32.75,37.25,TUR,3155.0,Konya,278.0,Türkiye,132379.0,Cumra,32.75,37.25,TUR,3155.0,Konya,278.0,Türkiye,132379.0,Cumra,both,identical +183307,33.25,37.25,TUR,3146.0,Karaman,278.0,Türkiye,132284.0,Karaman,33.25,37.25,TUR,3146.0,Karaman,278.0,Türkiye,132284.0,Karaman,both,identical +183308,33.75,37.25,TUR,3146.0,Karaman,278.0,Türkiye,132281.0,Ayranci,33.75,37.25,TUR,3146.0,Karaman,278.0,Türkiye,132281.0,Ayranci,both,identical +183309,34.25,37.25,TUR,3160.0,Mersin,278.0,Türkiye,132466.0,Toroslar,34.25,37.25,TUR,3160.0,Mersin,278.0,Türkiye,132466.0,Toroslar,both,identical +183310,34.75,37.25,TUR,3160.0,Mersin,278.0,Türkiye,132465.0,Tarsus,34.75,37.25,TUR,3160.0,Mersin,278.0,Türkiye,132465.0,Tarsus,both,identical +183311,35.25,37.25,TUR,3103.0,Adana,278.0,Türkiye,131753.0,Karaisali,35.25,37.25,TUR,3103.0,Adana,278.0,Türkiye,131753.0,Karaisali,both,identical +183312,35.75,37.25,TUR,3103.0,Adana,278.0,Türkiye,131749.0,Ceyhan,35.75,37.25,TUR,3103.0,Adana,278.0,Türkiye,131749.0,Ceyhan,both,identical +183313,36.25,37.25,TUR,3166.0,Osmaniye,278.0,Türkiye,132524.0,Osmaniye,36.25,37.25,TUR,3166.0,Osmaniye,278.0,Türkiye,132524.0,Osmaniye,both,identical +183314,36.75,37.25,TUR,3144.0,Kahramanmaras,278.0,Türkiye,132131.0,Nurdagi,36.75,37.25,TUR,3135.0,Gaziantep,278.0,Türkiye,132131.0,Nurdagi,both,admin_reallocation +183315,37.25,37.25,TUR,3135.0,Gaziantep,278.0,Türkiye,132134.0,Sehitkamil,37.25,37.25,TUR,3135.0,Gaziantep,278.0,Türkiye,132134.0,Sehitkamil,both,identical +183316,37.75,37.25,TUR,3135.0,Gaziantep,278.0,Türkiye,132130.0,Nizip,37.75,37.25,TUR,3135.0,Gaziantep,278.0,Türkiye,132130.0,Nizip,both,identical +183317,38.25,37.25,TUR,3170.0,Sanliurfa,278.0,Türkiye,132574.0,Bozova,38.25,37.25,TUR,3170.0,Sanliurfa,278.0,Türkiye,132574.0,Bozova,both,identical +183318,38.75,37.25,TUR,3170.0,Sanliurfa,278.0,Türkiye,132581.0,Karakopru,38.75,37.25,TUR,3170.0,Sanliurfa,278.0,Türkiye,132581.0,Karakopru,both,identical +183319,39.25,37.25,TUR,3170.0,Sanliurfa,278.0,Türkiye,132578.0,Haliliye,39.25,37.25,TUR,3170.0,Sanliurfa,278.0,Türkiye,132578.0,Haliliye,both,identical +183320,39.75,37.25,TUR,3170.0,Sanliurfa,278.0,Türkiye,132584.0,Viransehir,39.75,37.25,TUR,3170.0,Sanliurfa,278.0,Türkiye,132584.0,Viransehir,both,identical +183321,40.25,37.25,TUR,3159.0,Mardin,278.0,Türkiye,132447.0,Derik,40.25,37.25,TUR,3159.0,Mardin,278.0,Türkiye,132447.0,Derik,both,identical +183322,40.75,37.25,TUR,3159.0,Mardin,278.0,Türkiye,132445.0,Artuklu,40.75,37.25,TUR,3159.0,Mardin,278.0,Türkiye,132445.0,Artuklu,both,identical +183323,41.25,37.25,TUR,3159.0,Mardin,278.0,Türkiye,132450.0,Midyat,41.25,37.25,TUR,3159.0,Mardin,278.0,Türkiye,132450.0,Midyat,both,identical +183324,41.75,37.25,TUR,3173.0,Sirnak,278.0,Türkiye,132604.0,Idil,41.75,37.25,TUR,3173.0,Sirnak,278.0,Türkiye,132604.0,Idil,both,identical +183325,42.25,37.25,TUR,3173.0,Sirnak,278.0,Türkiye,132606.0,Sirnak,42.25,37.25,SYR,2987.0,Al-Hasakeh,272.0,Syrian Arab Republic,130623.0,Al-Malikeyyeh,both,country_reassignment +183326,42.75,37.25,IRQ,2690.0,Duhok,243.0,Iraq,126996.0,Zakho,42.75,37.25,IRQ,2690.0,Duhok,243.0,Iraq,126996.0,Zakho,both,identical +183327,43.25,37.25,IRQ,2690.0,Duhok,243.0,Iraq,126993.0,Al-Amadiya,43.25,37.25,IRQ,2690.0,Duhok,243.0,Iraq,126993.0,Al-Amadiya,both,identical +183328,43.75,37.25,TUR,3138.0,Hakkari,278.0,Türkiye,132158.0,Cukurca,43.75,37.25,IRQ,2690.0,Duhok,243.0,Iraq,126993.0,Al-Amadiya,both,country_reassignment +183329,44.25,37.25,TUR,3138.0,Hakkari,278.0,Türkiye,132162.0,Yuksekova,44.25,37.25,TUR,3138.0,Hakkari,278.0,Türkiye,132162.0,Yuksekova,both,identical +183330,44.75,37.25,IRN,2678.0,West Azerbaijan,242.0,Iran (Islamic Republic Of),126922.0,Urumia,44.75,37.25,IRN,2678.0,West Azerbaijan,242.0,Iran (Islamic Republic Of),126922.0,Urumia,both,identical +183331,45.25,37.25,IRN,2678.0,West Azerbaijan,242.0,Iran (Islamic Republic Of),126922.0,Urumia,45.25,37.25,IRN,2678.0,West Azerbaijan,242.0,Iran (Islamic Republic Of),126922.0,Urumia,both,identical +183332,45.75,37.25,IRN,2678.0,West Azerbaijan,242.0,Iran (Islamic Republic Of),126912.0,Miandoab,45.75,37.25,IRN,2678.0,West Azerbaijan,242.0,Iran (Islamic Republic Of),126912.0,Miandoab,both,identical +183333,46.25,37.25,IRN,2653.0,East Azerbaijan,242.0,Iran (Islamic Republic Of),126559.0,Maragheh,46.25,37.25,IRN,2653.0,East Azerbaijan,242.0,Iran (Islamic Republic Of),126559.0,Maragheh,both,identical +183334,46.75,37.25,IRN,2653.0,East Azerbaijan,242.0,Iran (Islamic Republic Of),126553.0,Hashtrud,46.75,37.25,IRN,2653.0,East Azerbaijan,242.0,Iran (Islamic Republic Of),126553.0,Hashtrud,both,identical +183335,47.25,37.25,IRN,2653.0,East Azerbaijan,242.0,Iran (Islamic Republic Of),126552.0,Charuymaq,47.25,37.25,IRN,2653.0,East Azerbaijan,242.0,Iran (Islamic Republic Of),126552.0,Charuymaq,both,identical +183336,47.75,37.25,IRN,2653.0,East Azerbaijan,242.0,Iran (Islamic Republic Of),126561.0,Mianeh,47.75,37.25,IRN,2653.0,East Azerbaijan,242.0,Iran (Islamic Republic Of),126561.0,Mianeh,both,identical +183337,48.25,37.25,IRN,2680.0,Zanjan,242.0,Iran (Islamic Republic Of),126940.0,Zanjan,48.25,37.25,IRN,2680.0,Zanjan,242.0,Iran (Islamic Republic Of),126940.0,Zanjan,both,identical +183338,48.75,37.25,IRN,2650.0,Ardabil,242.0,Iran (Islamic Republic Of),126521.0,Khalkhal,48.75,37.25,IRN,2650.0,Ardabil,242.0,Iran (Islamic Republic Of),126521.0,Khalkhal,both,identical +183339,49.25,37.25,IRN,2655.0,Gilan,242.0,Iran (Islamic Republic Of),126600.0,Fuman,49.25,37.25,IRN,2655.0,Gilan,242.0,Iran (Islamic Republic Of),126600.0,Fuman,both,identical +183340,49.75,37.25,IRN,2655.0,Gilan,242.0,Iran (Islamic Republic Of),126604.0,Rasht,49.75,37.25,IRN,2655.0,Gilan,242.0,Iran (Islamic Republic Of),126604.0,Rasht,both,identical +183341,50.25,37.25,IRN,2677.0,Waterbody,242.0,Iran (Islamic Republic Of),900052.0,Waterbody,50.25,37.25,IRN,2677.0,Waterbody,242.0,Iran (Islamic Republic Of),900052.0,Waterbody,both,identical +183342,50.75,37.25,IRN,2677.0,Waterbody,242.0,Iran (Islamic Republic Of),900052.0,Waterbody,50.75,37.25,IRN,2677.0,Waterbody,242.0,Iran (Islamic Republic Of),900052.0,Waterbody,both,identical +183348,53.75,37.25,TKM,3102.0,Waterbody,277.0,Turkmenistan,900054.0,Waterbody,53.75,37.25,IRN,2677.0,Waterbody,242.0,Iran (Islamic Republic Of),900052.0,Waterbody,both,country_reassignment +183349,54.25,37.25,IRN,2656.0,Golestan,242.0,Iran (Islamic Republic Of),126618.0,Gomishan,54.25,37.25,IRN,2656.0,Golestan,242.0,Iran (Islamic Republic Of),126618.0,Gomishan,both,identical +183350,54.75,37.25,IRN,2656.0,Golestan,242.0,Iran (Islamic Republic Of),126619.0,Gonbad-E-Kavus,54.75,37.25,IRN,2656.0,Golestan,242.0,Iran (Islamic Republic Of),126619.0,Gonbad-E-Kavus,both,identical +183351,55.25,37.25,IRN,2656.0,Golestan,242.0,Iran (Islamic Republic Of),126619.0,Gonbad-E-Kavus,55.25,37.25,IRN,2656.0,Golestan,242.0,Iran (Islamic Republic Of),126619.0,Gonbad-E-Kavus,both,identical +183352,55.75,37.25,IRN,2656.0,Golestan,242.0,Iran (Islamic Republic Of),126856.0,Meyami,55.75,37.25,IRN,2673.0,Semnan,242.0,Iran (Islamic Republic Of),126856.0,Meyami,both,admin_reallocation +183353,56.25,37.25,IRN,2669.0,North Khorasan,242.0,Iran (Islamic Republic Of),126812.0,Germeh,56.25,37.25,IRN,2669.0,North Khorasan,242.0,Iran (Islamic Republic Of),126812.0,Germeh,both,identical +183354,56.75,37.25,IRN,2669.0,North Khorasan,242.0,Iran (Islamic Republic Of),126813.0,Jajrom,56.75,37.25,IRN,2669.0,North Khorasan,242.0,Iran (Islamic Republic Of),126813.0,Jajrom,both,identical +183355,57.25,37.25,IRN,2669.0,North Khorasan,242.0,Iran (Islamic Republic Of),126809.0,Bojnurd,57.25,37.25,IRN,2669.0,North Khorasan,242.0,Iran (Islamic Republic Of),126809.0,Bojnurd,both,identical +183356,57.75,37.25,IRN,2669.0,North Khorasan,242.0,Iran (Islamic Republic Of),126816.0,Shirvan,57.75,37.25,IRN,2669.0,North Khorasan,242.0,Iran (Islamic Republic Of),126816.0,Shirvan,both,identical +183357,58.25,37.25,IRN,2669.0,North Khorasan,242.0,Iran (Islamic Republic Of),126811.0,Faroj,58.25,37.25,IRN,2669.0,North Khorasan,242.0,Iran (Islamic Republic Of),126811.0,Faroj,both,identical +183358,58.75,37.25,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126843.0,Quchan,58.75,37.25,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126843.0,Quchan,both,identical +183359,59.25,37.25,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126828.0,Dargaz,59.25,37.25,IRN,2672.0,Razavi Khorasan,242.0,Iran (Islamic Republic Of),126828.0,Dargaz,both,identical +183360,59.75,37.25,TKM,3097.0,Ahal,277.0,Turkmenistan,131743.0,Administrative Unit Not Available,59.75,37.25,TKM,3097.0,Ahal,277.0,Turkmenistan,131743.0,Administrative Unit Not Available,both,identical +183361,60.25,37.25,TKM,3097.0,Ahal,277.0,Turkmenistan,131743.0,Administrative Unit Not Available,60.25,37.25,TKM,3097.0,Ahal,277.0,Turkmenistan,131743.0,Administrative Unit Not Available,both,identical +184015,27.25,37.75,TUR,3113.0,Aydin,278.0,Türkiye,131886.0,Soke,27.25,37.75,TUR,3113.0,Aydin,278.0,Türkiye,131886.0,Soke,both,identical +184016,27.75,37.75,TUR,3113.0,Aydin,278.0,Türkiye,131876.0,Efeler,27.75,37.75,TUR,3113.0,Aydin,278.0,Türkiye,131876.0,Efeler,both,identical +184017,28.25,37.75,TUR,3113.0,Aydin,278.0,Türkiye,131872.0,Bozdogan,28.25,37.75,TUR,3113.0,Aydin,278.0,Türkiye,131872.0,Bozdogan,both,identical +184018,28.75,37.75,TUR,3113.0,Aydin,278.0,Türkiye,131879.0,Karacasu,28.75,37.75,TUR,3113.0,Aydin,278.0,Türkiye,131879.0,Karacasu,both,identical +184019,29.25,37.75,TUR,3127.0,Denizli,278.0,Türkiye,132035.0,Pamukkale,29.25,37.75,TUR,3127.0,Denizli,278.0,Türkiye,132035.0,Pamukkale,both,identical +184020,29.75,37.75,TUR,3127.0,Denizli,278.0,Türkiye,131964.0,Yesilova,29.75,37.75,TUR,3122.0,Burdur,278.0,Türkiye,131964.0,Yesilova,both,admin_reallocation +184021,30.25,37.75,TUR,3122.0,Burdur,278.0,Türkiye,131957.0,Burdur,30.25,37.75,TUR,3122.0,Burdur,278.0,Türkiye,131957.0,Burdur,both,identical +184022,30.75,37.75,TUR,3141.0,Isparta,278.0,Türkiye,132184.0,Egirdir,30.75,37.75,TUR,3141.0,Isparta,278.0,Türkiye,132184.0,Egirdir,both,identical +184023,31.25,37.75,TUR,3141.0,Isparta,278.0,Türkiye,132182.0,Aksu,31.25,37.75,TUR,3141.0,Isparta,278.0,Türkiye,132182.0,Aksu,both,identical +184024,31.75,37.75,TUR,3155.0,Konya,278.0,Türkiye,132375.0,Beysehir,31.75,37.75,TUR,3155.0,Konya,278.0,Türkiye,132375.0,Beysehir,both,identical +184025,32.25,37.75,TUR,3155.0,Konya,278.0,Türkiye,132394.0,Meram,32.25,37.75,TUR,3155.0,Konya,278.0,Türkiye,132394.0,Meram,both,identical +184026,32.75,37.75,TUR,3155.0,Konya,278.0,Türkiye,132392.0,Karatay,32.75,37.75,TUR,3155.0,Konya,278.0,Türkiye,132392.0,Karatay,both,identical +184027,33.25,37.75,TUR,3155.0,Konya,278.0,Türkiye,132391.0,Karapinar,33.25,37.75,TUR,3155.0,Konya,278.0,Türkiye,132391.0,Karapinar,both,identical +184028,33.75,37.75,TUR,3155.0,Konya,278.0,Türkiye,132391.0,Karapinar,33.75,37.75,TUR,3155.0,Konya,278.0,Türkiye,132391.0,Karapinar,both,identical +184029,34.25,37.75,TUR,3155.0,Konya,278.0,Türkiye,132384.0,Eregli,34.25,37.75,TUR,3155.0,Konya,278.0,Türkiye,132384.0,Eregli,both,identical +184030,34.75,37.75,TUR,3164.0,Nigde,278.0,Türkiye,132496.0,Bor,34.75,37.75,TUR,3164.0,Nigde,278.0,Türkiye,132496.0,Bor,both,identical +184031,35.25,37.75,TUR,3103.0,Adana,278.0,Türkiye,131748.0,Aladag,35.25,37.75,TUR,3103.0,Adana,278.0,Türkiye,131748.0,Aladag,both,identical +184032,35.75,37.75,TUR,3103.0,Adana,278.0,Türkiye,131755.0,Kozan,35.75,37.75,TUR,3103.0,Adana,278.0,Türkiye,131755.0,Kozan,both,identical +184033,36.25,37.75,TUR,3144.0,Kahramanmaras,278.0,Türkiye,132265.0,Andirin,36.25,37.75,TUR,3144.0,Kahramanmaras,278.0,Türkiye,132265.0,Andirin,both,identical +184034,36.75,37.75,TUR,3144.0,Kahramanmaras,278.0,Türkiye,132272.0,Onikisubat,36.75,37.75,TUR,3144.0,Kahramanmaras,278.0,Türkiye,132272.0,Onikisubat,both,identical +184035,37.25,37.75,TUR,3144.0,Kahramanmaras,278.0,Türkiye,132267.0,Dulkadiroglu,37.25,37.75,TUR,3144.0,Kahramanmaras,278.0,Türkiye,132267.0,Dulkadiroglu,both,identical +184036,37.75,37.75,TUR,3104.0,Adiyaman,278.0,Türkiye,131764.0,Besni,37.75,37.75,TUR,3104.0,Adiyaman,278.0,Türkiye,131764.0,Besni,both,identical +184037,38.25,37.75,TUR,3104.0,Adiyaman,278.0,Türkiye,131763.0,Adiyaman,38.25,37.75,TUR,3104.0,Adiyaman,278.0,Türkiye,131763.0,Adiyaman,both,identical +184038,38.75,37.75,TUR,3104.0,Adiyaman,278.0,Türkiye,131768.0,Kahta,38.75,37.75,TUR,3104.0,Adiyaman,278.0,Türkiye,131768.0,Kahta,both,identical +184039,39.25,37.75,TUR,3170.0,Sanliurfa,278.0,Türkiye,132582.0,Siverek,39.25,37.75,TUR,3170.0,Sanliurfa,278.0,Türkiye,132582.0,Siverek,both,identical +184040,39.75,37.75,TUR,3128.0,Diyarbakir,278.0,Türkiye,132582.0,Siverek,39.75,37.75,TUR,3170.0,Sanliurfa,278.0,Türkiye,132582.0,Siverek,both,admin_reallocation +184041,40.25,37.75,TUR,3128.0,Diyarbakir,278.0,Türkiye,132042.0,Cinar,40.25,37.75,TUR,3128.0,Diyarbakir,278.0,Türkiye,132042.0,Cinar,both,identical +184042,40.75,37.75,TUR,3128.0,Diyarbakir,278.0,Türkiye,132040.0,Bismil,40.75,37.75,TUR,3128.0,Diyarbakir,278.0,Türkiye,132040.0,Bismil,both,identical +184043,41.25,37.75,TUR,3116.0,Batman,278.0,Türkiye,131915.0,Gercus,41.25,37.75,TUR,3116.0,Batman,278.0,Türkiye,131915.0,Gercus,both,identical +184044,41.75,37.75,TUR,3171.0,Siirt,278.0,Türkiye,132587.0,Kurtalan,41.75,37.75,TUR,3171.0,Siirt,278.0,Türkiye,132587.0,Kurtalan,both,identical +184045,42.25,37.75,TUR,3171.0,Siirt,278.0,Türkiye,132586.0,Eruh,42.25,37.75,TUR,3171.0,Siirt,278.0,Türkiye,132586.0,Eruh,both,identical +184046,42.75,37.75,TUR,3173.0,Sirnak,278.0,Türkiye,132588.0,Pervari,42.75,37.75,TUR,3171.0,Siirt,278.0,Türkiye,132588.0,Pervari,both,admin_reallocation +184047,43.25,37.75,TUR,3180.0,Van,278.0,Türkiye,132601.0,Beytussebap,43.25,37.75,TUR,3173.0,Sirnak,278.0,Türkiye,132601.0,Beytussebap,both,admin_reallocation +184048,43.75,37.75,TUR,3138.0,Hakkari,278.0,Türkiye,132160.0,Hakkari,43.75,37.75,TUR,3138.0,Hakkari,278.0,Türkiye,132160.0,Hakkari,both,identical +184049,44.25,37.75,TUR,3138.0,Hakkari,278.0,Türkiye,132162.0,Yuksekova,44.25,37.75,TUR,3138.0,Hakkari,278.0,Türkiye,132162.0,Yuksekova,both,identical +184050,44.75,37.75,IRN,2678.0,West Azerbaijan,242.0,Iran (Islamic Republic Of),126922.0,Urumia,44.75,37.75,IRN,2678.0,West Azerbaijan,242.0,Iran (Islamic Republic Of),126922.0,Urumia,both,identical +184051,45.25,37.75,IRN,2678.0,West Azerbaijan,242.0,Iran (Islamic Republic Of),126922.0,Urumia,45.25,37.75,IRN,2678.0,West Azerbaijan,242.0,Iran (Islamic Republic Of),126922.0,Urumia,both,identical +184052,45.75,37.75,IRN,2653.0,East Azerbaijan,242.0,Iran (Islamic Republic Of),126549.0,Azarshahr,45.75,37.75,IRN,2653.0,East Azerbaijan,242.0,Iran (Islamic Republic Of),126549.0,Azarshahr,both,identical +184053,46.25,37.75,IRN,2653.0,East Azerbaijan,242.0,Iran (Islamic Republic Of),126565.0,Tabriz,46.25,37.75,IRN,2653.0,East Azerbaijan,242.0,Iran (Islamic Republic Of),126565.0,Tabriz,both,identical +184054,46.75,37.75,IRN,2653.0,East Azerbaijan,242.0,Iran (Islamic Republic Of),126551.0,Bostanabad,46.75,37.75,IRN,2653.0,East Azerbaijan,242.0,Iran (Islamic Republic Of),126551.0,Bostanabad,both,identical +184055,47.25,37.75,IRN,2653.0,East Azerbaijan,242.0,Iran (Islamic Republic Of),126563.0,Sarab,47.25,37.75,IRN,2653.0,East Azerbaijan,242.0,Iran (Islamic Republic Of),126563.0,Sarab,both,identical +184056,47.75,37.75,IRN,2653.0,East Azerbaijan,242.0,Iran (Islamic Republic Of),126561.0,Mianeh,47.75,37.75,IRN,2653.0,East Azerbaijan,242.0,Iran (Islamic Republic Of),126561.0,Mianeh,both,identical +184057,48.25,37.75,IRN,2650.0,Ardabil,242.0,Iran (Islamic Republic Of),126522.0,Kowsar,48.25,37.75,IRN,2650.0,Ardabil,242.0,Iran (Islamic Republic Of),126522.0,Kowsar,both,identical +184058,48.75,37.75,IRN,2655.0,Gilan,242.0,Iran (Islamic Republic Of),126611.0,Talesh,48.75,37.75,IRN,2655.0,Gilan,242.0,Iran (Islamic Republic Of),126611.0,Talesh,both,identical +184059,49.25,37.75,IRN,2677.0,Waterbody,242.0,Iran (Islamic Republic Of),900052.0,Waterbody,49.25,37.75,IRN,2677.0,Waterbody,242.0,Iran (Islamic Republic Of),900052.0,Waterbody,both,identical +184070,54.75,37.75,TKM,3098.0,Balkan,277.0,Turkmenistan,131744.0,Administrative Unit Not Available,54.75,37.75,TKM,3098.0,Balkan,277.0,Turkmenistan,131744.0,Administrative Unit Not Available,both,identical +184071,55.25,37.75,IRN,2656.0,Golestan,242.0,Iran (Islamic Republic Of),126619.0,Gonbad-E-Kavus,55.25,37.75,IRN,2656.0,Golestan,242.0,Iran (Islamic Republic Of),126619.0,Gonbad-E-Kavus,both,identical +184072,55.75,37.75,IRN,2656.0,Golestan,242.0,Iran (Islamic Republic Of),126623.0,Maravehtapeh,55.75,37.75,IRN,2656.0,Golestan,242.0,Iran (Islamic Republic Of),126623.0,Maravehtapeh,both,identical +184073,56.25,37.75,IRN,2669.0,North Khorasan,242.0,Iran (Islamic Republic Of),126814.0,Maneh-O-Samalqan,56.25,37.75,IRN,2669.0,North Khorasan,242.0,Iran (Islamic Republic Of),126814.0,Maneh-O-Samalqan,both,identical +184074,56.75,37.75,IRN,2669.0,North Khorasan,242.0,Iran (Islamic Republic Of),126814.0,Maneh-O-Samalqan,56.75,37.75,IRN,2669.0,North Khorasan,242.0,Iran (Islamic Republic Of),126814.0,Maneh-O-Samalqan,both,identical +184075,57.25,37.75,IRN,2669.0,North Khorasan,242.0,Iran (Islamic Republic Of),126809.0,Bojnurd,57.25,37.75,IRN,2669.0,North Khorasan,242.0,Iran (Islamic Republic Of),126809.0,Bojnurd,both,identical +184076,57.75,37.75,IRN,2669.0,North Khorasan,242.0,Iran (Islamic Republic Of),126816.0,Shirvan,57.75,37.75,IRN,2669.0,North Khorasan,242.0,Iran (Islamic Republic Of),126816.0,Shirvan,both,identical +184077,58.25,37.75,TKM,3097.0,Ahal,277.0,Turkmenistan,131743.0,Administrative Unit Not Available,58.25,37.75,TKM,3097.0,Ahal,277.0,Turkmenistan,131743.0,Administrative Unit Not Available,both,identical +184078,58.75,37.75,TKM,3097.0,Ahal,277.0,Turkmenistan,131743.0,Administrative Unit Not Available,58.75,37.75,TKM,3097.0,Ahal,277.0,Turkmenistan,131743.0,Administrative Unit Not Available,both,identical +184079,59.25,37.75,TKM,3097.0,Ahal,277.0,Turkmenistan,131743.0,Administrative Unit Not Available,59.25,37.75,TKM,3097.0,Ahal,277.0,Turkmenistan,131743.0,Administrative Unit Not Available,both,identical +184733,26.25,38.25,GRC,3473.0,Aigaioy,305.0,Greece,135887.0,Voreioy Aigaioy,26.25,38.25,GRC,3473.0,Aigaioy,305.0,Greece,135887.0,Voreioy Aigaioy,both,identical +184734,26.75,38.25,TUR,3143.0,Izmir,278.0,Türkiye,132263.0,Urla,26.75,38.25,TUR,3143.0,Izmir,278.0,Türkiye,132263.0,Urla,both,identical +184735,27.25,38.25,TUR,3143.0,Izmir,278.0,Türkiye,132255.0,Menderes,27.25,38.25,TUR,3143.0,Izmir,278.0,Türkiye,132255.0,Menderes,both,identical +184736,27.75,38.25,TUR,3143.0,Izmir,278.0,Türkiye,132261.0,Tire,27.75,38.25,TUR,3143.0,Izmir,278.0,Türkiye,132261.0,Tire,both,identical +184737,28.25,38.25,TUR,3143.0,Izmir,278.0,Türkiye,132253.0,Kiraz,28.25,38.25,TUR,3143.0,Izmir,278.0,Türkiye,132253.0,Kiraz,both,identical +184738,28.75,38.25,TUR,3158.0,Manisa,278.0,Türkiye,132026.0,Buldan,28.75,38.25,TUR,3127.0,Denizli,278.0,Türkiye,132026.0,Buldan,both,admin_reallocation +184739,29.25,38.25,TUR,3127.0,Denizli,278.0,Türkiye,132678.0,Ulubey,29.25,38.25,TUR,3179.0,Usak,278.0,Türkiye,132678.0,Ulubey,both,admin_reallocation +184740,29.75,38.25,TUR,3127.0,Denizli,278.0,Türkiye,132030.0,Civril,29.75,38.25,TUR,3127.0,Denizli,278.0,Türkiye,132030.0,Civril,both,identical +184741,30.25,38.25,TUR,3105.0,Afyonkarahisar,278.0,Türkiye,131779.0,Dinar,30.25,38.25,TUR,3105.0,Afyonkarahisar,278.0,Türkiye,131779.0,Dinar,both,identical +184742,30.75,38.25,TUR,3141.0,Isparta,278.0,Türkiye,131788.0,Suhut,30.75,38.25,TUR,3105.0,Afyonkarahisar,278.0,Türkiye,131788.0,Suhut,both,admin_reallocation +184743,31.25,38.25,TUR,3141.0,Isparta,278.0,Türkiye,132193.0,Yalvac,31.25,38.25,TUR,3141.0,Isparta,278.0,Türkiye,132193.0,Yalvac,both,identical +184744,31.75,38.25,TUR,3155.0,Konya,278.0,Türkiye,132389.0,Ilgin,31.75,38.25,TUR,3155.0,Konya,278.0,Türkiye,132389.0,Ilgin,both,identical +184745,32.25,38.25,TUR,3155.0,Konya,278.0,Türkiye,132390.0,Kadinhani,32.25,38.25,TUR,3155.0,Konya,278.0,Türkiye,132390.0,Kadinhani,both,identical +184746,32.75,38.25,TUR,3155.0,Konya,278.0,Türkiye,132374.0,Altinekin,32.75,38.25,TUR,3155.0,Konya,278.0,Türkiye,132374.0,Altinekin,both,identical +184747,33.25,38.25,TUR,3155.0,Konya,278.0,Türkiye,131800.0,Eskil,33.25,38.25,TUR,3107.0,Aksaray,278.0,Türkiye,131800.0,Eskil,both,admin_reallocation +184748,33.75,38.25,TUR,3107.0,Aksaray,278.0,Türkiye,131799.0,Aksaray,33.75,38.25,TUR,3107.0,Aksaray,278.0,Türkiye,131799.0,Aksaray,both,identical +184749,34.25,38.25,TUR,3107.0,Aksaray,278.0,Türkiye,131799.0,Aksaray,34.25,38.25,TUR,3107.0,Aksaray,278.0,Türkiye,131799.0,Aksaray,both,identical +184750,34.75,38.25,TUR,3164.0,Nigde,278.0,Türkiye,132499.0,Nigde,34.75,38.25,TUR,3164.0,Nigde,278.0,Türkiye,132499.0,Nigde,both,identical +184751,35.25,38.25,TUR,3149.0,Kayseri,278.0,Türkiye,132330.0,Yesilhisar,35.25,38.25,TUR,3149.0,Kayseri,278.0,Türkiye,132330.0,Yesilhisar,both,identical +184752,35.75,38.25,TUR,3149.0,Kayseri,278.0,Türkiye,132317.0,Develi,35.75,38.25,TUR,3149.0,Kayseri,278.0,Türkiye,132317.0,Develi,both,identical +184753,36.25,38.25,TUR,3103.0,Adana,278.0,Türkiye,131760.0,Tufanbeyli,36.25,38.25,TUR,3103.0,Adana,278.0,Türkiye,131760.0,Tufanbeyli,both,identical +184754,36.75,38.25,TUR,3144.0,Kahramanmaras,278.0,Türkiye,132264.0,Afsin,36.75,38.25,TUR,3144.0,Kahramanmaras,278.0,Türkiye,132264.0,Afsin,both,identical +184755,37.25,38.25,TUR,3144.0,Kahramanmaras,278.0,Türkiye,132269.0,Elbistan,37.25,38.25,TUR,3144.0,Kahramanmaras,278.0,Türkiye,132269.0,Elbistan,both,identical +184756,37.75,38.25,TUR,3157.0,Malatya,278.0,Türkiye,132415.0,Akcadag,37.75,38.25,TUR,3157.0,Malatya,278.0,Türkiye,132415.0,Akcadag,both,identical +184757,38.25,38.25,TUR,3157.0,Malatya,278.0,Türkiye,132427.0,Yesilyurt,38.25,38.25,TUR,3157.0,Malatya,278.0,Türkiye,132427.0,Yesilyurt,both,identical +184758,38.75,38.25,TUR,3157.0,Malatya,278.0,Türkiye,132425.0,Puturge,38.75,38.25,TUR,3157.0,Malatya,278.0,Türkiye,132425.0,Puturge,both,identical +184759,39.25,38.25,TUR,3128.0,Diyarbakir,278.0,Türkiye,132083.0,Sivrice,39.25,38.25,TUR,3131.0,Elazig,278.0,Türkiye,132083.0,Sivrice,both,admin_reallocation +184760,39.75,38.25,TUR,3128.0,Diyarbakir,278.0,Türkiye,132046.0,Ergani,39.75,38.25,TUR,3128.0,Diyarbakir,278.0,Türkiye,132046.0,Ergani,both,identical +184761,40.25,38.25,TUR,3128.0,Diyarbakir,278.0,Türkiye,132044.0,Dicle,40.25,38.25,TUR,3128.0,Diyarbakir,278.0,Türkiye,132044.0,Dicle,both,identical +184762,40.75,38.25,TUR,3128.0,Diyarbakir,278.0,Türkiye,132053.0,Silvan,40.75,38.25,TUR,3128.0,Diyarbakir,278.0,Türkiye,132053.0,Silvan,both,identical +184763,41.25,38.25,TUR,3116.0,Batman,278.0,Türkiye,131917.0,Kozluk,41.25,38.25,TUR,3116.0,Batman,278.0,Türkiye,131917.0,Kozluk,both,identical +184764,41.75,38.25,TUR,3120.0,Bitlis,278.0,Türkiye,131943.0,Mutki,41.75,38.25,TUR,3120.0,Bitlis,278.0,Türkiye,131943.0,Mutki,both,identical +184765,42.25,38.25,TUR,3120.0,Bitlis,278.0,Türkiye,131940.0,Bitlis,42.25,38.25,TUR,3120.0,Bitlis,278.0,Türkiye,131940.0,Bitlis,both,identical +184766,42.75,38.25,TUR,3180.0,Van,278.0,Türkiye,132686.0,Gevas,42.75,38.25,TUR,3180.0,Van,278.0,Türkiye,132686.0,Gevas,both,identical +184767,43.25,38.25,TUR,3180.0,Van,278.0,Türkiye,132683.0,Catak,43.25,38.25,TUR,3180.0,Van,278.0,Türkiye,132683.0,Catak,both,identical +184768,43.75,38.25,TUR,3180.0,Van,278.0,Türkiye,132687.0,Gurpinar,43.75,38.25,TUR,3180.0,Van,278.0,Türkiye,132687.0,Gurpinar,both,identical +184769,44.25,38.25,TUR,3180.0,Van,278.0,Türkiye,132681.0,Baskale,44.25,38.25,TUR,3180.0,Van,278.0,Türkiye,132681.0,Baskale,both,identical +184770,44.75,38.25,IRN,2678.0,West Azerbaijan,242.0,Iran (Islamic Republic Of),126917.0,Salmas,44.75,38.25,IRN,2678.0,West Azerbaijan,242.0,Iran (Islamic Republic Of),126917.0,Salmas,both,identical +184771,45.25,38.25,IRN,2653.0,East Azerbaijan,242.0,Iran (Islamic Republic Of),126564.0,Shabestar,45.25,38.25,IRN,2653.0,East Azerbaijan,242.0,Iran (Islamic Republic Of),126564.0,Shabestar,both,identical +184772,45.75,38.25,IRN,2653.0,East Azerbaijan,242.0,Iran (Islamic Republic Of),126564.0,Shabestar,45.75,38.25,IRN,2653.0,East Azerbaijan,242.0,Iran (Islamic Republic Of),126564.0,Shabestar,both,identical +184773,46.25,38.25,IRN,2653.0,East Azerbaijan,242.0,Iran (Islamic Republic Of),126565.0,Tabriz,46.25,38.25,IRN,2653.0,East Azerbaijan,242.0,Iran (Islamic Republic Of),126565.0,Tabriz,both,identical +184774,46.75,38.25,IRN,2653.0,East Azerbaijan,242.0,Iran (Islamic Republic Of),126554.0,Heris,46.75,38.25,IRN,2653.0,East Azerbaijan,242.0,Iran (Islamic Republic Of),126554.0,Heris,both,identical +184775,47.25,38.25,IRN,2653.0,East Azerbaijan,242.0,Iran (Islamic Republic Of),126563.0,Sarab,47.25,38.25,IRN,2653.0,East Azerbaijan,242.0,Iran (Islamic Republic Of),126563.0,Sarab,both,identical +184776,47.75,38.25,IRN,2650.0,Ardabil,242.0,Iran (Islamic Republic Of),126523.0,Meshginshahr,47.75,38.25,IRN,2650.0,Ardabil,242.0,Iran (Islamic Republic Of),126523.0,Meshginshahr,both,identical +184777,48.25,38.25,IRN,2650.0,Ardabil,242.0,Iran (Islamic Republic Of),126518.0,Ardabil,48.25,38.25,IRN,2650.0,Ardabil,242.0,Iran (Islamic Republic Of),126518.0,Ardabil,both,identical +184778,48.75,38.25,IRN,2655.0,Gilan,242.0,Iran (Islamic Republic Of),126611.0,Talesh,48.75,38.25,IRN,2655.0,Gilan,242.0,Iran (Islamic Republic Of),126611.0,Talesh,both,identical +184791,55.25,38.25,TKM,3098.0,Balkan,277.0,Turkmenistan,131744.0,Administrative Unit Not Available,55.25,38.25,TKM,3098.0,Balkan,277.0,Turkmenistan,131744.0,Administrative Unit Not Available,both,identical +184792,55.75,38.25,TKM,3098.0,Balkan,277.0,Turkmenistan,131744.0,Administrative Unit Not Available,55.75,38.25,TKM,3098.0,Balkan,277.0,Turkmenistan,131744.0,Administrative Unit Not Available,both,identical +184793,56.25,38.25,TKM,3098.0,Balkan,277.0,Turkmenistan,131744.0,Administrative Unit Not Available,56.25,38.25,TKM,3098.0,Balkan,277.0,Turkmenistan,131744.0,Administrative Unit Not Available,both,identical +184794,56.75,38.25,TKM,3097.0,Ahal,277.0,Turkmenistan,131743.0,Administrative Unit Not Available,56.75,38.25,IRN,2669.0,North Khorasan,242.0,Iran (Islamic Republic Of),126815.0,Razo Jalgelan,both,country_reassignment +184795,57.25,38.25,TKM,3097.0,Ahal,277.0,Turkmenistan,131743.0,Administrative Unit Not Available,57.25,38.25,TKM,3097.0,Ahal,277.0,Turkmenistan,131743.0,Administrative Unit Not Available,both,identical +185453,26.25,38.75,TUR,3143.0,Izmir,278.0,Türkiye,132249.0,Karaburun,26.25,38.75,TUR,3143.0,Izmir,278.0,Türkiye,132249.0,Karaburun,both,identical +185454,26.75,38.75,TUR,3143.0,Izmir,278.0,Türkiye,132245.0,Foca,26.75,38.75,TUR,3143.0,Izmir,278.0,Türkiye,132245.0,Foca,both,identical +185455,27.25,38.75,TUR,3143.0,Izmir,278.0,Türkiye,132444.0,Yunusemre,27.25,38.75,TUR,3158.0,Manisa,278.0,Türkiye,132444.0,Yunusemre,both,admin_reallocation +185456,27.75,38.75,TUR,3158.0,Manisa,278.0,Türkiye,132429.0,Akhisar,27.75,38.75,TUR,3158.0,Manisa,278.0,Türkiye,132429.0,Akhisar,both,identical +185457,28.25,38.75,TUR,3158.0,Manisa,278.0,Türkiye,132437.0,Salihli,28.25,38.75,TUR,3158.0,Manisa,278.0,Türkiye,132437.0,Salihli,both,identical +185458,28.75,38.75,TUR,3158.0,Manisa,278.0,Türkiye,132431.0,Demirci,28.75,38.75,TUR,3158.0,Manisa,278.0,Türkiye,132431.0,Demirci,both,identical +185459,29.25,38.75,TUR,3179.0,Usak,278.0,Türkiye,132679.0,Usak,29.25,38.75,TUR,3179.0,Usak,278.0,Türkiye,132679.0,Usak,both,identical +185460,29.75,38.75,TUR,3179.0,Usak,278.0,Türkiye,132674.0,Banaz,29.75,38.75,TUR,3179.0,Usak,278.0,Türkiye,132674.0,Banaz,both,identical +185461,30.25,38.75,TUR,3105.0,Afyonkarahisar,278.0,Türkiye,131787.0,Sinanpasa,30.25,38.75,TUR,3105.0,Afyonkarahisar,278.0,Türkiye,131787.0,Sinanpasa,both,identical +185462,30.75,38.75,TUR,3105.0,Afyonkarahisar,278.0,Türkiye,131772.0,Afyonkarahisar,30.75,38.75,TUR,3105.0,Afyonkarahisar,278.0,Türkiye,131772.0,Afyonkarahisar,both,identical +185463,31.25,38.75,TUR,3105.0,Afyonkarahisar,278.0,Türkiye,131775.0,Bolvadin,31.25,38.75,TUR,3105.0,Afyonkarahisar,278.0,Türkiye,131775.0,Bolvadin,both,identical +185464,31.75,38.75,TUR,3155.0,Konya,278.0,Türkiye,132401.0,Yunak,31.75,38.75,TUR,3155.0,Konya,278.0,Türkiye,132401.0,Yunak,both,identical +185465,32.25,38.75,TUR,3155.0,Konya,278.0,Türkiye,132401.0,Yunak,32.25,38.75,TUR,3155.0,Konya,278.0,Türkiye,132401.0,Yunak,both,identical +185466,32.75,38.75,TUR,3155.0,Konya,278.0,Türkiye,132378.0,Cihanbeyli,32.75,38.75,TUR,3155.0,Konya,278.0,Türkiye,132378.0,Cihanbeyli,both,identical +185467,33.25,38.75,TUR,3155.0,Konya,278.0,Türkiye,132378.0,Cihanbeyli,33.25,38.75,TUR,3155.0,Konya,278.0,Türkiye,132378.0,Cihanbeyli,both,identical +185468,33.75,38.75,TUR,3107.0,Aksaray,278.0,Türkiye,131835.0,Sereflikochisar,33.75,38.75,TUR,3109.0,Ankara,278.0,Türkiye,131835.0,Sereflikochisar,both,admin_reallocation +185469,34.25,38.75,TUR,3107.0,Aksaray,278.0,Türkiye,131803.0,Ortakoy,34.25,38.75,TUR,3107.0,Aksaray,278.0,Türkiye,131803.0,Ortakoy,both,identical +185470,34.75,38.75,TUR,3163.0,Nevsehir,278.0,Türkiye,132488.0,Avanos,34.75,38.75,TUR,3163.0,Nevsehir,278.0,Türkiye,132488.0,Avanos,both,identical +185471,35.25,38.75,TUR,3149.0,Kayseri,278.0,Türkiye,132321.0,Kocasinan,35.25,38.75,TUR,3149.0,Kayseri,278.0,Türkiye,132321.0,Kocasinan,both,identical +185472,35.75,38.75,TUR,3149.0,Kayseri,278.0,Türkiye,132316.0,Bunyan,35.75,38.75,TUR,3149.0,Kayseri,278.0,Türkiye,132316.0,Bunyan,both,identical +185473,36.25,38.75,TUR,3149.0,Kayseri,278.0,Türkiye,132324.0,Pinarbasi,36.25,38.75,TUR,3149.0,Kayseri,278.0,Türkiye,132324.0,Pinarbasi,both,identical +185474,36.75,38.75,TUR,3149.0,Kayseri,278.0,Türkiye,132324.0,Pinarbasi,36.75,38.75,TUR,3149.0,Kayseri,278.0,Türkiye,132324.0,Pinarbasi,both,identical +185475,37.25,38.75,TUR,3174.0,Sivas,278.0,Türkiye,132614.0,Gurun,37.25,38.75,TUR,3174.0,Sivas,278.0,Türkiye,132614.0,Gurun,both,identical +185476,37.75,38.75,TUR,3157.0,Malatya,278.0,Türkiye,132422.0,Hekimhan,37.75,38.75,TUR,3157.0,Malatya,278.0,Türkiye,132422.0,Hekimhan,both,identical +185477,38.25,38.75,TUR,3157.0,Malatya,278.0,Türkiye,132417.0,Arguvan,38.25,38.75,TUR,3157.0,Malatya,278.0,Türkiye,132417.0,Arguvan,both,identical +185478,38.75,38.75,TUR,3131.0,Elazig,278.0,Türkiye,132076.0,Baskil,38.75,38.75,TUR,3131.0,Elazig,278.0,Türkiye,132076.0,Baskil,both,identical +185479,39.25,38.75,TUR,3131.0,Elazig,278.0,Türkiye,132077.0,Elazig,39.25,38.75,TUR,3131.0,Elazig,278.0,Türkiye,132077.0,Elazig,both,identical +185480,39.75,38.75,TUR,3131.0,Elazig,278.0,Türkiye,132080.0,Kovancilar,39.75,38.75,TUR,3131.0,Elazig,278.0,Türkiye,132080.0,Kovancilar,both,identical +185481,40.25,38.75,TUR,3131.0,Elazig,278.0,Türkiye,131931.0,Bingol,40.25,38.75,TUR,3119.0,Bingol,278.0,Türkiye,131931.0,Bingol,both,admin_reallocation +185482,40.75,38.75,TUR,3119.0,Bingol,278.0,Türkiye,131932.0,Genc,40.75,38.75,TUR,3119.0,Bingol,278.0,Türkiye,131932.0,Genc,both,identical +185483,41.25,38.75,TUR,3162.0,Mus,278.0,Türkiye,132485.0,Mus,41.25,38.75,TUR,3162.0,Mus,278.0,Türkiye,132485.0,Mus,both,identical +185484,41.75,38.75,TUR,3162.0,Mus,278.0,Türkiye,132485.0,Mus,41.75,38.75,TUR,3162.0,Mus,278.0,Türkiye,132485.0,Mus,both,identical +185485,42.25,38.75,TUR,3120.0,Bitlis,278.0,Türkiye,131939.0,Ahlat,42.25,38.75,TUR,3120.0,Bitlis,278.0,Türkiye,131939.0,Ahlat,both,identical +185486,42.75,38.75,TUR,3120.0,Bitlis,278.0,Türkiye,131938.0,Adilcevaz,42.75,38.75,TUR,3120.0,Bitlis,278.0,Türkiye,131938.0,Adilcevaz,both,identical +185487,43.25,38.75,TUR,3180.0,Van,278.0,Türkiye,132692.0,Tusba,43.25,38.75,TUR,3180.0,Van,278.0,Türkiye,132692.0,Tusba,both,identical +185488,43.75,38.75,TUR,3180.0,Van,278.0,Türkiye,132688.0,Ipekyolu,43.75,38.75,TUR,3180.0,Van,278.0,Türkiye,132688.0,Ipekyolu,both,identical +185489,44.25,38.75,IRN,2678.0,West Azerbaijan,242.0,Iran (Islamic Republic Of),126909.0,Khoy,44.25,38.75,TUR,3180.0,Van,278.0,Türkiye,132690.0,Ozalp,both,country_reassignment +185490,44.75,38.75,IRN,2678.0,West Azerbaijan,242.0,Iran (Islamic Republic Of),126909.0,Khoy,44.75,38.75,IRN,2678.0,West Azerbaijan,242.0,Iran (Islamic Republic Of),126909.0,Khoy,both,identical +185491,45.25,38.75,IRN,2678.0,West Azerbaijan,242.0,Iran (Islamic Republic Of),126909.0,Khoy,45.25,38.75,IRN,2678.0,West Azerbaijan,242.0,Iran (Islamic Republic Of),126909.0,Khoy,both,identical +185492,45.75,38.75,IRN,2653.0,East Azerbaijan,242.0,Iran (Islamic Republic Of),126560.0,Marand,45.75,38.75,IRN,2653.0,East Azerbaijan,242.0,Iran (Islamic Republic Of),126560.0,Marand,both,identical +185493,46.25,38.75,IRN,2653.0,East Azerbaijan,242.0,Iran (Islamic Republic Of),126566.0,Varzaqan,46.25,38.75,IRN,2653.0,East Azerbaijan,242.0,Iran (Islamic Republic Of),126566.0,Varzaqan,both,identical +185494,46.75,38.75,IRN,2653.0,East Azerbaijan,242.0,Iran (Islamic Republic Of),126566.0,Varzaqan,46.75,38.75,IRN,2653.0,East Azerbaijan,242.0,Iran (Islamic Republic Of),126566.0,Varzaqan,both,identical +185495,47.25,38.75,IRN,2653.0,East Azerbaijan,242.0,Iran (Islamic Republic Of),126547.0,Ahar,47.25,38.75,IRN,2653.0,East Azerbaijan,242.0,Iran (Islamic Republic Of),126547.0,Ahar,both,identical +185496,47.75,38.75,IRN,2650.0,Ardabil,242.0,Iran (Islamic Republic Of),126523.0,Meshginshahr,47.75,38.75,IRN,2650.0,Ardabil,242.0,Iran (Islamic Republic Of),126523.0,Meshginshahr,both,identical +185497,48.25,38.75,AZE,2453.0,Lankaran-Astara Economic Region,227.0,Azerbaijan,124200.0,Lerik,48.25,38.75,AZE,2453.0,Lankaran-Astara Economic Region,227.0,Azerbaijan,124200.0,Lerik,both,identical +185498,48.75,38.75,AZE,2453.0,Lankaran-Astara Economic Region,227.0,Azerbaijan,900051.0,Waterbody,48.75,38.75,AZE,2459.0,Waterbody,227.0,Azerbaijan,900051.0,Waterbody,both,admin_reallocation +186173,26.25,39.25,GRC,3473.0,Aigaioy,305.0,Greece,135887.0,Voreioy Aigaioy,26.25,39.25,GRC,3473.0,Aigaioy,305.0,Greece,135887.0,Voreioy Aigaioy,both,identical +186174,26.75,39.25,TUR,3114.0,Balikesir,278.0,Türkiye,132244.0,Dikili,26.75,39.25,TUR,3143.0,Izmir,278.0,Türkiye,132244.0,Dikili,both,admin_reallocation +186175,27.25,39.25,TUR,3143.0,Izmir,278.0,Türkiye,132238.0,Bergama,27.25,39.25,TUR,3143.0,Izmir,278.0,Türkiye,132238.0,Bergama,both,identical +186176,27.75,39.25,TUR,3158.0,Manisa,278.0,Türkiye,132442.0,Soma,27.75,39.25,TUR,3158.0,Manisa,278.0,Türkiye,132442.0,Soma,both,identical +186177,28.25,39.25,TUR,3114.0,Balikesir,278.0,Türkiye,131907.0,Sindirgi,28.25,39.25,TUR,3114.0,Balikesir,278.0,Türkiye,131907.0,Sindirgi,both,identical +186178,28.75,39.25,TUR,3114.0,Balikesir,278.0,Türkiye,132413.0,Simav,28.75,39.25,TUR,3156.0,Kutahya,278.0,Türkiye,132413.0,Simav,both,admin_reallocation +186179,29.25,39.25,TUR,3156.0,Kutahya,278.0,Türkiye,132407.0,Emet,29.25,39.25,TUR,3156.0,Kutahya,278.0,Türkiye,132407.0,Emet,both,identical +186180,29.75,39.25,TUR,3156.0,Kutahya,278.0,Türkiye,132403.0,Aslanapa,29.75,39.25,TUR,3156.0,Kutahya,278.0,Türkiye,132403.0,Aslanapa,both,identical +186181,30.25,39.25,TUR,3156.0,Kutahya,278.0,Türkiye,132410.0,Kutahya,30.25,39.25,TUR,3156.0,Kutahya,278.0,Türkiye,132410.0,Kutahya,both,identical +186182,30.75,39.25,TUR,3134.0,Eskisehir,278.0,Türkiye,132124.0,Seyitgazi,30.75,39.25,TUR,3134.0,Eskisehir,278.0,Türkiye,132124.0,Seyitgazi,both,identical +186183,31.25,39.25,TUR,3134.0,Eskisehir,278.0,Türkiye,131780.0,Emirdag,31.25,39.25,TUR,3105.0,Afyonkarahisar,278.0,Türkiye,131780.0,Emirdag,both,admin_reallocation +186184,31.75,39.25,TUR,3134.0,Eskisehir,278.0,Türkiye,132125.0,Sivrihisar,31.75,39.25,TUR,3134.0,Eskisehir,278.0,Türkiye,132125.0,Sivrihisar,both,identical +186185,32.25,39.25,TUR,3109.0,Ankara,278.0,Türkiye,131833.0,Polatli,32.25,39.25,TUR,3109.0,Ankara,278.0,Türkiye,131833.0,Polatli,both,identical +186186,32.75,39.25,TUR,3109.0,Ankara,278.0,Türkiye,131826.0,Haymana,32.75,39.25,TUR,3109.0,Ankara,278.0,Türkiye,131826.0,Haymana,both,identical +186187,33.25,39.25,TUR,3109.0,Ankara,278.0,Türkiye,131816.0,Bala,33.25,39.25,TUR,3109.0,Ankara,278.0,Türkiye,131816.0,Bala,both,identical +186188,33.75,39.25,TUR,3153.0,Kirsehir,278.0,Türkiye,132356.0,Kaman,33.75,39.25,TUR,3153.0,Kirsehir,278.0,Türkiye,132356.0,Kaman,both,identical +186189,34.25,39.25,TUR,3153.0,Kirsehir,278.0,Türkiye,132357.0,Kirsehir,34.25,39.25,TUR,3153.0,Kirsehir,278.0,Türkiye,132357.0,Kirsehir,both,identical +186190,34.75,39.25,TUR,3163.0,Nevsehir,278.0,Türkiye,132492.0,Kozakli,34.75,39.25,TUR,3163.0,Nevsehir,278.0,Türkiye,132492.0,Kozakli,both,identical +186191,35.25,39.25,TUR,3182.0,Yozgat,278.0,Türkiye,132701.0,Bogazliyan,35.25,39.25,TUR,3182.0,Yozgat,278.0,Türkiye,132701.0,Bogazliyan,both,identical +186192,35.75,39.25,TUR,3149.0,Kayseri,278.0,Türkiye,132703.0,Cayiralan,35.75,39.25,TUR,3182.0,Yozgat,278.0,Türkiye,132703.0,Cayiralan,both,admin_reallocation +186193,36.25,39.25,TUR,3174.0,Sivas,278.0,Türkiye,132619.0,Sarkisla,36.25,39.25,TUR,3174.0,Sivas,278.0,Türkiye,132619.0,Sarkisla,both,identical +186194,36.75,39.25,TUR,3174.0,Sivas,278.0,Türkiye,132609.0,Altinyayla,36.75,39.25,TUR,3174.0,Sivas,278.0,Türkiye,132609.0,Altinyayla,both,identical +186195,37.25,39.25,TUR,3174.0,Sivas,278.0,Türkiye,132617.0,Kangal,37.25,39.25,TUR,3174.0,Sivas,278.0,Türkiye,132617.0,Kangal,both,identical +186196,37.75,39.25,TUR,3174.0,Sivas,278.0,Türkiye,132617.0,Kangal,37.75,39.25,TUR,3174.0,Sivas,278.0,Türkiye,132617.0,Kangal,both,identical +186197,38.25,39.25,TUR,3174.0,Sivas,278.0,Türkiye,132610.0,Divrigi,38.25,39.25,TUR,3174.0,Sivas,278.0,Türkiye,132610.0,Divrigi,both,identical +186198,38.75,39.25,TUR,3132.0,Erzincan,278.0,Türkiye,132088.0,Kemaliye,38.75,39.25,TUR,3132.0,Erzincan,278.0,Türkiye,132088.0,Kemaliye,both,identical +186199,39.25,39.25,TUR,3178.0,Tunceli,278.0,Türkiye,132670.0,Ovacik,39.25,39.25,TUR,3178.0,Tunceli,278.0,Türkiye,132670.0,Ovacik,both,identical +186200,39.75,39.25,TUR,3178.0,Tunceli,278.0,Türkiye,132673.0,Tunceli,39.75,39.25,TUR,3178.0,Tunceli,278.0,Türkiye,132673.0,Tunceli,both,identical +186201,40.25,39.25,TUR,3119.0,Bingol,278.0,Türkiye,131934.0,Kigi,40.25,39.25,TUR,3119.0,Bingol,278.0,Türkiye,131934.0,Kigi,both,identical +186202,40.75,39.25,TUR,3119.0,Bingol,278.0,Türkiye,131933.0,Karliova,40.75,39.25,TUR,3119.0,Bingol,278.0,Türkiye,131933.0,Karliova,both,identical +186203,41.25,39.25,TUR,3162.0,Mus,278.0,Türkiye,132486.0,Varto,41.25,39.25,TUR,3162.0,Mus,278.0,Türkiye,132486.0,Varto,both,identical +186204,41.75,39.25,TUR,3133.0,Erzurum,278.0,Türkiye,132096.0,Hinis,41.75,39.25,TUR,3133.0,Erzurum,278.0,Türkiye,132096.0,Hinis,both,identical +186205,42.25,39.25,TUR,3162.0,Mus,278.0,Türkiye,132481.0,Bulanik,42.25,39.25,TUR,3162.0,Mus,278.0,Türkiye,132481.0,Bulanik,both,identical +186206,42.75,39.25,TUR,3106.0,Agri,278.0,Türkiye,131795.0,Patnos,42.75,39.25,TUR,3106.0,Agri,278.0,Türkiye,131795.0,Patnos,both,identical +186207,43.25,39.25,TUR,3180.0,Van,278.0,Türkiye,132685.0,Ercis,43.25,39.25,TUR,3180.0,Van,278.0,Türkiye,132685.0,Ercis,both,identical +186208,43.75,39.25,TUR,3180.0,Van,278.0,Türkiye,131791.0,Diyadin,43.75,39.25,TUR,3106.0,Agri,278.0,Türkiye,131791.0,Diyadin,both,admin_reallocation +186209,44.25,39.25,IRN,2678.0,West Azerbaijan,242.0,Iran (Islamic Republic Of),126907.0,Chaldoran,44.25,39.25,IRN,2678.0,West Azerbaijan,242.0,Iran (Islamic Republic Of),126907.0,Chaldoran,both,identical +186210,44.75,39.25,IRN,2678.0,West Azerbaijan,242.0,Iran (Islamic Republic Of),126911.0,Maku,44.75,39.25,IRN,2678.0,West Azerbaijan,242.0,Iran (Islamic Republic Of),126911.0,Maku,both,identical +186211,45.25,39.25,AZE,2456.0,Nakhchivan Economic Region,227.0,Azerbaijan,124213.0,Kangharli,45.25,39.25,IRN,2678.0,West Azerbaijan,242.0,Iran (Islamic Republic Of),126916.0,Poldasht,both,country_reassignment +186214,46.75,39.25,AZE,2448.0,East Zangezur Economic Region,227.0,Azerbaijan,124168.0,Jebrail,46.75,39.25,AZE,2448.0,East Zangezur Economic Region,227.0,Azerbaijan,124168.0,Jebrail,both,identical +186215,47.25,39.25,IRN,2653.0,East Azerbaijan,242.0,Iran (Islamic Republic Of),126556.0,Kalibar,47.25,39.25,IRN,2653.0,East Azerbaijan,242.0,Iran (Islamic Republic Of),126556.0,Kalibar,both,identical +186216,47.75,39.25,IRN,2650.0,Ardabil,242.0,Iran (Islamic Republic Of),126519.0,Bilasavar,47.75,39.25,IRN,2650.0,Ardabil,242.0,Iran (Islamic Republic Of),126519.0,Bilasavar,both,identical +186217,48.25,39.25,AZE,2453.0,Lankaran-Astara Economic Region,227.0,Azerbaijan,124198.0,Jalilabad,48.25,39.25,AZE,2453.0,Lankaran-Astara Economic Region,227.0,Azerbaijan,124198.0,Jalilabad,both,identical +186893,26.25,39.75,TUR,3124.0,Canakkale,278.0,Türkiye,131989.0,Ezine,26.25,39.75,TUR,3124.0,Canakkale,278.0,Türkiye,131989.0,Ezine,both,identical +186894,26.75,39.75,TUR,3124.0,Canakkale,278.0,Türkiye,131983.0,Bayramic,26.75,39.75,TUR,3124.0,Canakkale,278.0,Türkiye,131983.0,Bayramic,both,identical +186895,27.25,39.75,TUR,3124.0,Canakkale,278.0,Türkiye,131993.0,Yenice,27.25,39.75,TUR,3124.0,Canakkale,278.0,Türkiye,131993.0,Yenice,both,identical +186896,27.75,39.75,TUR,3114.0,Balikesir,278.0,Türkiye,131902.0,Karesi,27.75,39.75,TUR,3114.0,Balikesir,278.0,Türkiye,131902.0,Karesi,both,identical +186897,28.25,39.75,TUR,3114.0,Balikesir,278.0,Türkiye,131903.0,Kepsut,28.25,39.75,TUR,3114.0,Balikesir,278.0,Türkiye,131903.0,Kepsut,both,identical +186898,28.75,39.75,TUR,3123.0,Bursa,278.0,Türkiye,131895.0,Dursunbey,28.75,39.75,TUR,3114.0,Balikesir,278.0,Türkiye,131895.0,Dursunbey,both,admin_reallocation +186899,29.25,39.75,TUR,3123.0,Bursa,278.0,Türkiye,132414.0,Tavsanli,29.25,39.75,TUR,3156.0,Kutahya,278.0,Türkiye,132414.0,Tavsanli,both,admin_reallocation +186900,29.75,39.75,TUR,3156.0,Kutahya,278.0,Türkiye,131923.0,Bozuyuk,29.75,39.75,TUR,3118.0,Bilecik,278.0,Türkiye,131923.0,Bozuyuk,both,admin_reallocation +186901,30.25,39.75,TUR,3134.0,Eskisehir,278.0,Türkiye,132126.0,Tepebasi,30.25,39.75,TUR,3134.0,Eskisehir,278.0,Türkiye,132126.0,Tepebasi,both,identical +186902,30.75,39.75,TUR,3134.0,Eskisehir,278.0,Türkiye,132122.0,Odunpazari,30.75,39.75,TUR,3134.0,Eskisehir,278.0,Türkiye,132122.0,Odunpazari,both,identical +186903,31.25,39.75,TUR,3134.0,Eskisehir,278.0,Türkiye,132114.0,Beylikova,31.25,39.75,TUR,3134.0,Eskisehir,278.0,Türkiye,132114.0,Beylikova,both,identical +186904,31.75,39.75,TUR,3134.0,Eskisehir,278.0,Türkiye,132121.0,Mihaliccik,31.75,39.75,TUR,3134.0,Eskisehir,278.0,Türkiye,132121.0,Mihaliccik,both,identical +186905,32.25,39.75,TUR,3109.0,Ankara,278.0,Türkiye,131833.0,Polatli,32.25,39.75,TUR,3109.0,Ankara,278.0,Türkiye,131833.0,Polatli,both,identical +186906,32.75,39.75,TUR,3109.0,Ankara,278.0,Türkiye,131824.0,Golbasi,32.75,39.75,TUR,3109.0,Ankara,278.0,Türkiye,131824.0,Golbasi,both,identical +186907,33.25,39.75,TUR,3109.0,Ankara,278.0,Türkiye,131816.0,Bala,33.25,39.75,TUR,3109.0,Ankara,278.0,Türkiye,131816.0,Bala,both,identical +186908,33.75,39.75,TUR,3151.0,Kirikkale,278.0,Türkiye,132340.0,Keskin,33.75,39.75,TUR,3151.0,Kirikkale,278.0,Türkiye,132340.0,Keskin,both,identical +186909,34.25,39.75,TUR,3153.0,Kirsehir,278.0,Türkiye,132711.0,Yerkoy,34.25,39.75,TUR,3182.0,Yozgat,278.0,Türkiye,132711.0,Yerkoy,both,admin_reallocation +186910,34.75,39.75,TUR,3182.0,Yozgat,278.0,Türkiye,132712.0,Yozgat,34.75,39.75,TUR,3182.0,Yozgat,278.0,Türkiye,132712.0,Yozgat,both,identical +186911,35.25,39.75,TUR,3182.0,Yozgat,278.0,Türkiye,132709.0,Sorgun,35.25,39.75,TUR,3182.0,Yozgat,278.0,Türkiye,132709.0,Sorgun,both,identical +186912,35.75,39.75,TUR,3182.0,Yozgat,278.0,Türkiye,132699.0,Akdagmadeni,35.75,39.75,TUR,3182.0,Yozgat,278.0,Türkiye,132699.0,Akdagmadeni,both,identical +186913,36.25,39.75,TUR,3174.0,Sivas,278.0,Türkiye,132623.0,Yildizeli,36.25,39.75,TUR,3174.0,Sivas,278.0,Türkiye,132623.0,Yildizeli,both,identical +186914,36.75,39.75,TUR,3174.0,Sivas,278.0,Türkiye,132620.0,Sivas,36.75,39.75,TUR,3174.0,Sivas,278.0,Türkiye,132620.0,Sivas,both,identical +186915,37.25,39.75,TUR,3174.0,Sivas,278.0,Türkiye,132620.0,Sivas,37.25,39.75,TUR,3174.0,Sivas,278.0,Türkiye,132620.0,Sivas,both,identical +186916,37.75,39.75,TUR,3174.0,Sivas,278.0,Türkiye,132624.0,Zara,37.75,39.75,TUR,3174.0,Sivas,278.0,Türkiye,132624.0,Zara,both,identical +186917,38.25,39.75,TUR,3174.0,Sivas,278.0,Türkiye,132616.0,Imranli,38.25,39.75,TUR,3174.0,Sivas,278.0,Türkiye,132616.0,Imranli,both,identical +186918,38.75,39.75,TUR,3132.0,Erzincan,278.0,Türkiye,132090.0,Refahiye,38.75,39.75,TUR,3132.0,Erzincan,278.0,Türkiye,132090.0,Refahiye,both,identical +186919,39.25,39.75,TUR,3132.0,Erzincan,278.0,Türkiye,132087.0,Kemah,39.25,39.75,TUR,3132.0,Erzincan,278.0,Türkiye,132087.0,Kemah,both,identical +186920,39.75,39.75,TUR,3132.0,Erzincan,278.0,Türkiye,132085.0,Erzincan,39.75,39.75,TUR,3132.0,Erzincan,278.0,Türkiye,132085.0,Erzincan,both,identical +186921,40.25,39.75,TUR,3132.0,Erzincan,278.0,Türkiye,132091.0,Tercan,40.25,39.75,TUR,3132.0,Erzincan,278.0,Türkiye,132091.0,Tercan,both,identical +186922,40.75,39.75,TUR,3133.0,Erzurum,278.0,Türkiye,132093.0,Askale,40.75,39.75,TUR,3133.0,Erzurum,278.0,Türkiye,132093.0,Askale,both,identical +186923,41.25,39.75,TUR,3133.0,Erzurum,278.0,Türkiye,132109.0,Tekman,41.25,39.75,TUR,3133.0,Erzurum,278.0,Türkiye,132109.0,Tekman,both,identical +186924,41.75,39.75,TUR,3133.0,Erzurum,278.0,Türkiye,132109.0,Tekman,41.75,39.75,TUR,3133.0,Erzurum,278.0,Türkiye,132109.0,Tekman,both,identical +186925,42.25,39.75,TUR,3133.0,Erzurum,278.0,Türkiye,132100.0,Karayazi,42.25,39.75,TUR,3133.0,Erzurum,278.0,Türkiye,132100.0,Karayazi,both,identical +186926,42.75,39.75,TUR,3106.0,Agri,278.0,Türkiye,131793.0,Eleskirt,42.75,39.75,TUR,3106.0,Agri,278.0,Türkiye,131793.0,Eleskirt,both,identical +186927,43.25,39.75,TUR,3106.0,Agri,278.0,Türkiye,131790.0,Agri,43.25,39.75,TUR,3106.0,Agri,278.0,Türkiye,131790.0,Agri,both,identical +186928,43.75,39.75,TUR,3106.0,Agri,278.0,Türkiye,131792.0,Dogubayazit,43.75,39.75,TUR,3106.0,Agri,278.0,Türkiye,131792.0,Dogubayazit,both,identical +186929,44.25,39.75,TUR,3140.0,Igdir,278.0,Türkiye,131792.0,Dogubayazit,44.25,39.75,TUR,3106.0,Agri,278.0,Türkiye,131792.0,Dogubayazit,both,admin_reallocation +186930,44.75,39.75,ARM,2434.0,Ararat,225.0,Armenia,124099.0,Ararat,44.75,39.75,ARM,2434.0,Ararat,225.0,Armenia,124099.0,Ararat,both,identical +186935,47.25,39.75,AZE,2452.0,Karabakh Economic Region,227.0,Azerbaijan,124191.0,Fuzuli,47.25,39.75,AZE,2452.0,Karabakh Economic Region,227.0,Azerbaijan,124191.0,Fuzuli,both,identical +186936,47.75,39.75,AZE,2454.0,Mil-Mughan Economic Region,227.0,Azerbaijan,124203.0,Beilagan,47.75,39.75,AZE,2454.0,Mil-Mughan Economic Region,227.0,Azerbaijan,124203.0,Beilagan,both,identical +186937,48.25,39.75,AZE,2454.0,Mil-Mughan Economic Region,227.0,Azerbaijan,124204.0,Imishli,48.25,39.75,AZE,2454.0,Mil-Mughan Economic Region,227.0,Azerbaijan,124204.0,Imishli,both,identical +187612,25.75,40.25,TUR,3124.0,Canakkale,278.0,Türkiye,131991.0,Gokceada,25.75,40.25,TUR,3124.0,Canakkale,278.0,Türkiye,131991.0,Gokceada,both,identical +187613,26.25,40.25,TUR,3124.0,Canakkale,278.0,Türkiye,131988.0,Eceabat,26.25,40.25,TUR,3124.0,Canakkale,278.0,Türkiye,131988.0,Eceabat,both,identical +187614,26.75,40.25,TUR,3124.0,Canakkale,278.0,Türkiye,131992.0,Lapseki,26.75,40.25,TUR,3124.0,Canakkale,278.0,Türkiye,131992.0,Lapseki,both,identical +187615,27.25,40.25,TUR,3124.0,Canakkale,278.0,Türkiye,131984.0,Biga,27.25,40.25,TUR,3124.0,Canakkale,278.0,Türkiye,131984.0,Biga,both,identical +187616,27.75,40.25,TUR,3114.0,Balikesir,278.0,Türkiye,131899.0,Gonen,27.75,40.25,TUR,3114.0,Balikesir,278.0,Türkiye,131899.0,Gonen,both,identical +187617,28.25,40.25,TUR,3123.0,Bursa,278.0,Türkiye,131971.0,Karacabey,28.25,40.25,TUR,3123.0,Bursa,278.0,Türkiye,131971.0,Karacabey,both,identical +187618,28.75,40.25,TUR,3123.0,Bursa,278.0,Türkiye,131976.0,Nilufer,28.75,40.25,TUR,3123.0,Bursa,278.0,Türkiye,131976.0,Nilufer,both,identical +187619,29.25,40.25,TUR,3123.0,Bursa,278.0,Türkiye,131979.0,Osmangazi,29.25,40.25,TUR,3123.0,Bursa,278.0,Türkiye,131979.0,Osmangazi,both,identical +187620,29.75,40.25,TUR,3123.0,Bursa,278.0,Türkiye,131980.0,Yenisehir,29.75,40.25,TUR,3123.0,Bursa,278.0,Türkiye,131980.0,Yenisehir,both,identical +187621,30.25,40.25,TUR,3118.0,Bilecik,278.0,Türkiye,131924.0,Golpazari,30.25,40.25,TUR,3118.0,Bilecik,278.0,Türkiye,131924.0,Golpazari,both,identical +187622,30.75,40.25,TUR,3121.0,Bolu,278.0,Türkiye,131948.0,Goynuk,30.75,40.25,TUR,3121.0,Bolu,278.0,Türkiye,131948.0,Goynuk,both,identical +187623,31.25,40.25,TUR,3109.0,Ankara,278.0,Türkiye,131832.0,Nallihan,31.25,40.25,TUR,3109.0,Ankara,278.0,Türkiye,131832.0,Nallihan,both,identical +187624,31.75,40.25,TUR,3109.0,Ankara,278.0,Türkiye,131817.0,Beypazari,31.75,40.25,TUR,3109.0,Ankara,278.0,Türkiye,131817.0,Beypazari,both,identical +187625,32.25,40.25,TUR,3109.0,Ankara,278.0,Türkiye,131825.0,Gudul,32.25,40.25,TUR,3109.0,Ankara,278.0,Türkiye,131825.0,Gudul,both,identical +187626,32.75,40.25,TUR,3109.0,Ankara,278.0,Türkiye,131830.0,Kizilcahamam,32.75,40.25,TUR,3109.0,Ankara,278.0,Türkiye,131830.0,Kizilcahamam,both,identical +187627,33.25,40.25,TUR,3109.0,Ankara,278.0,Türkiye,131828.0,Kalecik,33.25,40.25,TUR,3109.0,Ankara,278.0,Türkiye,131828.0,Kalecik,both,identical +187628,33.75,40.25,TUR,3151.0,Kirikkale,278.0,Türkiye,132342.0,Sulakyurt,33.75,40.25,TUR,3151.0,Kirikkale,278.0,Türkiye,132342.0,Sulakyurt,both,identical +187629,34.25,40.25,TUR,3126.0,Corum,278.0,Türkiye,132018.0,Sungurlu,34.25,40.25,TUR,3126.0,Corum,278.0,Türkiye,132018.0,Sungurlu,both,identical +187630,34.75,40.25,TUR,3126.0,Corum,278.0,Türkiye,132006.0,Alaca,34.75,40.25,TUR,3126.0,Corum,278.0,Türkiye,132006.0,Alaca,both,identical +187631,35.25,40.25,TUR,3126.0,Corum,278.0,Türkiye,132014.0,Mecitozu,35.25,40.25,TUR,3126.0,Corum,278.0,Türkiye,132014.0,Mecitozu,both,identical +187632,35.75,40.25,TUR,3176.0,Tokat,278.0,Türkiye,132647.0,Zile,35.75,40.25,TUR,3176.0,Tokat,278.0,Türkiye,132647.0,Zile,both,identical +187633,36.25,40.25,TUR,3176.0,Tokat,278.0,Türkiye,132645.0,Turhal,36.25,40.25,TUR,3176.0,Tokat,278.0,Türkiye,132645.0,Turhal,both,identical +187634,36.75,40.25,TUR,3176.0,Tokat,278.0,Türkiye,132644.0,Tokat,36.75,40.25,TUR,3176.0,Tokat,278.0,Türkiye,132644.0,Tokat,both,identical +187635,37.25,40.25,TUR,3176.0,Tokat,278.0,Türkiye,132642.0,Resadiye,37.25,40.25,TUR,3176.0,Tokat,278.0,Türkiye,132642.0,Resadiye,both,identical +187636,37.75,40.25,TUR,3174.0,Sivas,278.0,Türkiye,132618.0,Koyulhisar,37.75,40.25,TUR,3174.0,Sivas,278.0,Türkiye,132618.0,Koyulhisar,both,identical +187637,38.25,40.25,TUR,3174.0,Sivas,278.0,Türkiye,132149.0,Sebinkarahisar,38.25,40.25,TUR,3136.0,Giresun,278.0,Türkiye,132149.0,Sebinkarahisar,both,admin_reallocation +187638,38.75,40.25,TUR,3136.0,Giresun,278.0,Türkiye,132136.0,Alucra,38.75,40.25,TUR,3136.0,Giresun,278.0,Türkiye,132136.0,Alucra,both,identical +187639,39.25,40.25,TUR,3137.0,Gumushane,278.0,Türkiye,132156.0,Siran,39.25,40.25,TUR,3137.0,Gumushane,278.0,Türkiye,132156.0,Siran,both,identical +187640,39.75,40.25,TUR,3137.0,Gumushane,278.0,Türkiye,132152.0,Gumushane,39.75,40.25,TUR,3137.0,Gumushane,278.0,Türkiye,132152.0,Gumushane,both,identical +187641,40.25,40.25,TUR,3117.0,Bayburt,278.0,Türkiye,131920.0,Bayburt,40.25,40.25,TUR,3117.0,Bayburt,278.0,Türkiye,131920.0,Bayburt,both,identical +187642,40.75,40.25,TUR,3133.0,Erzurum,278.0,Türkiye,132094.0,Aziziye,40.75,40.25,TUR,3133.0,Erzurum,278.0,Türkiye,132094.0,Aziziye,both,identical +187643,41.25,40.25,TUR,3133.0,Erzurum,278.0,Türkiye,132110.0,Tortum,41.25,40.25,TUR,3133.0,Erzurum,278.0,Türkiye,132110.0,Tortum,both,identical +187644,41.75,40.25,TUR,3133.0,Erzurum,278.0,Türkiye,132102.0,Narman,41.75,40.25,TUR,3133.0,Erzurum,278.0,Türkiye,132102.0,Narman,both,identical +187645,42.25,40.25,TUR,3133.0,Erzurum,278.0,Türkiye,132097.0,Horasan,42.25,40.25,TUR,3133.0,Erzurum,278.0,Türkiye,132097.0,Horasan,both,identical +187646,42.75,40.25,TUR,3147.0,Kars,278.0,Türkiye,132292.0,Sarikamis,42.75,40.25,TUR,3147.0,Kars,278.0,Türkiye,132292.0,Sarikamis,both,identical +187647,43.25,40.25,TUR,3147.0,Kars,278.0,Türkiye,132290.0,Kagizman,43.25,40.25,TUR,3147.0,Kars,278.0,Türkiye,132290.0,Kagizman,both,identical +187648,43.75,40.25,ARM,2433.0,Aragatsotn,225.0,Armenia,124098.0,Talin,43.75,40.25,ARM,2433.0,Aragatsotn,225.0,Armenia,124098.0,Talin,both,identical +187649,44.25,40.25,ARM,2433.0,Aragatsotn,225.0,Armenia,124097.0,Ashtarak,44.25,40.25,ARM,2433.0,Aragatsotn,225.0,Armenia,124097.0,Ashtarak,both,identical +188333,26.25,40.75,TUR,3130.0,Edirne,278.0,Türkiye,132067.0,Ipsala,26.25,40.75,GRC,3477.0,Makedonias Thrakis,305.0,Greece,135892.0,Anatolikis Makedonias Kai Thrakis,both,country_reassignment +188334,26.75,40.75,TUR,3130.0,Edirne,278.0,Türkiye,132068.0,Kesan,26.75,40.75,TUR,3130.0,Edirne,278.0,Türkiye,132068.0,Kesan,both,identical +188335,27.25,40.75,TUR,3175.0,Tekirdag,278.0,Türkiye,132635.0,Suleymanpasa,27.25,40.75,TUR,3175.0,Tekirdag,278.0,Türkiye,132635.0,Suleymanpasa,both,identical +188336,27.75,40.75,TUR,3114.0,Balikesir,278.0,Türkiye,131905.0,Marmara,27.75,40.75,TUR,3114.0,Balikesir,278.0,Türkiye,131905.0,Marmara,both,identical +188338,28.75,40.75,TUR,3181.0,Yalova,278.0,Türkiye,132694.0,Armutlu,28.75,40.75,TUR,3181.0,Yalova,278.0,Türkiye,132694.0,Armutlu,both,identical +188339,29.25,40.75,TUR,3181.0,Yalova,278.0,Türkiye,132222.0,Pendik,29.25,40.75,TUR,3142.0,Istanbul,278.0,Türkiye,132222.0,Pendik,both,admin_reallocation +188340,29.75,40.75,TUR,3154.0,Kocaeli,278.0,Türkiye,132370.0,Korfez,29.75,40.75,TUR,3154.0,Kocaeli,278.0,Türkiye,132370.0,Korfez,both,identical +188341,30.25,40.75,TUR,3168.0,Sakarya,278.0,Türkiye,132544.0,Geyve,30.25,40.75,TUR,3168.0,Sakarya,278.0,Türkiye,132544.0,Geyve,both,identical +188342,30.75,40.75,TUR,3168.0,Sakarya,278.0,Türkiye,132545.0,Hendek,30.75,40.75,TUR,3168.0,Sakarya,278.0,Türkiye,132545.0,Hendek,both,identical +188343,31.25,40.75,TUR,3129.0,Duzce,278.0,Türkiye,132059.0,Duzce,31.25,40.75,TUR,3129.0,Duzce,278.0,Türkiye,132059.0,Duzce,both,identical +188344,31.75,40.75,TUR,3121.0,Bolu,278.0,Türkiye,131945.0,Bolu,31.75,40.75,TUR,3121.0,Bolu,278.0,Türkiye,131945.0,Bolu,both,identical +188345,32.25,40.75,TUR,3121.0,Bolu,278.0,Türkiye,131947.0,Gerede,32.25,40.75,TUR,3121.0,Bolu,278.0,Türkiye,131947.0,Gerede,both,identical +188346,32.75,40.75,TUR,3125.0,Cankiri,278.0,Türkiye,131997.0,Cerkes,32.75,40.75,TUR,3125.0,Cankiri,278.0,Türkiye,131997.0,Cerkes,both,identical +188347,33.25,40.75,TUR,3125.0,Cankiri,278.0,Türkiye,132002.0,Kursunlu,33.25,40.75,TUR,3125.0,Cankiri,278.0,Türkiye,132002.0,Kursunlu,both,identical +188348,33.75,40.75,TUR,3125.0,Cankiri,278.0,Türkiye,131996.0,Cankiri,33.75,40.75,TUR,3125.0,Cankiri,278.0,Türkiye,131996.0,Cankiri,both,identical +188349,34.25,40.75,TUR,3126.0,Corum,278.0,Türkiye,132011.0,Iskilip,34.25,40.75,TUR,3126.0,Corum,278.0,Türkiye,132011.0,Iskilip,both,identical +188350,34.75,40.75,TUR,3126.0,Corum,278.0,Türkiye,132009.0,Corum,34.75,40.75,TUR,3126.0,Corum,278.0,Türkiye,132009.0,Corum,both,identical +188351,35.25,40.75,TUR,3108.0,Amasya,278.0,Türkiye,131810.0,Merzifon,35.25,40.75,TUR,3108.0,Amasya,278.0,Türkiye,131810.0,Merzifon,both,identical +188352,35.75,40.75,TUR,3108.0,Amasya,278.0,Türkiye,131806.0,Amasya,35.75,40.75,TUR,3108.0,Amasya,278.0,Türkiye,131806.0,Amasya,both,identical +188353,36.25,40.75,TUR,3108.0,Amasya,278.0,Türkiye,131812.0,Tasova,36.25,40.75,TUR,3108.0,Amasya,278.0,Türkiye,131812.0,Tasova,both,identical +188354,36.75,40.75,TUR,3176.0,Tokat,278.0,Türkiye,132639.0,Erbaa,36.75,40.75,TUR,3176.0,Tokat,278.0,Türkiye,132639.0,Erbaa,both,identical +188355,37.25,40.75,TUR,3165.0,Ordu,278.0,Türkiye,132515.0,Kumru,37.25,40.75,TUR,3165.0,Ordu,278.0,Türkiye,132515.0,Kumru,both,identical +188356,37.75,40.75,TUR,3165.0,Ordu,278.0,Türkiye,132516.0,Mesudiye,37.75,40.75,TUR,3165.0,Ordu,278.0,Türkiye,132516.0,Mesudiye,both,identical +188357,38.25,40.75,TUR,3136.0,Giresun,278.0,Türkiye,132137.0,Bulancak,38.25,40.75,TUR,3136.0,Giresun,278.0,Türkiye,132137.0,Bulancak,both,identical +188358,38.75,40.75,TUR,3136.0,Giresun,278.0,Türkiye,132155.0,Kurtun,38.75,40.75,TUR,3137.0,Gumushane,278.0,Türkiye,132155.0,Kurtun,both,admin_reallocation +188359,39.25,40.75,TUR,3137.0,Gumushane,278.0,Türkiye,132157.0,Torul,39.25,40.75,TUR,3137.0,Gumushane,278.0,Türkiye,132157.0,Torul,both,identical +188360,39.75,40.75,TUR,3177.0,Trabzon,278.0,Türkiye,132658.0,Macka,39.75,40.75,TUR,3177.0,Trabzon,278.0,Türkiye,132658.0,Macka,both,identical +188361,40.25,40.75,TUR,3177.0,Trabzon,278.0,Türkiye,132653.0,Caykara,40.25,40.75,TUR,3177.0,Trabzon,278.0,Türkiye,132653.0,Caykara,both,identical +188362,40.75,40.75,TUR,3167.0,Rize,278.0,Türkiye,132534.0,Ikizdere,40.75,40.75,TUR,3167.0,Rize,278.0,Türkiye,132534.0,Ikizdere,both,identical +188363,41.25,40.75,TUR,3133.0,Erzurum,278.0,Türkiye,131871.0,Yusufeli,41.25,40.75,TUR,3112.0,Artvin,278.0,Türkiye,131871.0,Yusufeli,both,admin_reallocation +188364,41.75,40.75,TUR,3112.0,Artvin,278.0,Türkiye,131871.0,Yusufeli,41.75,40.75,TUR,3112.0,Artvin,278.0,Türkiye,131871.0,Yusufeli,both,identical +188365,42.25,40.75,TUR,3133.0,Erzurum,278.0,Türkiye,132108.0,Senkaya,42.25,40.75,TUR,3133.0,Erzurum,278.0,Türkiye,132108.0,Senkaya,both,identical +188366,42.75,40.75,TUR,3111.0,Ardahan,278.0,Türkiye,131860.0,Gole,42.75,40.75,TUR,3111.0,Ardahan,278.0,Türkiye,131860.0,Gole,both,identical +188367,43.25,40.75,TUR,3147.0,Kars,278.0,Türkiye,132291.0,Kars,43.25,40.75,TUR,3147.0,Kars,278.0,Türkiye,132291.0,Kars,both,identical +188368,43.75,40.75,ARM,2439.0,Shirak,225.0,Armenia,124119.0,Akhuryan,43.75,40.75,ARM,2439.0,Shirak,225.0,Armenia,124119.0,Akhuryan,both,identical +189053,26.25,41.25,GRC,3477.0,Makedonias Thrakis,305.0,Greece,135892.0,Anatolikis Makedonias Kai Thrakis,26.25,41.25,GRC,3477.0,Makedonias Thrakis,305.0,Greece,135892.0,Anatolikis Makedonias Kai Thrakis,both,identical +189054,26.75,41.25,TUR,3130.0,Edirne,278.0,Türkiye,132072.0,Uzunkopru,26.75,41.25,TUR,3130.0,Edirne,278.0,Türkiye,132072.0,Uzunkopru,both,identical +189055,27.25,41.25,TUR,3175.0,Tekirdag,278.0,Türkiye,132628.0,Hayrabolu,27.25,41.25,TUR,3175.0,Tekirdag,278.0,Türkiye,132628.0,Hayrabolu,both,identical +189056,27.75,41.25,TUR,3175.0,Tekirdag,278.0,Türkiye,132626.0,Corlu,27.75,41.25,TUR,3175.0,Tekirdag,278.0,Türkiye,132626.0,Corlu,both,identical +189057,28.25,41.25,TUR,3142.0,Istanbul,278.0,Türkiye,132209.0,Catalca,28.25,41.25,TUR,3142.0,Istanbul,278.0,Türkiye,132209.0,Catalca,both,identical +189058,28.75,41.25,TUR,3142.0,Istanbul,278.0,Türkiye,132196.0,Arnavutkoy,28.75,41.25,TUR,3142.0,Istanbul,278.0,Türkiye,132196.0,Arnavutkoy,both,identical +189059,29.25,41.25,TUR,3142.0,Istanbul,278.0,Türkiye,132205.0,Beykoz,29.25,41.25,TUR,3142.0,Istanbul,278.0,Türkiye,132205.0,Beykoz,both,identical +189060,29.75,41.25,TUR,3142.0,Istanbul,278.0,Türkiye,132225.0,Sile,29.75,41.25,TUR,3142.0,Istanbul,278.0,Türkiye,132225.0,Sile,both,identical +189061,30.25,41.25,TUR,3154.0,Kocaeli,278.0,Türkiye,132367.0,Kandira,30.25,41.25,TUR,3154.0,Kocaeli,278.0,Türkiye,132367.0,Kandira,both,identical +189062,30.75,41.25,TUR,3168.0,Sakarya,278.0,Türkiye,132547.0,Karasu,30.75,41.25,TUR,3168.0,Sakarya,278.0,Türkiye,132547.0,Karasu,both,identical +189063,31.25,41.25,TUR,3129.0,Duzce,278.0,Türkiye,132056.0,Akcakoca,31.25,41.25,TUR,3129.0,Duzce,278.0,Türkiye,132056.0,Akcakoca,both,identical +189064,31.75,41.25,TUR,3183.0,Zonguldak,278.0,Türkiye,132716.0,Eregli,31.75,41.25,TUR,3183.0,Zonguldak,278.0,Türkiye,132716.0,Eregli,both,identical +189065,32.25,41.25,TUR,3145.0,Karabuk,278.0,Türkiye,132280.0,Yenice,32.25,41.25,TUR,3145.0,Karabuk,278.0,Türkiye,132280.0,Yenice,both,identical +189066,32.75,41.25,TUR,3145.0,Karabuk,278.0,Türkiye,132279.0,Safranbolu,32.75,41.25,TUR,3145.0,Karabuk,278.0,Türkiye,132279.0,Safranbolu,both,identical +189067,33.25,41.25,TUR,3148.0,Kastamonu,278.0,Türkiye,132297.0,Arac,33.25,41.25,TUR,3148.0,Kastamonu,278.0,Türkiye,132297.0,Arac,both,identical +189068,33.75,41.25,TUR,3148.0,Kastamonu,278.0,Türkiye,132308.0,Kastamonu,33.75,41.25,TUR,3148.0,Kastamonu,278.0,Türkiye,132308.0,Kastamonu,both,identical +189069,34.25,41.25,TUR,3148.0,Kastamonu,278.0,Türkiye,132313.0,Taskopru,34.25,41.25,TUR,3148.0,Kastamonu,278.0,Türkiye,132313.0,Taskopru,both,identical +189070,34.75,41.25,TUR,3126.0,Corum,278.0,Türkiye,132593.0,Boyabat,34.75,41.25,TUR,3172.0,Sinop,278.0,Türkiye,132593.0,Boyabat,both,admin_reallocation +189071,35.25,41.25,TUR,3169.0,Samsun,278.0,Türkiye,132570.0,Vezirkopru,35.25,41.25,TUR,3169.0,Samsun,278.0,Türkiye,132570.0,Vezirkopru,both,identical +189072,35.75,41.25,TUR,3169.0,Samsun,278.0,Türkiye,132560.0,Bafra,35.75,41.25,TUR,3169.0,Samsun,278.0,Türkiye,132560.0,Bafra,both,identical +189073,36.25,41.25,TUR,3169.0,Samsun,278.0,Türkiye,132565.0,Kavak,36.25,41.25,TUR,3169.0,Samsun,278.0,Türkiye,132565.0,Kavak,both,identical +189074,36.75,41.25,TUR,3169.0,Samsun,278.0,Türkiye,132562.0,Carsamba,36.75,41.25,TUR,3169.0,Samsun,278.0,Türkiye,132562.0,Carsamba,both,identical +189075,37.25,41.25,TUR,3165.0,Ordu,278.0,Türkiye,132519.0,Unye,37.25,41.25,TUR,3165.0,Ordu,278.0,Türkiye,132519.0,Unye,both,identical +189076,37.75,41.25,TUR,3165.0,Ordu,278.0,Türkiye,132517.0,Persembe,37.75,41.25,TUR,3165.0,Ordu,278.0,Türkiye,132517.0,Persembe,both,identical +189078,38.75,41.25,TUR,3136.0,Giresun,278.0,Türkiye,132145.0,Gorele,38.75,41.25,TUR,3136.0,Giresun,278.0,Türkiye,132145.0,Gorele,both,identical +189079,39.25,41.25,TUR,3177.0,Trabzon,278.0,Türkiye,132664.0,Vakfikebir,39.25,41.25,TUR,3177.0,Trabzon,278.0,Türkiye,132664.0,Vakfikebir,both,identical +189080,39.75,41.25,TUR,3177.0,Trabzon,278.0,Türkiye,132648.0,Akcaabat,39.75,41.25,TUR,3177.0,Trabzon,278.0,Türkiye,132648.0,Akcaabat,both,identical +189081,40.25,41.25,TUR,3167.0,Rize,278.0,Türkiye,132530.0,Derepazari,40.25,41.25,TUR,3167.0,Rize,278.0,Türkiye,132530.0,Derepazari,both,identical +189082,40.75,41.25,TUR,3167.0,Rize,278.0,Türkiye,132529.0,Cayeli,40.75,41.25,TUR,3167.0,Rize,278.0,Türkiye,132529.0,Cayeli,both,identical +189083,41.25,41.25,TUR,3167.0,Rize,278.0,Türkiye,131864.0,Arhavi,41.25,41.25,TUR,3112.0,Artvin,278.0,Türkiye,131864.0,Arhavi,both,admin_reallocation +189084,41.75,41.25,TUR,3112.0,Artvin,278.0,Türkiye,131865.0,Artvin,41.75,41.25,TUR,3112.0,Artvin,278.0,Türkiye,131865.0,Artvin,both,identical +189085,42.25,41.25,TUR,3112.0,Artvin,278.0,Türkiye,131870.0,Savsat,42.25,41.25,TUR,3112.0,Artvin,278.0,Türkiye,131870.0,Savsat,both,identical +189086,42.75,41.25,TUR,3111.0,Ardahan,278.0,Türkiye,131857.0,Ardahan,42.75,41.25,TUR,3111.0,Ardahan,278.0,Türkiye,131857.0,Ardahan,both,identical +189087,43.25,41.25,GEO,3453.0,Samtskhe-Javakheti,302.0,Georgia,135473.0,Akhalkalaki,43.25,41.25,TUR,3111.0,Ardahan,278.0,Türkiye,131858.0,Cildir,both,country_reassignment +189088,43.75,41.25,GEO,3453.0,Samtskhe-Javakheti,302.0,Georgia,135477.0,Ninotsminda,43.75,41.25,GEO,3453.0,Samtskhe-Javakheti,302.0,Georgia,135477.0,Ninotsminda,both,identical +189773,26.25,41.75,BGR,3336.0,Haskovo,290.0,Bulgaria,134259.0,Svilengrad,26.25,41.75,GRC,3477.0,Makedonias Thrakis,305.0,Greece,135892.0,Anatolikis Makedonias Kai Thrakis,both,country_reassignment +189774,26.75,41.75,TUR,3130.0,Edirne,278.0,Türkiye,132064.0,Edirne,26.75,41.75,TUR,3130.0,Edirne,278.0,Türkiye,132064.0,Edirne,both,identical +189775,27.25,41.75,TUR,3152.0,Kirklareli,278.0,Türkiye,132346.0,Kirklareli,27.25,41.75,TUR,3152.0,Kirklareli,278.0,Türkiye,132346.0,Kirklareli,both,identical +189776,27.75,41.75,TUR,3152.0,Kirklareli,278.0,Türkiye,132345.0,Demirkoy,27.75,41.75,TUR,3152.0,Kirklareli,278.0,Türkiye,132345.0,Demirkoy,both,identical +189777,28.25,41.75,TUR,3152.0,Kirklareli,278.0,Türkiye,132351.0,Vize,28.25,41.75,TUR,3152.0,Kirklareli,278.0,Türkiye,132351.0,Vize,both,identical +189784,31.75,41.75,TUR,3183.0,Zonguldak,278.0,Türkiye,132718.0,Kilimli,31.75,41.75,TUR,3183.0,Zonguldak,278.0,Türkiye,132718.0,Kilimli,both,identical +189785,32.25,41.75,TUR,3115.0,Bartin,278.0,Türkiye,131910.0,Bartin,32.25,41.75,TUR,3115.0,Bartin,278.0,Türkiye,131910.0,Bartin,both,identical +189786,32.75,41.75,TUR,3115.0,Bartin,278.0,Türkiye,131912.0,Ulus,32.75,41.75,TUR,3115.0,Bartin,278.0,Türkiye,131912.0,Ulus,both,identical +189787,33.25,41.75,TUR,3148.0,Kastamonu,278.0,Türkiye,132298.0,Azdavay,33.25,41.75,TUR,3148.0,Kastamonu,278.0,Türkiye,132298.0,Azdavay,both,identical +189788,33.75,41.75,TUR,3148.0,Kastamonu,278.0,Türkiye,132303.0,Devrekani,33.75,41.75,TUR,3148.0,Kastamonu,278.0,Türkiye,132303.0,Devrekani,both,identical +189789,34.25,41.75,TUR,3148.0,Kastamonu,278.0,Türkiye,132313.0,Taskopru,34.25,41.75,TUR,3148.0,Kastamonu,278.0,Türkiye,132313.0,Taskopru,both,identical +189790,34.75,41.75,TUR,3172.0,Sinop,278.0,Türkiye,132593.0,Boyabat,34.75,41.75,TUR,3172.0,Sinop,278.0,Türkiye,132593.0,Boyabat,both,identical +189791,35.25,41.75,TUR,3172.0,Sinop,278.0,Türkiye,132597.0,Gerze,35.25,41.75,TUR,3172.0,Sinop,278.0,Türkiye,132597.0,Gerze,both,identical +189792,35.75,41.75,TUR,3169.0,Samsun,278.0,Türkiye,132560.0,Bafra,35.75,41.75,TUR,3169.0,Samsun,278.0,Türkiye,132560.0,Bafra,both,identical +189793,36.25,41.75,TUR,3169.0,Samsun,278.0,Türkiye,132560.0,Bafra,36.25,41.75,TUR,3169.0,Samsun,278.0,Türkiye,132560.0,Bafra,both,identical +189804,41.75,41.75,GEO,3445.0,Adjara (Adjaria) Autonomous Republic,302.0,Georgia,135422.0,Kobuleti,41.75,41.75,GEO,3445.0,Adjara (Adjaria) Autonomous Republic,302.0,Georgia,135422.0,Kobuleti,both,identical +189805,42.25,41.75,GEO,3445.0,Adjara (Adjaria) Autonomous Republic,302.0,Georgia,135421.0,Khulo,42.25,41.75,GEO,3445.0,Adjara (Adjaria) Autonomous Republic,302.0,Georgia,135421.0,Khulo,both,identical +189806,42.75,41.75,GEO,3453.0,Samtskhe-Javakheti,302.0,Georgia,135472.0,Adigeni,42.75,41.75,GEO,3453.0,Samtskhe-Javakheti,302.0,Georgia,135472.0,Adigeni,both,identical +190494,26.75,42.25,BGR,3359.0,Yambol,290.0,Bulgaria,134471.0,Boliarovo,26.75,42.25,BGR,3359.0,Yambol,290.0,Bulgaria,134471.0,Boliarovo,both,identical +190495,27.25,42.25,BGR,3333.0,Burgas,290.0,Bulgaria,134235.0,Sredets,27.25,42.25,BGR,3333.0,Burgas,290.0,Bulgaria,134235.0,Sredets,both,identical +190496,27.75,42.25,BGR,3333.0,Burgas,290.0,Bulgaria,134237.0,Tsarevo,27.75,42.25,BGR,3333.0,Burgas,290.0,Bulgaria,134237.0,Tsarevo,both,identical +190507,33.25,42.25,TUR,3148.0,Kastamonu,278.0,Türkiye,132301.0,Cide,33.25,42.25,TUR,3148.0,Kastamonu,278.0,Türkiye,132301.0,Cide,both,identical +190508,33.75,42.25,TUR,3148.0,Kastamonu,278.0,Türkiye,132304.0,Doganyurt,33.75,42.25,TUR,3148.0,Kastamonu,278.0,Türkiye,132304.0,Doganyurt,both,identical +190510,34.75,42.25,TUR,3172.0,Sinop,278.0,Türkiye,132599.0,Sinop,34.75,42.25,TUR,3172.0,Sinop,278.0,Türkiye,132599.0,Sinop,both,identical +190511,35.25,42.25,TUR,3172.0,Sinop,278.0,Türkiye,132599.0,Sinop,35.25,42.25,TUR,3172.0,Sinop,278.0,Türkiye,132599.0,Sinop,both,identical diff --git a/reports/enrichment_diff/maps/01_agree_disagree.png b/reports/enrichment_diff/maps/01_agree_disagree.png new file mode 100644 index 0000000..91fa53a Binary files /dev/null and b/reports/enrichment_diff/maps/01_agree_disagree.png differ diff --git a/reports/enrichment_diff/maps/02_by_class.png b/reports/enrichment_diff/maps/02_by_class.png new file mode 100644 index 0000000..6ac1be0 Binary files /dev/null and b/reports/enrichment_diff/maps/02_by_class.png differ diff --git a/reports/enrichment_diff/maps/03_country_before_after.png b/reports/enrichment_diff/maps/03_country_before_after.png new file mode 100644 index 0000000..45fc873 Binary files /dev/null and b/reports/enrichment_diff/maps/03_country_before_after.png differ diff --git a/reports/enrichment_diff/maps/04_zoom_lesotho_sa.png b/reports/enrichment_diff/maps/04_zoom_lesotho_sa.png new file mode 100644 index 0000000..0fc2fcb Binary files /dev/null and b/reports/enrichment_diff/maps/04_zoom_lesotho_sa.png differ diff --git a/reports/enrichment_diff/maps/05_zoom_namibia_botswana.png b/reports/enrichment_diff/maps/05_zoom_namibia_botswana.png new file mode 100644 index 0000000..a624d55 Binary files /dev/null and b/reports/enrichment_diff/maps/05_zoom_namibia_botswana.png differ diff --git a/reports/enrichment_diff/report.md b/reports/enrichment_diff/report.md new file mode 100644 index 0000000..fa4e329 --- /dev/null +++ b/reports/enrichment_diff/report.md @@ -0,0 +1,78 @@ +# Enrichment engine swap — what exactly changes (africa_me) + +**Date:** 2026-06-18 +**Comparison:** current runtime mapper (`mapping.py`, Natural Earth + GAUL shapefiles, sequential allocation) **vs** new lookup enricher (ADR-011, built from the views-datafactory v1.3.0 area-majority GAUL parquets). +**Scope:** all 13,110 `africa_me_legacy` PRIO-GRID cells, all 9 geographic metadata columns, run on the exact production shapefiles (git-lfs). +**Reproduce:** `PYTHONPATH=. python scripts/diff_enrichment.py` → `diff_cells.csv` + `summary.json`; `python scripts/plot_enrichment_diff.py` → `maps/`. + +## Headline + +| | cells | share | +|---|---:|---:| +| **Identical** (all 9 columns match) | 12,597 | **96.1%** | +| Changed | 512 | 3.9% | +| **Unexplained** | **0** | **0%** | + +Every single differing cell falls into a known, expected class. There are no surprises and no regressions — the differences are the FAO-contracted area-majority rule arriving end-to-end. + +## What changed, by class + +| Class | Cells | What it means | Expected? | +|---|---:|---|---| +| `country_reassignment` | 259 | Cell assigned to a different **country**. The old mapper picks the country by Natural Earth area-majority, then fits GAUL admin *inside* that country (sequential). The new lookup takes country + admin together from the single GAUL polygon with the largest area in the cell. They disagree on border cells. | Yes — border cells of neighbouring/enclave countries | +| `admin_reallocation` | 247 | Same country, different **province/district** (admin1/admin2). Same root cause, one level down. | Yes — cells on internal admin borders | +| `dropped_by_land_gaul` | 4 | The old mapper assigned these (via Natural Earth's detailed coastline), but they have no GAUL land coverage, so the new `land_gaul` region excludes them. gids 62356 (Prince Edward Is.), 94776, 107733, 107742 (off Madagascar). | Yes — open-ocean cells FAO should not have been getting | +| `coastal_recovery` | 2 | The old mapper left these unmapped; the new lookup assigns them. gids 104839, 170255. | Yes — coastal cells the area-majority rule recovers | +| `both_unmapped` | 1 | Neither engine maps it (pure ocean). | Yes | +| `country_code_system` | 0 | Would be: same country, different ISO string (NE vs GAUL). **None occurred** — both use standard ISO-3166 alpha-3, so for the same country they agree. No naming-convention noise. | — | + +`country_reassignment` + `admin_reallocation` = **506 genuine geographic differences** (3.9% of cells), all on borders. Plus 4 ocean cells dropped and 2 coastal cells recovered. + +## Why these are correct, not bugs + +The new engine implements area-majority from a single consistent boundary source (GAUL), which is FAO's contracted aggregation rule (Release Note 02). The old engine mixed two boundary datasets (Natural Earth for country, GAUL for admin) and constrained admin to the NE-chosen country. Where they differ, the **new** answer is the contractually-correct one. The verification maps show the differences land precisely on country and admin borders — e.g. the Lesotho and Eswatini enclave borders (`maps/04_zoom_lesotho_sa.png`), exactly where a tiny enclave's cells are split between two algorithms. + +## Disputed territories — two worked examples + +A large share of the `country_reassignment` cells sit on disputed borders, where Natural Earth (old) and GAUL (new) encode the politics differently. Both examples below are confirmed at the shapefile level. + +### Morocco / Western Sahara — a boundary-placement difference (not a code difference) + +Both sources have Western Sahara as a separate territory with the **same** ISO code (`ESH`). They differ on **where the Morocco–Western Sahara line falls**, in the 228-cell disputed zone: + +| Assignment | Natural Earth (old) | GAUL (new) | +|---|---:|---:| +| Morocco (`MAR`) | 78 | 9 | +| Western Sahara (`ESH`) | 31 | 100 | +| Mauritania (`MRT`) | 117 | 117 (identical) | + +Natural Earth folds the northern ~2/3 of the disputed territory into Morocco (de-facto control); GAUL keeps it as Western Sahara. Net: **69 cells flip Morocco → Western Sahara**. Both codes are valid ISO-3166; the Mauritanian south is untouched. + +### Somalia / Somaliland — a data-quality fix, not just a relabel + +- **Natural Earth** carries Somaliland as a separate entity but gives it `ISO_A3 = "-99"` — the sentinel for "no recognized ISO code". +- **GAUL has no Somaliland** — those cells are part of Somalia (`SOM`). + +The old mapper therefore ships **64 africa_me cells to FAO with `country_iso_a3 = "-99"`**, an invalid country code. It passes the current validation because the gate only rejects nulls, and `"-99"` is a non-null string. The new lookup assigns all 64 to `SOM`, and there are **zero `-99` codes anywhere in the global lookup** (all 64,742 cells checked). + +So the swap does not merely relabel these cells — **it removes invalid country codes that are in the FAO delivery today.** Tracked as register **C-35** (Tier 1). Other Natural Earth `-99` territories outside africa_me (e.g. N. Cyprus, Kosovo) are covered by the same fix at global scale. + +### Framing + +Both cases align the delivered data with **GAUL's** choices: Western Sahara stays separate; Somaliland folds into Somalia. Since GAUL is FAO's own boundary product, this is the contractually-correct outcome — the delivered data now matches the admin boundaries FAO itself publishes. Both are politically sensitive and should be called out explicitly in the Stage 4 FAO release note. + +## Maps (`reports/enrichment_diff/maps/`) + +| File | Shows | +|---|---| +| `01_agree_disagree.png` | All africa_me cells: identical (grey) vs changed (red) | +| `02_by_class.png` | Each cell coloured by difference class | +| `03_country_before_after.png` | Country assignment side-by-side: old (NE) vs new (GAUL) | +| `04_zoom_lesotho_sa.png` | Zoom: Lesotho / Eswatini / South Africa border reassignments | +| `05_zoom_namibia_botswana.png` | Zoom: Namibia / Botswana / South Africa / Mozambique borders | + +## Bottom line + +Swapping the enrichment engine changes the geography of **512 of 13,110 africa_me cells (3.9%)**, every one of them on a border or coastline, every one explained, with the new values being the area-majority answers FAO's contract specifies. Nothing is unexplained; nothing regresses. The remaining columns (coordinates, and 96.1% of all cells) are bit-for-bit identical. + +For the global delivery, the same classes will appear at larger absolute counts (more borders), plus the 6 Azores supplement cells which are outside africa_me. This africa_me run is the exact, auditable baseline. diff --git a/reports/enrichment_diff/summary.json b/reports/enrichment_diff/summary.json new file mode 100644 index 0000000..df71fcc --- /dev/null +++ b/reports/enrichment_diff/summary.json @@ -0,0 +1,13 @@ +{ + "n_cells": 13110, + "counts": { + "identical": 12597, + "country_reassignment": 259, + "admin_reallocation": 247, + "dropped_by_land_gaul": 4, + "coastal_recovery": 2, + "both_unmapped": 1 + }, + "n_changed_excluding_identical_and_unmapped": 512, + "unexplained": 0 +} \ No newline at end of file diff --git a/reports/technical_risk_register.md b/reports/technical_risk_register.md index 834f977..1e3b030 100644 --- a/reports/technical_risk_register.md +++ b/reports/technical_risk_register.md @@ -4,9 +4,9 @@ |-------------------|--------------------------------------| | Project | views-postprocessing | | Owner | Dylan Pinheiro / PRIO MD&D Team | -| Last Updated | 2026-06-02 | -| Total Concerns | 24 | -| Open Concerns | 22 | +| Last Updated | 2026-06-12 | +| Total Concerns | 35 | +| Open Concerns | 33 | | Resolved Concerns | 2 | --- @@ -64,9 +64,9 @@ ### Cluster E: Replace runtime mapper with precomputed lookup table **Root cause:** The area-majority algorithm is a confirmed FAO requirement (D-05 resolved), but it doesn't need 3,100 lines of geopandas runtime code — a one-time precomputation produces a ~65K-row Parquet lookup table that replaces the entire mapper with a dictionary join. -**Entries:** C-23, D-05 (resolved), and transitively: Clusters A (cache), C (import side effect), plus C-07, C-08, C-11 +**Entries:** C-23, D-05 (resolved), D-08, C-30, C-31, C-32, and transitively: Clusters A (cache), C (import side effect), plus C-07, C-08, C-11 **Highest tier:** 2 (C-23) -**Fix strategy:** (1) One-time precomputation job: run the current mapper against all ~65K PRIO-GRID cells, store the result as a Parquet file. (2) Replace `mapping.py` with a simple Parquet-join enricher. (3) Remove 774 MB shapefile bundle, geopandas dependency, and all cache machinery. +**Fix strategy (revised 2026-06-12):** (1) Build the lookup by joining views-datafactory's 7 area-majority GAUL parquets (regenerated June 11, 259,200 rows each) plus the GID→lat/lon formula — the original "run the current mapper with LFS" precomputation is obsolete. (2) Replace `mapping.py` with a simple Parquet-join enricher. (3) Remove 774 MB shapefile bundle, geopandas dependency, and all cache machinery. See `docs/cross_repo_integration_report.md` and ADR-011 assessment §10. **Resolution scope:** Full — resolves Clusters A and C entirely. Eliminates C-07, C-08, C-11. Reduces Cluster B to manager-side concerns only (C-19 unfao.py raises, C-21 batch tracking, C-22 correction process). --- @@ -177,6 +177,8 @@ See also C-05 (an example of this risk materializing). All overlap ratio calculations use `.area` on EPSG:4326 geometries, which produces values in square degrees. At the equator, 1° longitude ≈ 1° latitude in distance. At 60°N, 1° longitude ≈ 0.5° latitude in distance, distorting area by up to 2x. For border cells at high latitudes, this distortion could theoretically cause incorrect assignment to the wrong country/admin region. In practice, most VIEWS conflict prediction zones are equatorial/mid-latitude, limiting the impact. No projection to equal-area CRS is performed before area calculations. +**Update 2026-06-12 (expert-code-review):** The "equatorial/mid-latitude, limiting the impact" rationale dies with the planned global coverage — Russia, Scandinavia, and Canada (55°N+) enter scope when the region switches to `"land"`. Mitigating consideration: within a single 0.5° cell, all candidate polygon intersections sit at the same latitude band, so the cos(lat) distortion multiplies all candidates roughly equally and largely cancels in the *ranking* — this applies to both this repo's mapper and the datafactory's area-majority script. Required action before global delivery: one falsification probe on ~20 border cells above 55°N comparing degree-based assignment against an equal-area-projected computation. See C-31 (mapper unverified at global scale). + --- ### C-09: Publish workflow validates version against wrong PyPI package @@ -413,6 +415,8 @@ Part of Cluster B (operational impact dimension). See also C-14, C-15. The VIEWS platform has two independent PRIO-GRID-to-GAUL mapping implementations using different algorithms. For the ~95% of cells entirely within one region, both agree. For border cells, they disagree — and nothing reconciles them. It is unclear whether area-based is a deliberate FAO requirement or historical accident. +**Update 2026-06-12 — divergence resolved upstream.** views-datafactory shipped area-majority GAUL assignment (issue #115 → PR #127, v1.2.28/29); all 7 GAUL parquets regenerated June 11 as area-majority. Both implementations now use the same algorithm family. Residual difference: this repo's mapper sources `country_iso_a3` from Natural Earth while the factory uses GAUL boundaries — disputed-border cells can still differ on ISO code. This residual disappears when ADR-011's lookup (built from factory parquets) replaces the mapper. See `docs/cross_repo_integration_report.md`. + Part of Cluster E. See also D-05 (the gating decision), C-11 (god class — moot if mapper eliminated). --- @@ -437,6 +441,182 @@ See also C-17 (implicit column naming between mapper and manager), D-06 (resolve --- +### C-25: Forecast input selected by category-only filter — newest file wins regardless of producer + +| Field | Value | +|-------|-------| +| ID | C-25 | +| Tier | 2 | +| Source | `cross-repo-investigation` (2026-06-12) | +| Trigger | When any new producer uploads to the prod_forecasts bucket with `category: "forecast"`, verify the postprocessor still picks up the intended ensemble's file — selection is newest-`$createdAt`-wins with no loa, model-name, or run-id filter | +| Location | `views_postprocessing/unfao/managers/unfao.py:126`; views-pipeline-core `modules/datastore/datastore.py:475-511` | + +`_read_forecast_data()` calls `download_latest_file(filters={"category": "forecast"})`. "Latest" is resolved by sorting metadata documents on `$createdAt` descending and taking the first (datastore.py:475-511). There is no filter on `loa`, `name`, `targets`, or any run identifier. Today only the production ensemble uploads with this category, so the newest file is the right file by circumstance, not by contract. If a second model, a test run, or a backfill ever uploads to the same bucket with `category: "forecast"`, the postprocessor silently enriches and ships the wrong predictions to FAO. The same single-filter pattern exists downstream: views-faoapi selects from the unfao_bucket by category only (views-faoapi `api.py:488`), so a stray upload there reaches FAO directly. Compounding factor: Appwrite has no retention — every historical upload remains a candidate forever; correctness depends entirely on upload discipline. + +This concern became visible during the cross-repo investigation (`docs/cross_repo_integration_report.md` §2.4, §4.2); it was previously implicit in the C-13 narrative (timeouts) but is a distinct failure mode: C-13 is "the call hangs," C-25 is "the call succeeds with the wrong file." + +See also C-13 (no timeout on the same calls), C-15 (upload metadata lacks provenance to detect this downstream). + +--- + +### C-26: Unconditional fillna(0.0) fabricates "no conflict" from missing upstream data + +| Field | Value | +|-------|-------| +| ID | C-26 | +| Tier | 1 — silent data fabrication with no error signal: absence of evidence becomes evidence of absence in FAO-delivered values | +| Source | `expert-code-review` (2026-06-12) | +| Trigger | When the datafactory zarr has missing months or cells inside the requested range (failed harvest, partial assembly), verify the postprocessor fails rather than zero-fills — currently every NaN becomes 0.0 with no count logged | +| Location | views-pipeline-core `modules/dataloaders/dataloaders.py:1208`; consumed at `views_postprocessing/unfao/managers/unfao.py:48-56` | + +`_fetch_data_from_datafactory()` applies `df.fillna(0.0)` unconditionally to all features. For `lr_ged_sb/ns/os`, a datafactory assembly gap (unharvested month, failed source) flows to FAO as "zero fatalities" rather than failing. The postprocessor's `_validate()` checks only the 9 metadata columns for nulls (`unfao.py:188-221`), never the feature columns — so the fabricated zeros pass every gate. There is no fill-count logging, so the corruption is unquantified and undetectable after the fact. The zarr exposes `last_valid_month_id` in its attributes, which would permit bounded filling (fill only outside the declared valid range, fail on fills inside it), but it is not consulted. + +Location is in views-pipeline-core, but the impact lands on this repo's FAO delivery; registered here because the consuming call and the delivery responsibility are here. + +See also C-25 (same data path, wrong-file variant), C-15 (upload provenance would aid post-hoc detection). + +--- + +### C-27: Loader construction failures swallowed — surface as remote AttributeError + +| Field | Value | +|-------|-------| +| ID | C-27 | +| Tier | 2 — structural fragility: any dependency or config breakage is converted into a misleading crash far from its cause | +| Source | `expert-code-review` (2026-06-12) | +| Trigger | When a dependency bump, import error, or config change breaks `ViewsDataLoader` construction, verify the real exception is visible — currently it is caught bare, logged as "No Queryset detected" with `exc_info=False`, and replaced with `self._data_loader = None` | +| Location | views-pipeline-core `managers/model/model.py:883-902`; crash site `views_postprocessing/unfao/managers/unfao.py:48` | + +`_initialize_data_loader()` catches bare `Exception`, discards the traceback, and nulls the loader. The failure then surfaces as `AttributeError: 'NoneType' object has no attribute 'get_data'` in `_read_historical_data` — the operator debugs the postprocessor while the cause (import error, malformed config, path issue) was erased at construction time. Cost is time-to-diagnosis during exactly the runs where time matters. + +--- + +### C-28: No timeout on the datafactory zarr fetch — historical path can hang indefinitely + +| Field | Value | +|-------|-------| +| ID | C-28 | +| Tier | 2 — same hazard class as C-13, on the other input path; a stalled chunk read blocks delivery with no deadline or alert | +| Source | `expert-code-review` (2026-06-12) | +| Trigger | When the datafactory HTTP server accepts connections but stalls mid-chunk (network degradation to the zarr host), verify the pipeline run terminates — no deadline exists anywhere on the fetch path | +| Location | views-pipeline-core `modules/dataloaders/dataloaders.py:1180-1188`; views-datafactory `src/datafactory_query/dataset.py:106-217` | + +`load_dataset()` opens a remote zarr over plain HTTP. xarray chunk reads have no timeout; a stall blocks the scheduled run forever, and the only detection is manually noticing a run never finished. Risk grows with the planned global region (~5× data volume → longer fetch window). Partial overlap with C-13 (no timeout on Appwrite operations) — same problem type, different dependency and repo; registered separately because the fix sites are disjoint. + +See also C-13. + +--- + +### C-29: Manager reads fetch result via disk side-channel instead of return value + +| Field | Value | +|-------|-------| +| ID | C-29 | +| Tier | 2 — under a realistic pipeline-core caching refactor, the postprocessor silently reads a stale previous parquet and enriches outdated data | +| Source | `expert-code-review` (2026-06-12) | +| Trigger | When views-pipeline-core changes caching behavior (format, filename template, skip-write optimization), verify `_read_historical_data` still reads what `get_data()` just produced — the return value is discarded and the dataframe re-read from `cached_data_path` | +| Location | `views_postprocessing/unfao/managers/unfao.py:48-56`; views-pipeline-core `modules/dataloaders/dataloaders.py:1490-1494` | + +`get_data()` returns `(df, alerts)`; the manager discards it and re-reads from `self._data_loader.cached_data_path`, a property set as a side effect of the fetch. Two sources of truth for "the data just fetched," coupled by an undocumented convention. If pipeline-core ever skips the disk write for `use_saved=False` (a legitimate optimization from its perspective), the manager reads a stale previous file silently — or crashes if none exists. The convention has already drifted once: the loader docstring (dataloaders.py:1466-1471) still documents `{partition}_viewser_df` naming while the code now formats `{partition}_{source}_df` (line 1490). Fix is one line: consume the return value. Related to views-pipeline-core register entries C-59/C-60 (cache filename convention). + +--- + +### C-30: 82 GAUL-uncovered land cells crash or corrupt global delivery + +| Field | Value | +|-------|-------| +| ID | C-30 | +| Tier | 1 — with `-1`/`""` passed through, validation passes and FAO receives rows attributed to country "-1" (silent); with nulls, the delivery run crashes (loud, but on delivery day) | +| Source | `expert-code-review` (2026-06-12), verified by direct data inspection | +| Trigger | When the region switches from `africa_me_legacy` to `land` for global historical delivery, verify the 82 unassigned cells are explicitly excluded before `_validate()` — they have no GAUL assignment in any source | +| Location | `views_postprocessing/unfao/managers/unfao.py:188-221`; views-datafactory `data/raw/gaul_admin/gaul0_code.parquet` (value = -1) | + +Verified 2026-06-12: of the datafactory's 64,818 `land`-region cells, 64,736 have complete area-majority metadata; exactly 82 are unassigned across all 7 GAUL fields — all remote sub-Antarctic islands FAO's GAUL 2024 boundaries do not cover (Macquarie, Auckland Islands, Prince Edward; sample gids 51078, 51798, 53979, 62356, 94776, 99027). The mitigation must be a named exclusion-list constant with the 82 gids, count-asserted (`== 82`) in both the enricher and a test, logged at WARNING, and disclosed to FAO — not a generic `code != -1` filter, which would silently absorb future coverage regressions. Generalizes the previously documented "5 ocean cells" of africa_me_legacy (those 5 are among the 82). + +See also D-10 (handling decision), C-34 (coverage contract). + +--- + +### C-31: Runtime mapper unverified and unverifiable at global scale + +| Field | Value | +|-------|-------| +| ID | C-31 | +| Tier | 2 — choosing this path for global delivery converts unknown runtime, unknown memory, and unknown Natural-Earth coverage into delivery-day discoveries | +| Source | `expert-code-review` (2026-06-12) | +| Trigger | Before any global (`land` region) run that enriches via `mapping.py`, verify runtime, peak memory, and Natural-Earth assignment coverage for all 64,818 cells — none has ever been measured, and none can be measured in the development environment (shapefiles are LFS stubs) | +| Location | `views_postprocessing/unfao/mapping/mapping.py:2727` (per-gid boolean mask over all 259,200 grid rows — O(N) per lookup), `mapping.py:649-650,920,1192,1428` (degree-based area math, C-08, newly in scope above 55°N) | + +The mapper is production-proven at 13,110 cells and never executed at 64,818. Per-cell linear scans put plausible global runtime in the hours; any cell Natural Earth fails to assign produces a null that crashes `_validate()` **at the end of those hours**. The equivalent completeness number for the lookup path is known exactly (C-30: 64,736/82); for the mapper path it is unknowable before a production-machine run. This asymmetry — enumerable versus discoverable failures — is the core argument in D-08. + +See also C-08 (high-latitude math, escalated), C-11 (god class), D-08. + +--- + +### C-32: Unbudgeted memory at global enrichment volume + +| Field | Value | +|-------|-------| +| ID | C-32 | +| Tier | 2 — realistic MemoryError mid-`_transform` on the planned global run; fails after the fetch succeeded, late in the pipeline | +| Source | `expert-code-review` (2026-06-12) | +| Trigger | Before the first global historical run, verify peak memory of joining 9 metadata columns onto ~28M rows (64,818 cells × ~432 months) — four string columns as pandas object dtype cost roughly 8–20 GB at this scale | +| Location | `views_postprocessing/unfao/managers/unfao.py:154-163` (the metadata join); any replacement enricher | + +Object-dtype strings (`admin1_gaul0_name`, `admin1_gaul1_name`, `admin2_gaul2_name`, `country_iso_a3`) broadcast to 28M rows dominate memory. Mitigation is cheap and should be built into any new enricher from day one: pandas categorical dtype for the string columns (~10× reduction; the underlying uniques number in the low thousands). A full-volume dry run (fetch → enrich → validate → local parquet, no upload) before delivery day is the verification. + +--- + +### C-33: Store identity hardcoded throughout the manager — blocks the planned multi-store rollout + +| Field | Value | +|-------|-------| +| ID | C-33 | +| Tier | 2 — two to three additional Appwrite stores are planned imminently; the current design forces copy-pasting a 273-line manager per store | +| Source | `expert-code-review` (2026-06-12) | +| Trigger | When the second Appwrite prediction store is configured, verify store identity comes from configuration — currently env var names (`APPWRITE_UNFAO_*`, `APPWRITE_PROD_FORECASTS_*`) are inline in two hand-built `AppwriteConfig` blocks, the forecast targets list is hardcoded, and category strings are literals | +| Location | `views_postprocessing/unfao/managers/unfao.py:109-122, 234-247, 272`; dead alternative config blocks at `unfao.py:80-107` | + +Mitigation: a small `DeliveryProfile` (bucket/collection/database ids, category, targets) passed to the manager — one manager class, N store configs. Scheduled **after** the FAO global delivery ships (D-09); the only immediate action is deleting the commented-out config blocks at lines 80-107, which are a mis-uncomment hazard during deadline work. + +See also C-24 (schema contract per store), D-09. + +--- + +### C-34: Spatial coverage has no contract — no assertion of expected cell count anywhere + +| Field | Value | +|-------|-------| +| ID | C-34 | +| Tier | 2 — a wrong or upstream-changed region definition delivers partial coverage to FAO with no error signal | +| Source | `expert-code-review` (2026-06-12) | +| Trigger | When the region string in views-models `config_queryset.py` or the datafactory's bundled `land_pgids.json` / `africa_me_legacy_pgids.json` changes, verify this repo notices — today nothing asserts how many cells the pipeline expects to process | +| Location | views-models `postprocessors/un_fao/configs/config_queryset.py:20`; views-datafactory `src/datafactory_query/regions.py:126-152`; no counterpart check in `views_postprocessing/` | + +The coverage decision lives in one repo (views-models), the cell-set definition in a second (views-datafactory), and the consequences in a third (this repo). Mitigation: a coverage test asserting enrichment completeness for the configured region (for `land`: 64,736 complete + exactly the 82 known exclusions), plus cell-count logging in `_read` and `_validate`. + +See also C-30, C-26 (both are coverage-integrity failures with no signal). + +--- + +### C-35: Invalid `-99` country code shipped to FAO for Somaliland cells + +| Field | Value | +|-------|-------| +| ID | C-35 | +| Tier | 1 — silent invalid data delivered to the partner: a non-ISO sentinel string passes the null-only validation gate and reaches FAO as a country code | +| Source | `enrichment-diff` (2026-06-18) — empirically measured, old mapper vs new lookup on africa_me | +| Trigger | Whenever the current runtime mapper enriches cells in the Somaliland region (and any other Natural Earth `ISO_A3 = "-99"` territory), it emits `country_iso_a3 = "-99"`; `_validate()` checks only for nulls, so the invalid code ships | +| Location | `views_postprocessing/unfao/mapping/mapping.py` (country from Natural Earth `ISO_A3`); `unfao.py:188-221` (`_validate` — null-only, no code-validity check); Natural Earth `ne_10m_admin_0_countries` (`ADMIN="Somaliland", ISO_A3="-99"`) | + +The current mapper sources `country_iso_a3` from Natural Earth's `ISO_A3` field. Natural Earth represents Somaliland as a separate de-facto entity but assigns it the sentinel `ISO_A3 = "-99"` (no recognized ISO code). The diff measured **64 africa_me cells** delivered with `country_iso_a3 = "-99"`. Because `"-99"` is a non-null string, the `_validate()` gate (which only rejects nulls) passes it, and it reaches the FAO Appwrite bucket as the country code for those cells. FAO consumers filtering or aggregating by country code receive an invalid value. + +**Resolved by ADR-011's lookup.** The new GAUL-sourced lookup has zero `-99` codes anywhere (verified across all 64,742 global cells); Somaliland cells become `SOM` (Somalia), matching GAUL — FAO's own boundary product. So the engine swap (Stage 3) eliminates this defect as a side effect. Until the swap ships, the current production output carries it. Note: other Natural Earth `-99` territories (e.g. N. Cyprus, Kosovo) could surface the same way outside africa_me — the global swap covers them too. + +See also C-01 (null-validation re-enabled — but it does not check code *validity*), and the disputed-territories section of `reports/enrichment_diff/report.md`. + +--- + ## Disagreements ### D-01: Cache strategy refactoring — extract now vs. characterize first @@ -469,6 +649,55 @@ See also C-17 (implicit column naming between mapper and manager), D-06 (resolve | Source | `manual` (2026-06-02) — external assessment | | Perspectives | Path A: area-based is a FAO requirement → precompute lookup table. Path B: centroid-based acceptable → eliminate mapping.py entirely. Both eliminate 774 MB shapefiles, geopandas, and 3,100-line mapper. | | Resolution | **Resolved (2026-06-02): Path A confirmed.** FAO-FSFC provided written confirmation (Release Note 02, `summary.tex`) agreeing to area-majority allocation as the locked aggregation rule: "Each PRIO-GRID cell is assigned to a single country using an area-majority rule." The area-based algorithm is a contractual requirement, not a historical accident. Path B (centroid-based) is off the table. Next step: build a one-time precomputed area-based lookup table (~65K rows, Parquet) and replace the 3,100-line runtime mapper with a dictionary lookup. This still eliminates geopandas, the shapefile bundle, and the runtime spatial operations — but preserves the area-majority assignment rule. | +| Update 2026-06-12 | **Upstream resolution deployed.** views-datafactory shipped area-majority GAUL assignment (issue #115 → PR #127, ADR-039 there, v1.2.28/29). All 7 GAUL parquets (codes + names + iso3) regenerated June 11 as area-majority, 259,200 rows each, mutually consistent (13,105/13,110 africa_me cells fully attributed; 5 pure-ocean cells unassigned). The precomputed lookup table can now be built by joining the factory parquets — no LFS, no shapefiles, no this-repo mapper run needed. The platform-level mapping divergence (centroid in factory vs area-majority here) no longer exists. See `docs/cross_repo_integration_report.md` and ADR-011 assessment §10. | + +--- + +### D-07: Historical data route — keep pipeline-core dispatcher vs call datafactory directly + +| Field | Value | +|-------|-------| +| ID | D-07 | +| Source | `expert-code-review` (2026-06-12) | +| Perspectives | Ousterhout/Hickey: the postprocessor uses ~20% of `ViewsDataLoader`'s services (it passes `use_saved=False, validate=False, self_test=False`) while paying 100% of the seven-hop indirection — call `datafactory_query.load_dataset()` directly and own the three renames. Martin/GoF/Feathers: the dispatcher seam absorbed the viewser→datafactory migration with zero consumer changes and will absorb the next one; bypassing it re-couples the postprocessor to the current backend. | +| Location | `views_postprocessing/unfao/managers/unfao.py:44-59`; views-pipeline-core `modules/dataloaders/dataloaders.py:1088-1224` | +| Status | Open. Review recommendation: keep the pipeline-core route, but pass explicit `month_first/month_last` instead of partition semantics, consume `get_data()`'s return value (C-29), and re-enable validation once it supports datafactory sources. Decide alongside ADR-011 since both touch the same manager. | + +--- + +### D-08: Global delivery path — scale up the runtime mapper vs swap to the precomputed lookup first + +| Field | Value | +|-------|-------| +| ID | D-08 | +| Source | `expert-code-review` (2026-06-12) | +| Perspectives | Feathers' instinct: the mapper is production-proven and the region change is one config line — don't swap components days before a deadline. Kleppmann/Nygard/Ousterhout: the mapper is *unverifiable at global scale before running it* (C-31: unknown null count, runtime, memory; C-08 newly in scope), while the lookup's complete global failure set is exactly 82 named cells, verified locally (C-30). | +| Location | `views_postprocessing/unfao/managers/unfao.py:154-160`; `mapping.py`; views-datafactory `data/raw/gaul_admin/*.parquet` | +| Status | Open — user decision pending. Review adjudication: **swap to the lookup first, then go global.** The "don't swap before a deadline" rule assumes the old part is known-good for the new job; here it is known-good only for a job 5× smaller and cannot be tested for the new job until the moment it matters. Enumerable risk beats discoverable risk on a deadline. Prerequisite: shadow diff old-vs-new on africa_me (13,110 cells) on the production machine. | + +--- + +### D-09: Multi-store support — parameterize the manager now vs after the FAO global delivery + +| Field | Value | +|-------|-------| +| ID | D-09 | +| Source | `expert-code-review` (2026-06-12) | +| Perspectives | GoF: the manager is being touched anyway — extract the `DeliveryProfile` now while context is loaded. Beck/Hickey/Ousterhout: the smallest change that delivers wins; a profile refactor adds review surface to the highest-stakes week, and frameworks built under deadline pressure rot. | +| Location | `views_postprocessing/unfao/managers/unfao.py:109-122, 234-247, 272` | +| Status | Open. Review adjudication: **after delivery** — with two exceptions to do now: delete the dead config blocks (`unfao.py:80-107`, a mis-uncomment hazard) and ensure nothing added this week hardcodes additional store identity. The `DeliveryProfile` itself is a calm 1-day job the following week (C-33). | + +--- + +### D-10: The 82 GAUL-uncovered cells — exclude, crash, or negotiate with FAO + +| Field | Value | +|-------|-------| +| ID | D-10 | +| Source | `expert-code-review` (2026-06-12) | +| Perspectives | Fail-loud purism: let validation crash and force the conversation — never silently drop cells. Pragmatic exclusion: drop with a named, count-asserted, logged exclusion list. Diplomatic: ask FAO before shipping anything. | +| Location | `views_postprocessing/unfao/managers/unfao.py:188-221`; the 82 gids enumerated in C-30 | +| Status | **Resolved direction (2026-06-12): fix upstream in views-datafactory.** User decision, superseding the review's exclusion-list adjudication. A new bundled curated region (`land ∩ gaul0_code != -1`, 64,736 cells — e.g. `land_gaul`) is added to `datafactory_query` alongside `land` and `africa_me_legacy`, with generation script, provenance, and a count-pinning test. The postprocessor keeps zero spatial knowledge; its invariant simplifies to "every arriving cell must enrich completely — any null crashes" (the existing `_validate()` gate, unchanged). The `land` region itself is NOT redefined (other consumers depend on its physical-land semantics). Forecast-path residual: unmatched gids null→crash via left merge + validation; pin with one test. FAO disclosure of the 82 excluded sub-Antarctic cells still required in the release note. Closes the postprocessor side of C-30; C-34's coverage test becomes "100% completeness for the configured region." | --- diff --git a/scripts/build_gaul_lookup.py b/scripts/build_gaul_lookup.py new file mode 100644 index 0000000..0c1af03 --- /dev/null +++ b/scripts/build_gaul_lookup.py @@ -0,0 +1,192 @@ +"""Build the precomputed GAUL lookup table (ADR-011, Stage 1). + +Replaces the runtime spatial mapper's geographic enrichment with a precomputed +table. Joins the views-datafactory's 7 area-majority GAUL parquets by PRIO-GRID +cell id, renames to the postprocessor's 9-column contract, computes the cell +coordinates from the gid, keeps only fully-complete cells, and writes a single +Parquet keyed by priogrid_gid. + +The spatial computation already happened upstream (the datafactory's +area-majority join, ADR-039 there). This script does NO geometry — only a +table join and a coordinate formula. No geopandas. + +Source of truth: views-datafactory raw parquets (v1.3.0, area-majority). +Contract: the 9 columns hard-validated at views_postprocessing/unfao/managers/ +unfao.py:141-153 + 189-197 and views-faoapi handlers.py:1146-1156. + +Usage: + python scripts/build_gaul_lookup.py \ + [--datafactory /path/to/views-datafactory] \ + [--region land_gaul] \ + [--out views_postprocessing/data/gaul_lookup.parquet] +""" + +from __future__ import annotations + +import argparse +import json +import os +from pathlib import Path + +import pandas as pd +import pyarrow as pa +import pyarrow.parquet as pq + +from views_postprocessing.unfao.gaul_schema import ( + CODE_COLS, + COORD_COLS, + METADATA_COLS, + NAME_COLS, + SOURCE_RENAME, + xcoord, + ycoord, +) + + +def _resolve_datafactory() -> Path: + """Locate the views-datafactory checkout without a machine-specific path. + + Order: $VIEWS_DATAFACTORY, then the sibling repo next to this one + (views_platform/views-datafactory). Overridable with --datafactory. + """ + env = os.environ.get("VIEWS_DATAFACTORY") + if env: + return Path(env) + sibling = Path(__file__).resolve().parents[2] / "views-datafactory" + return sibling + + +def _load_source(datafactory: Path) -> pd.DataFrame: + """Join the 7 GAUL parquets on gid into one wide frame (source names).""" + gaul_dir = datafactory / "data" / "raw" / "gaul_admin" + frames = {} + for src_col in SOURCE_RENAME: + t = pq.read_table(gaul_dir / f"{src_col}.parquet") + s = pd.Series( + t.column("value").to_pylist(), + index=t.column("gid").to_pylist(), + name=src_col, + ) + frames[src_col] = s + df = pd.DataFrame(frames) + df.index.name = "gid" + return df + + +def _region_gids(datafactory: Path, region: str) -> set[int] | None: + """Load a bundled region pgid set; None means 'all complete cells'.""" + if region in ("all", "global_complete"): + return None + path = datafactory / "src" / "datafactory_query" / f"{region}_pgids.json" + if not path.exists(): + raise FileNotFoundError( + f"Region file not found: {path}. Use a bundled region name " + f"(e.g. land_gaul, africa_me_legacy) or 'all'." + ) + return set(json.loads(path.read_text())) + + +def _provenance(datafactory: Path) -> dict: + """Pull the land_gaul ledger entry for traceability (best-effort).""" + ledger = (datafactory / "provenance" / "gaul_admin" + / "ingestion_ledger.jsonl") + out = {} + if ledger.exists(): + for line in ledger.read_text().splitlines(): + try: + e = json.loads(line) + except json.JSONDecodeError: + continue + if e.get("dataset") in ("land_gaul_region", + "gaul_admin_area_majority"): + out[e["dataset"]] = { + k: e[k] for k in + ("content_digest", "source_gaul_digest", "timestamp") + if k in e + } + return out + + +def build(datafactory: Path, region: str, out: Path) -> pd.DataFrame: + src = _load_source(datafactory) + + # Optionally restrict to a region's cell set. + region_gids = _region_gids(datafactory, region) + if region_gids is not None: + src = src.loc[src.index.intersection(sorted(region_gids))] + + # Rename to the contract names. + df = src.rename(columns=SOURCE_RENAME) + + # Keep only fully-complete cells. Incomplete cells must NOT enter the + # lookup: an unknown/incomplete gid then merges to null downstream and the + # manager's _validate() gate crashes (fail-loud) instead of shipping a hole + # or a -1 sentinel. Never carry -1 / "" as a value. + complete = pd.Series(True, index=df.index) + for c in CODE_COLS: + complete &= df[c].notna() & (df[c] != -1) + for c in NAME_COLS: + complete &= df[c].notna() & (df[c].astype(str).str.len() > 0) + dropped = int((~complete).sum()) + df = df[complete].copy() + + # Coordinates from the gid (no geometry needed). + gids = df.index.to_numpy() + df["pg_xcoord"] = [xcoord(int(g)) for g in gids] + df["pg_ycoord"] = [ycoord(int(g)) for g in gids] + + # dtypes: codes numeric, coords float64, names/iso categorical (C-32 memory). + for c in CODE_COLS: + df[c] = df[c].astype("int64") + for c in COORD_COLS: + df[c] = df[c].astype("float64") + for c in NAME_COLS: + df[c] = df[c].astype("category") + + df = df[METADATA_COLS] + df.index = df.index.astype("int64") + df.index.name = "priogrid_gid" + df = df.sort_index() + + # Hard invariants — the lookup must be clean by construction. + assert df.isna().sum().sum() == 0, "lookup contains nulls" + for c in CODE_COLS: + assert (df[c] != -1).all(), f"{c} contains -1 sentinel" + + out.parent.mkdir(parents=True, exist_ok=True) + table = pa.Table.from_pandas(df, preserve_index=True) + meta = dict(table.schema.metadata or {}) + meta[b"adr"] = b"ADR-011" + meta[b"region"] = region.encode() + meta[b"n_cells"] = str(len(df)).encode() + meta[b"n_dropped_incomplete"] = str(dropped).encode() + meta[b"source_provenance"] = json.dumps( + _provenance(datafactory)).encode() + table = table.replace_schema_metadata(meta) + pq.write_table(table, out) + + print(f"region={region} cells={len(df):,} dropped_incomplete={dropped:,}") + print(f"wrote {out} ({out.stat().st_size/1e6:.2f} MB)") + return df + + +def main() -> None: + ap = argparse.ArgumentParser(description=__doc__) + ap.add_argument("--datafactory", type=Path, default=None) + ap.add_argument("--region", default="land_gaul") + ap.add_argument( + "--out", type=Path, + default=Path("views_postprocessing/data/gaul_lookup.parquet"), + ) + args = ap.parse_args() + datafactory = args.datafactory or _resolve_datafactory() + if not (datafactory / "data" / "raw" / "gaul_admin").exists(): + raise SystemExit( + f"views-datafactory not found at {datafactory}. Set $VIEWS_DATAFACTORY " + f"or pass --datafactory /path/to/views-datafactory." + ) + build(datafactory, args.region, args.out) + + +if __name__ == "__main__": + main() diff --git a/scripts/diff_enrichment.py b/scripts/diff_enrichment.py new file mode 100644 index 0000000..7763c6e --- /dev/null +++ b/scripts/diff_enrichment.py @@ -0,0 +1,164 @@ +"""Shadow diff: current runtime mapper vs new lookup enricher (ADR-011, Stage 2 prep). + +Runs BOTH geographic-enrichment engines on the africa_me_legacy cell set and +compares all 9 contract columns per cell. Every difference is classified so we +can account, precisely, for what changes when the engine is swapped — and +confirm there are no UNEXPLAINED differences before going live. + +Requires the real shapefiles (git-lfs pull) so the current mapper can run, and +the committed lookup parquet for the new enricher. Writes: + reports/enrichment_diff/diff_cells.csv one row per africa_me cell + reports/enrichment_diff/summary.json counts per class (for plots/report) + +The classification deliberately separates "country code-system difference" +(same GAUL country, Natural Earth ISO vs GAUL ISO string) from genuine +"country reassignment" (different GAUL country), so the headline change count +is not inflated by a pure naming convention. +""" + +from __future__ import annotations + +import json +import logging +import os +import warnings +from pathlib import Path + +import numpy as np +import pandas as pd + +from views_postprocessing.unfao.enrichment import GaulLookupEnricher +from views_postprocessing.unfao.gaul_schema import METADATA_COLS + +# Quiet the noisy mapper run; the imports above are clean and stay at top. +warnings.filterwarnings("ignore") +logging.getLogger().setLevel(logging.WARNING) + + +def _resolve_datafactory() -> Path: + env = os.environ.get("VIEWS_DATAFACTORY") + if env: + return Path(env) + return Path(__file__).resolve().parents[2] / "views-datafactory" + + +_DATAFACTORY = _resolve_datafactory() +_AFRICA_ME = _DATAFACTORY / "src" / "datafactory_query" / "africa_me_legacy_pgids.json" +_AZORES_GIDS = {182470, 183190, 183909, 183910, 186058, 186778} +_OUT = Path("reports/enrichment_diff") + + +def _run_new(gids: list[int]) -> pd.DataFrame: + enr = GaulLookupEnricher() + df = pd.DataFrame({"priogrid_gid": gids, "month_id": 0}) + out = enr.enrich_dataframe_with_pg_info( + df, pg_id_col="priogrid_gid", time_id_col="month_id", + ).set_index("priogrid_gid")[METADATA_COLS] + return out.add_suffix("__new") + + +def _run_old(gids: list[int]) -> pd.DataFrame: + from views_postprocessing.unfao.mapping.mapping import get_default_mapper + mapper = get_default_mapper() + df = pd.DataFrame({"priogrid_gid": gids, "month_id": 0}) + raw = mapper.enrich_dataframe_with_pg_info( + df, pg_id_col="priogrid_gid", time_id_col="month_id", + only_metadata=True, batch_size=1000, use_multiprocessing=True, + show_progress=False, + ) + # The mapper may omit columns for unmapped cells; reindex to the contract. + raw = raw.set_index("priogrid_gid") + for c in METADATA_COLS: + if c not in raw.columns: + raw[c] = np.nan + return raw[METADATA_COLS].add_suffix("__old") + + +def _classify(row: pd.Series) -> tuple[str, str]: + """Return (presence, change_class) for one cell.""" + has_old = pd.notna(row["country_iso_a3__old"]) + has_new = pd.notna(row["country_iso_a3__new"]) + + if has_new and not has_old: + if int(row.name) in _AZORES_GIDS: + return "new_only", "azores_supplement" + return "new_only", "coastal_recovery" + if has_old and not has_new: + return "old_only", "dropped_by_land_gaul" + if not has_old and not has_new: + return "neither", "both_unmapped" + + # Present in both — compare the 9 columns. + diffs = [c for c in METADATA_COLS + if not _eq(row[f"{c}__old"], row[f"{c}__new"])] + if not diffs: + return "both", "identical" + + gaul0_changed = "admin1_gaul0_code" in diffs + iso_changed = "country_iso_a3" in diffs + admin_changed = any(c in diffs for c in + ["admin1_gaul1_code", "admin2_gaul2_code"]) + + if gaul0_changed: + return "both", "country_reassignment" + if iso_changed and not gaul0_changed: + return "both", "country_code_system" + if admin_changed: + return "both", "admin_reallocation" + # Only names/coords differ, codes identical. + if any(c in diffs for c in ["pg_xcoord", "pg_ycoord"]): + return "both", "coordinate_difference" + return "both", "name_only_difference" + + +def _eq(a, b) -> bool: + if pd.isna(a) and pd.isna(b): + return True + if pd.isna(a) or pd.isna(b): + return False + if isinstance(a, float) or isinstance(b, float): + try: + return abs(float(a) - float(b)) < 1e-6 + except (TypeError, ValueError): + return str(a) == str(b) + return str(a) == str(b) + + +def main() -> None: + gids = sorted(json.loads(_AFRICA_ME.read_text())) + print(f"africa_me_legacy cells: {len(gids):,}") + + print("running NEW enricher (lookup merge)...") + new = _run_new(gids) + print("running OLD mapper (real shapefiles, this takes a few minutes)...") + old = _run_old(gids) + + both = old.join(new, how="outer") + both.index.name = "priogrid_gid" + + classified = both.apply(_classify, axis=1, result_type="expand") + both["presence"] = classified[0] + both["change_class"] = classified[1] + + _OUT.mkdir(parents=True, exist_ok=True) + both.to_csv(_OUT / "diff_cells.csv") + + counts = both["change_class"].value_counts().to_dict() + n_changed = int((both["change_class"] != "identical").sum() + - counts.get("both_unmapped", 0)) + summary = { + "n_cells": len(both), + "counts": counts, + "n_changed_excluding_identical_and_unmapped": n_changed, + "unexplained": int(both["change_class"].isin(["UNEXPLAINED"]).sum()), + } + (_OUT / "summary.json").write_text(json.dumps(summary, indent=2)) + + print("\n=== difference classes ===") + for k, v in sorted(counts.items(), key=lambda kv: -kv[1]): + print(f" {k:28s} {v:>6,}") + print(f"\nwrote {_OUT/'diff_cells.csv'} and summary.json") + + +if __name__ == "__main__": + main() diff --git a/scripts/plot_enrichment_diff.py b/scripts/plot_enrichment_diff.py new file mode 100644 index 0000000..0102a9a --- /dev/null +++ b/scripts/plot_enrichment_diff.py @@ -0,0 +1,186 @@ +"""Rich verification maps for the enrichment diff (ADR-011, Stage 2). + +Renders the old-mapper-vs-new-lookup differences over africa_me as maps, so the +change can be shown and accounted for visually. Reads +reports/enrichment_diff/diff_cells.csv and writes PNGs to +reports/enrichment_diff/maps/. + +Cells are PRIO-GRID 0.5-degree squares drawn with pcolormesh on a regular grid; +country outlines come from Natural Earth 110m (fast context layer). +""" + +from __future__ import annotations + +from pathlib import Path + +import matplotlib +matplotlib.use("Agg") +import matplotlib.colors as mcolors +import matplotlib.patches as mpatches +import matplotlib.pyplot as plt +import numpy as np +import pandas as pd + +from views_postprocessing.unfao.gaul_schema import CELL_SIZE, colrow + +_DIFF = Path("reports/enrichment_diff/diff_cells.csv") +_MAPS = Path("reports/enrichment_diff/maps") +_NE110 = Path("views_postprocessing/shapefiles/ne_110m_admin_0_countries/" + "ne_110m_admin_0_countries.shp") +_CELL = CELL_SIZE + +CLASS_COLORS = { + "identical": "#e8e8e8", + "country_reassignment": "#d62728", + "admin_reallocation": "#ff7f0e", + "coastal_recovery": "#2ca02c", + "dropped_by_land_gaul": "#9467bd", + "both_unmapped": "#7f7f7f", +} + + +def _gid_to_colrow(gid): + return colrow(gid) + + +def _borders(ax, bbox): + try: + import geopandas as gpd + ne = gpd.read_file(_NE110) + ne.boundary.plot(ax=ax, color="black", linewidth=0.4, zorder=3) + except Exception: + pass + ax.set_xlim(bbox[0], bbox[1]) + ax.set_ylim(bbox[2], bbox[3]) + ax.set_xlabel("longitude") + ax.set_ylabel("latitude") + + +def _grid(values: pd.Series, bbox): + """Build a masked 2D array over bbox at 0.5deg from a per-gid value Series.""" + col0 = int((bbox[0] + 180) / _CELL) + row0 = int((bbox[2] + 90) / _CELL) + ncol = int((bbox[1] - bbox[0]) / _CELL) + nrow = int((bbox[3] - bbox[2]) / _CELL) + grid = np.full((nrow, ncol), np.nan) + for gid, v in values.items(): + c, r = _gid_to_colrow(gid) + cc, rr = c - col0, r - row0 + if 0 <= cc < ncol and 0 <= rr < nrow: + grid[rr, cc] = v + extent = [bbox[0], bbox[1], bbox[2], bbox[3]] + return grid, extent + + +def _bbox(df, pad=2.0): + xs = [(_gid_to_colrow(g)[0]) * _CELL - 180 for g in df.index] + ys = [(_gid_to_colrow(g)[1]) * _CELL - 90 for g in df.index] + return [min(xs) - pad, max(xs) + _CELL + pad, + min(ys) - pad, max(ys) + _CELL + pad] + + +def map_agree_disagree(df, bbox): + fig, ax = plt.subplots(figsize=(11, 11)) + code = (df["change_class"] != "identical").astype(int) + grid, extent = _grid( + pd.Series(code.values, index=df.index), bbox) + cmap = mcolors.ListedColormap(["#e8e8e8", "#d62728"]) + ax.imshow(np.ma.masked_invalid(grid), origin="lower", extent=extent, + cmap=cmap, vmin=0, vmax=1, interpolation="nearest", zorder=2) + _borders(ax, bbox) + n_changed = int(code.sum()) + ax.set_title(f"africa_me: enrichment agreement\n" + f"{len(df)-n_changed:,} identical (grey) | " + f"{n_changed:,} changed (red)") + ax.legend(handles=[mpatches.Patch(color="#e8e8e8", label="identical"), + mpatches.Patch(color="#d62728", label="changed")], + loc="lower left") + fig.savefig(_MAPS / "01_agree_disagree.png", dpi=130, bbox_inches="tight") + plt.close(fig) + + +def map_by_class(df, bbox): + classes = [c for c in CLASS_COLORS if c in set(df["change_class"])] + code_of = {c: i for i, c in enumerate(classes)} + codes = df["change_class"].map(code_of) + grid, extent = _grid(pd.Series(codes.values, index=df.index), bbox) + cmap = mcolors.ListedColormap([CLASS_COLORS[c] for c in classes]) + fig, ax = plt.subplots(figsize=(11, 11)) + ax.imshow(np.ma.masked_invalid(grid), origin="lower", extent=extent, + cmap=cmap, vmin=-0.5, vmax=len(classes) - 0.5, + interpolation="nearest", zorder=2) + _borders(ax, bbox) + ax.set_title("africa_me: difference class per cell") + ax.legend(handles=[mpatches.Patch(color=CLASS_COLORS[c], + label=f"{c} ({int((df['change_class']==c).sum())})") + for c in classes], loc="lower left", fontsize=9) + fig.savefig(_MAPS / "02_by_class.png", dpi=130, bbox_inches="tight") + plt.close(fig) + + +def map_country_before_after(df, bbox): + present = df[df["country_iso_a3__old"].notna() + | df["country_iso_a3__new"].notna()] + countries = sorted(set(present["country_iso_a3__old"].dropna()) + | set(present["country_iso_a3__new"].dropna())) + cof = {c: i for i, c in enumerate(countries)} + cmap = plt.get_cmap("tab20", max(len(countries), 1)) + fig, axes = plt.subplots(1, 2, figsize=(20, 10)) + for ax, col, title in [ + (axes[0], "country_iso_a3__old", "OLD mapper (Natural Earth country)"), + (axes[1], "country_iso_a3__new", "NEW lookup (GAUL country)"), + ]: + codes = df[col].map(cof) + grid, extent = _grid(pd.Series(codes.values, index=df.index), bbox) + ax.imshow(np.ma.masked_invalid(grid), origin="lower", extent=extent, + cmap=cmap, vmin=0, vmax=len(countries), interpolation="nearest", + zorder=2) + _borders(ax, bbox) + ax.set_title(title) + fig.suptitle("Country assignment: before vs after (color = country)") + fig.savefig(_MAPS / "03_country_before_after.png", dpi=120, + bbox_inches="tight") + plt.close(fig) + + +def map_zoom(df, bbox, name, title): + sub = df.copy() + classes = [c for c in CLASS_COLORS if c in set(sub["change_class"])] + code_of = {c: i for i, c in enumerate(classes)} + grid, extent = _grid( + pd.Series(sub["change_class"].map(code_of).values, index=sub.index), bbox) + cmap = mcolors.ListedColormap([CLASS_COLORS[c] for c in classes]) + fig, ax = plt.subplots(figsize=(10, 10)) + ax.imshow(np.ma.masked_invalid(grid), origin="lower", extent=extent, + cmap=cmap, vmin=-0.5, vmax=len(classes) - 0.5, + interpolation="nearest", zorder=2, alpha=0.85) + _borders(ax, bbox) + ax.set_title(title) + ax.legend(handles=[mpatches.Patch(color=CLASS_COLORS[c], label=c) + for c in classes if c != "identical"], + loc="lower left", fontsize=9) + fig.savefig(_MAPS / name, dpi=140, bbox_inches="tight") + plt.close(fig) + + +def main(): + _MAPS.mkdir(parents=True, exist_ok=True) + df = pd.read_csv(_DIFF).set_index("priogrid_gid") + bbox = _bbox(df) + + map_agree_disagree(df, bbox) + map_by_class(df, bbox) + map_country_before_after(df, bbox) + # Zoom 1: Lesotho / South Africa enclave (biggest reassignment cluster). + map_zoom(df, [24, 36, -32, -24], "04_zoom_lesotho_sa.png", + "Zoom: Lesotho / Eswatini / South Africa border reassignments") + # Zoom 2: Namibia / Botswana / South Africa tri-border. + map_zoom(df, [13, 30, -30, -17], "05_zoom_namibia_botswana.png", + "Zoom: Namibia / Botswana / South Africa / Mozambique borders") + print(f"wrote maps to {_MAPS}/") + for p in sorted(_MAPS.glob("*.png")): + print(f" {p.name} ({p.stat().st_size//1024} KB)") + + +if __name__ == "__main__": + main() diff --git a/tests/test_append_metadata.py b/tests/test_append_metadata.py new file mode 100644 index 0000000..5e604ce --- /dev/null +++ b/tests/test_append_metadata.py @@ -0,0 +1,87 @@ +"""Tests for the manager's _append_metadata sequence after the ADR-011 swap. + +UNFAOPostProcessorManager cannot be instantiated in this environment (it needs +views-pipeline-core), so — like test_validation.py replicates _validate() — this +replicates the exact _append_metadata sequence with GaulLookupEnricher: + + raw = enricher.enrich_dataframe_with_pg_info(df.reset_index(), ...) + raw = raw[filter_cols].set_index([time_id, entity_id]) + result = predictions.join(raw) + +and verifies the joined result carries the 9 metadata columns aligned to the +predictions, with the fail-loud path intact. Keep in lockstep with +views_postprocessing/unfao/managers/unfao.py:_append_metadata. +""" + +import pandas as pd +import pytest + +from views_postprocessing.unfao.enrichment import GaulLookupEnricher +from views_postprocessing.unfao.gaul_schema import METADATA_COLS + +_TIME_ID = "month_id" +_ENTITY_ID = "priogrid_gid" +# filter_cols as built in _append_metadata: time, entity, then the 9 columns. +_FILTER_COLS = [_TIME_ID, _ENTITY_ID, *METADATA_COLS] + + +@pytest.fixture(scope="module") +def enricher(): + return GaulLookupEnricher() + + +def _predictions(gids, months=(100, 101)): + """A minimal prediction frame indexed like a PGMDataset.dataframe.""" + rows = [(m, g) for m in months for g in gids] + idx = pd.MultiIndex.from_tuples(rows, names=[_TIME_ID, _ENTITY_ID]) + return pd.DataFrame({"pred_ln_sb_best": 0.0}, index=idx) + + +def _append_metadata(enricher, predictions): + """Replica of UNFAOPostProcessorManager._append_metadata.""" + raw = enricher.enrich_dataframe_with_pg_info( + predictions.reset_index(), + pg_id_col=_ENTITY_ID, time_id_col=_TIME_ID, only_metadata=True, + ) + raw = raw[_FILTER_COLS].set_index([_TIME_ID, _ENTITY_ID]) + return predictions.join(raw) + + +class TestAppendMetadata: + def test_nine_columns_added_and_aligned(self, enricher): + gids = enricher._lookup.index[:5].tolist() + out = _append_metadata(enricher, _predictions(gids)) + for c in METADATA_COLS: + assert c in out.columns + # The prediction column survives the join. + assert "pred_ln_sb_best" in out.columns + + def test_row_count_preserved(self, enricher): + gids = enricher._lookup.index[:4].tolist() + preds = _predictions(gids, months=(100, 101, 102)) + out = _append_metadata(enricher, preds) + assert len(out) == len(preds) # 4 gids x 3 months + + def test_metadata_matches_lookup_per_cell(self, enricher): + gids = enricher._lookup.index[:6].tolist() + out = _append_metadata(enricher, _predictions(gids, months=(100,))) + for g in gids: + assert out.loc[(100, g), "country_iso_a3"] == \ + enricher._lookup.loc[g, "country_iso_a3"] + assert out.loc[(100, g), "admin2_gaul2_code"] == \ + enricher._lookup.loc[g, "admin2_gaul2_code"] + + def test_no_nulls_for_known_cells(self, enricher): + gids = enricher._lookup.index[:20].tolist() + out = _append_metadata(enricher, _predictions(gids, months=(100,))) + for c in METADATA_COLS: + assert out[c].isna().sum() == 0, c + + def test_unknown_cell_yields_null_metadata(self, enricher): + # Fail-loud: an out-of-lookup cell flows through as NaN so _validate() + # (not the enricher) is the single place the delivery crashes. + good = int(enricher._lookup.index[0]) + preds = _predictions([good, 999_999], months=(100,)) + out = _append_metadata(enricher, preds) + assert out.loc[(100, good), "country_iso_a3"] is not None + assert pd.isna(out.loc[(100, 999_999), "country_iso_a3"]) diff --git a/tests/test_datafactory_deploy_readiness.py b/tests/test_datafactory_deploy_readiness.py new file mode 100644 index 0000000..08fd669 --- /dev/null +++ b/tests/test_datafactory_deploy_readiness.py @@ -0,0 +1,101 @@ +"""Falsification stubs — "views-datafactory development is ready to push to main +and deploy to serve" (assessed from the views-postprocessing perspective). + +These guard the cross-repo preconditions that the FAO global-delivery plan +(umbrella views-postprocessing#20, region flip views-models#127) depends on. +They are written against a local views-datafactory checkout and FAIL BY DESIGN +until the datafactory deploy candidate is actually releasable and the served +artifact matches the branch. + +Point _DF at the local datafactory checkout to run. +""" + +import json +import subprocess +from pathlib import Path + +import pytest + +_DF = Path("/home/simon/Documents/scripts/views_platform/views-datafactory") +_pytestmark = pytest.mark.skipif(not _DF.exists(), reason="datafactory checkout not present") +pytestmark = _pytestmark + + +def _git(*args: str) -> str: + return subprocess.run( + ["git", "-C", str(_DF), *args], + capture_output=True, text=True, check=False, + ).stdout.strip() + + +class TestReleaseGate: + """P1 (HARD): the deploy gate (ADR-022) checks out an exact git TAG on the + server. land_gaul / Azores / SHDI are all committed AFTER the latest tag + (v1.2.29) and the version in pyproject is unchanged. Deploying 'to serve' + the current state would serve v1.2.29 — which has none of this work — and + views-models#127's REGION='land_gaul' flip would hit a package without it. + """ + + def test_version_bumped_past_latest_tag(self): + version_line = (_DF / "pyproject.toml").read_text() + current = next( + ln.split("=")[1].strip().strip('"') + for ln in version_line.splitlines() + if ln.startswith("version") + ) + tags = _git("tag", "-l").splitlines() + assert f"v{current}" not in tags, ( + f"pyproject version {current} is already tagged (v{current}). The " + f"land_gaul/Azores/SHDI work is committed but UNTAGGED; the tag-based " + f"deploy gate would serve v{current}, which lacks land_gaul. Bump the " + f"version and cut a release before merging to main / deploying." + ) + + def test_land_gaul_commit_is_in_a_release_tag(self): + # bac163e = "feat: add bundled curated region land_gaul" + containing = _git("tag", "--contains", "bac163e").splitlines() + assert containing, ( + "the land_gaul commit (bac163e) is contained in NO release tag — " + "a tag-gated deployment cannot serve it. Tag a release that includes it." + ) + + +class TestServedArtifactMatchesBranch: + """P3 (HARD): the served artifact (assembled grid / zarr) must reflect the + parquets land_gaul and the postprocessing lookup are derived from. The grid + was assembled 2026-06-08; the GAUL parquets were regenerated 2026-06-12 + (Azores supplement). Serving the stale grid ships GAUL channels that + disagree with land_gaul and with the postprocessing lookup. + """ + + def test_assembled_grid_not_older_than_gaul_parquets(self): + grid = _DF / "data/assembled/grid.npy" + parquet = _DF / "data/raw/gaul_admin/gaul0_code.parquet" + assert grid.exists() and parquet.exists() + assert grid.stat().st_mtime >= parquet.stat().st_mtime, ( + "assembled grid is older than the GAUL parquets — re-assemble and " + "re-export the zarr before deploying, or the served GAUL channels " + "are stale relative to land_gaul (64,742)." + ) + + +class TestServedArtifactProvenanceTracksGaul: + """P6 (SOFT): the grid provenance tracks ucdp/acled/ghspop/ghsbuilts/vdem + digests but NOT an admin/GAUL digest. So a GAUL parquet change (e.g. the + Azores fix) cannot trigger a content-addressed rebuild — the served GAUL + channels can silently stay stale across pipeline runs. + """ + + def test_provenance_includes_admin_digest(self): + prov = json.loads((_DF / "data/assembled/provenance.json").read_text()) + sources = prov.get("sources", {}) + assert "admin_digest" in sources, ( + "provenance.sources has no admin_digest — GAUL parquet changes are " + "invisible to the content-addressed skip, so the served grid will " + "not rebuild when GAUL changes. Add the admin digest to the " + "assembly provenance." + ) + + +if __name__ == "__main__": + pytest.main([__file__, "-v"]) diff --git a/tests/test_enrichment.py b/tests/test_enrichment.py new file mode 100644 index 0000000..c2e5125 --- /dev/null +++ b/tests/test_enrichment.py @@ -0,0 +1,159 @@ +"""Tests for the lookup-based enricher (ADR-011, Stage 1). + +Run against the committed gaul_lookup.parquet — no datafactory checkout or +shapefiles required. These tests pin the contract the enricher must satisfy so +that swapping it in for the runtime mapper (Stage 3) is invisible downstream. +""" + +import pandas as pd +import pytest + +from views_postprocessing.unfao.enrichment import ( + GaulLookupEnricher, + METADATA_COLS, +) + +# The 5 africa_me_legacy ocean cells that have no GAUL assignment — they must +# NOT be in the lookup (they are excluded upstream by the land_gaul region). +OCEAN_CELLS = [62356, 94776, 99027, 107733, 107742] + +CODE_COLS = ["admin1_gaul1_code", "admin1_gaul0_code", "admin2_gaul2_code"] +NAME_COLS = ["admin1_gaul1_name", "admin1_gaul0_name", "admin2_gaul2_name", + "country_iso_a3"] + + +@pytest.fixture(scope="module") +def enricher(): + return GaulLookupEnricher() + + +@pytest.fixture(scope="module") +def lookup(enricher): + return enricher._lookup + + +class TestLookupIntegrity: + """The committed lookup must be clean by construction.""" + + def test_expected_cell_count(self, lookup): + # land_gaul region: 64,742 fully-complete land cells. + assert len(lookup) == 64_742 + + def test_no_nulls_anywhere(self, lookup): + assert int(lookup.isna().sum().sum()) == 0 + + def test_no_minus_one_sentinel_in_codes(self, lookup): + for c in CODE_COLS: + assert (lookup[c] != -1).all(), f"{c} has -1 sentinel" + + def test_no_empty_strings_in_names(self, lookup): + for c in NAME_COLS: + assert (lookup[c].astype(str).str.len() > 0).all() + + def test_has_exactly_the_nine_contract_columns(self, lookup): + assert list(lookup.columns) == METADATA_COLS + + def test_dtypes(self, lookup): + for c in CODE_COLS: + assert pd.api.types.is_numeric_dtype(lookup[c]), c + for c in ["pg_xcoord", "pg_ycoord"]: + assert pd.api.types.is_float_dtype(lookup[c]), c + for c in NAME_COLS: + assert isinstance(lookup[c].dtype, pd.CategoricalDtype), c + + def test_ocean_cells_excluded(self, lookup): + for gid in OCEAN_CELLS: + assert gid not in lookup.index, f"ocean cell {gid} should be excluded" + + +class TestCoordinateFormula: + """pg_xcoord/pg_ycoord must follow the PRIO-GRID 0.5-degree formula.""" + + def test_known_coordinates(self, lookup): + for gid in lookup.index[:50]: + x = -180.0 + ((gid - 1) % 720) * 0.5 + 0.25 + y = -90.0 + ((gid - 1) // 720) * 0.5 + 0.25 + assert lookup.loc[gid, "pg_xcoord"] == pytest.approx(x) + assert lookup.loc[gid, "pg_ycoord"] == pytest.approx(y) + + +class TestEnricherContract: + """enrich() must reproduce the 9-column contract the manager consumes.""" + + def _frame(self, gids): + return pd.DataFrame({ + "priogrid_gid": gids, + "month_id": [100] * len(gids), + }) + + def test_all_metadata_cols_present(self, enricher, lookup): + gids = lookup.index[:10].tolist() + out = enricher.enrich_dataframe_with_pg_info( + self._frame(gids), pg_id_col="priogrid_gid", time_id_col="month_id", + ) + for c in METADATA_COLS: + assert c in out.columns + + def test_no_nulls_for_known_gids(self, enricher, lookup): + gids = lookup.index[:100].tolist() + out = enricher.enrich_dataframe_with_pg_info( + self._frame(gids), pg_id_col="priogrid_gid", time_id_col="month_id", + ) + for c in METADATA_COLS: + assert out[c].isna().sum() == 0, c + + def test_values_match_lookup(self, enricher, lookup): + gids = lookup.index[:20].tolist() + out = enricher.enrich_dataframe_with_pg_info( + self._frame(gids), pg_id_col="priogrid_gid", time_id_col="month_id", + ).set_index("priogrid_gid") + for gid in gids: + assert out.loc[gid, "country_iso_a3"] == lookup.loc[gid, "country_iso_a3"] + assert out.loc[gid, "admin2_gaul2_code"] == lookup.loc[gid, "admin2_gaul2_code"] + + def test_row_count_preserved(self, enricher, lookup): + gids = lookup.index[:7].tolist() + out = enricher.enrich_dataframe_with_pg_info( + self._frame(gids), pg_id_col="priogrid_gid", time_id_col="month_id", + ) + assert len(out) == 7 + + def test_codes_numeric_coords_float(self, enricher, lookup): + gids = lookup.index[:5].tolist() + out = enricher.enrich_dataframe_with_pg_info( + self._frame(gids), pg_id_col="priogrid_gid", time_id_col="month_id", + ) + for c in CODE_COLS: + assert pd.api.types.is_numeric_dtype(out[c]), c + for c in ["pg_xcoord", "pg_ycoord"]: + assert pd.api.types.is_float_dtype(out[c]), c + + +class TestFailLoud: + """Unknown / excluded cells must surface as NaN, not a sentinel.""" + + def test_unknown_gid_yields_null(self, enricher, lookup): + good = int(lookup.index[0]) + df = pd.DataFrame({"priogrid_gid": [good, 999_999], "month_id": [1, 1]}) + out = enricher.enrich_dataframe_with_pg_info( + df, pg_id_col="priogrid_gid", time_id_col="month_id", + ).set_index("priogrid_gid") + assert out.loc[good, "country_iso_a3"] is not None + assert pd.isna(out.loc[999_999, "country_iso_a3"]) + for c in CODE_COLS: + assert pd.isna(out.loc[999_999, c]) + + def test_ocean_cell_yields_null(self, enricher): + df = pd.DataFrame({"priogrid_gid": OCEAN_CELLS, + "month_id": [1] * len(OCEAN_CELLS)}) + out = enricher.enrich_dataframe_with_pg_info( + df, pg_id_col="priogrid_gid", time_id_col="month_id", + ) + # Every ocean cell is absent from the lookup -> all-null metadata. + assert out["country_iso_a3"].isna().all() + + def test_missing_pg_id_col_raises(self, enricher): + with pytest.raises(ValueError, match="not found"): + enricher.enrich_dataframe_with_pg_info( + pd.DataFrame({"x": [1]}), pg_id_col="priogrid_gid", + ) diff --git a/views_postprocessing/data/gaul_lookup.parquet b/views_postprocessing/data/gaul_lookup.parquet new file mode 100644 index 0000000..9c28ccb Binary files /dev/null and b/views_postprocessing/data/gaul_lookup.parquet differ diff --git a/views_postprocessing/unfao/enrichment.py b/views_postprocessing/unfao/enrichment.py new file mode 100644 index 0000000..6087be7 --- /dev/null +++ b/views_postprocessing/unfao/enrichment.py @@ -0,0 +1,106 @@ +"""Lookup-based geographic enrichment (ADR-011). + +Drop-in replacement for the runtime spatial mapper's +``enrich_dataframe_with_pg_info``. Instead of loading 774 MB of shapefiles and +computing spatial intersections at run time, it merges a precomputed lookup +table (built by ``scripts/build_gaul_lookup.py`` from the views-datafactory's +area-majority GAUL parquets) onto the prediction frame by PRIO-GRID cell id. + +No geopandas, no shapefiles, no spatial computation. The lookup contains only +fully-complete cells; an unknown or incomplete cell id left-merges to NaN, so +the manager's ``_validate()`` null gate still crashes the delivery (fail-loud) +rather than shipping a hole. This is intentional and matches the old mapper's +behaviour (it returned ``None`` for such cells). + +Produces exactly the 9-column contract enforced at +``unfao.py`` (``_append_metadata`` filter_cols / ``_validate``) and at +views-faoapi ``handlers.py`` (``FAO_PGMDataset._METADATA_COLS``). +""" + +from __future__ import annotations + +import logging +from pathlib import Path + +import pandas as pd + +from views_postprocessing.unfao.gaul_schema import METADATA_COLS + +logger = logging.getLogger(__name__) + +_DEFAULT_LOOKUP = Path(__file__).resolve().parent.parent / "data" / "gaul_lookup.parquet" + + +class GaulLookupEnricher: + """Merge precomputed GAUL metadata onto a prediction frame by cell id.""" + + def __init__(self, lookup_path: str | Path | None = None) -> None: + self._lookup_path = Path(lookup_path) if lookup_path else _DEFAULT_LOOKUP + if not self._lookup_path.exists(): + raise FileNotFoundError( + f"GAUL lookup table not found at {self._lookup_path}. " + f"Build it with scripts/build_gaul_lookup.py." + ) + self._lookup = pd.read_parquet(self._lookup_path) + # Index is priogrid_gid; columns are the 9 metadata columns. + missing = [c for c in METADATA_COLS if c not in self._lookup.columns] + if missing: + raise ValueError( + f"Lookup table is missing contract columns: {missing}" + ) + logger.info( + "Loaded GAUL lookup: %d cells from %s", + len(self._lookup), self._lookup_path, + ) + + def enrich_dataframe_with_pg_info( + self, + df: pd.DataFrame, + pg_id_col: str = "priogrid_gid", + time_id_col: str = "month_id", + only_metadata: bool = True, + **ignored_mapper_kwargs, + ) -> pd.DataFrame: + """Return ``df`` with the 9 metadata columns merged in by cell id. + + Signature mirrors the mapper's method so the manager call site changes + minimally. Mapper-only kwargs (``batch_size``, ``use_multiprocessing``, + ``show_progress`` …) are accepted and ignored — a table join needs none + of them — but any unrecognised kwarg is logged at debug so a genuine + caller mistake is not wholly silent. + + Cells absent from the lookup get NaN metadata (fail-loud downstream). + """ + if ignored_mapper_kwargs: + logger.debug( + "GaulLookupEnricher ignoring mapper-only kwargs: %s", + sorted(ignored_mapper_kwargs), + ) + if pg_id_col not in df.columns: + raise ValueError(f"Column '{pg_id_col}' not found in DataFrame") + + if only_metadata: + keep = [pg_id_col] + if time_id_col in df.columns: + keep.append(time_id_col) + base = df[keep].copy() + else: + base = df.copy() + + merged = base.merge( + self._lookup, left_on=pg_id_col, right_index=True, how="left", + ) + + n_total = len(merged) + n_unmapped = int(merged["country_iso_a3"].isna().sum()) + if n_unmapped: + logger.warning( + "%d/%d rows have no lookup match (will fail validation): %s", + n_unmapped, n_total, + sorted(merged.loc[merged["country_iso_a3"].isna(), pg_id_col] + .unique().tolist())[:20], + ) + return merged + + # Convenience alias for new call sites that don't need the legacy name. + enrich = enrich_dataframe_with_pg_info diff --git a/views_postprocessing/unfao/gaul_schema.py b/views_postprocessing/unfao/gaul_schema.py new file mode 100644 index 0000000..fb5f16b --- /dev/null +++ b/views_postprocessing/unfao/gaul_schema.py @@ -0,0 +1,57 @@ +"""Single source of truth for the GAUL enrichment schema and PRIO-GRID geometry. + +Shared by the production enricher (enrichment.py) and the build/diff tooling +(scripts/) so the 9-column contract, the datafactory->contract rename map, and +the PRIO-GRID coordinate formula are defined exactly once. + +The 9 contract columns are hard-validated at unfao.py (_append_metadata / +_validate) and at views-faoapi handlers.py (FAO_PGMDataset._METADATA_COLS). +""" + +from __future__ import annotations + +# ── The 9-column contract (manager selection order) ──────────────────────── +METADATA_COLS = [ + "pg_xcoord", "pg_ycoord", "country_iso_a3", + "admin1_gaul1_code", "admin1_gaul1_name", + "admin1_gaul0_code", "admin1_gaul0_name", + "admin2_gaul2_code", "admin2_gaul2_name", +] + +CODE_COLS = ["admin1_gaul1_code", "admin1_gaul0_code", "admin2_gaul2_code"] +NAME_COLS = ["country_iso_a3", "admin1_gaul1_name", "admin1_gaul0_name", + "admin2_gaul2_name"] +COORD_COLS = ["pg_xcoord", "pg_ycoord"] + +# ── datafactory (gid, value) parquet -> contract column ────────────────── +# gaul0/gaul1 land under the admin1_ prefix, gaul2 under admin2_, iso3 becomes +# country_iso_a3 (mirrors the mapper's _process_pg_batch prefixing). +SOURCE_RENAME = { + "gaul0_code": "admin1_gaul0_code", + "gaul0_name": "admin1_gaul0_name", + "gaul1_code": "admin1_gaul1_code", + "gaul1_name": "admin1_gaul1_name", + "gaul2_code": "admin2_gaul2_code", + "gaul2_name": "admin2_gaul2_name", + "iso3_code": "country_iso_a3", +} + +# ── PRIO-GRID geometry (fixed 0.5-degree global grid, 720 cols x 360 rows) ── +PRIOGRID_NCOL = 720 +CELL_SIZE = 0.5 +HALF_CELL = 0.25 + + +def xcoord(gid: int) -> float: + """Cell-centre longitude for a PRIO-GRID gid.""" + return -180.0 + ((gid - 1) % PRIOGRID_NCOL) * CELL_SIZE + HALF_CELL + + +def ycoord(gid: int) -> float: + """Cell-centre latitude for a PRIO-GRID gid.""" + return -90.0 + ((gid - 1) // PRIOGRID_NCOL) * CELL_SIZE + HALF_CELL + + +def colrow(gid: int) -> tuple[int, int]: + """Zero-based (col, row) of a PRIO-GRID gid.""" + return (gid - 1) % PRIOGRID_NCOL, (gid - 1) // PRIOGRID_NCOL diff --git a/views_postprocessing/unfao/managers/README.md b/views_postprocessing/unfao/managers/README.md index 2e126d2..60a9948 100644 --- a/views_postprocessing/unfao/managers/README.md +++ b/views_postprocessing/unfao/managers/README.md @@ -28,7 +28,7 @@ The `UNFAOPostProcessorManager` is a specialized postprocessor that prepares VIE │ └───────────┬───────────┘ │ │ ▼ │ │ ┌───────────────────────┐ │ -│ │ PriogridCountryMapper │ │ +│ │ GaulLookupEnricher │ │ │ │ (Geographic Metadata) │ │ │ └───────────┬───────────┘ │ │ ▼ │ @@ -51,7 +51,7 @@ The `UNFAOPostProcessorManager` is a specialized postprocessor that prepares VIE 2. **Transform Phase** (`_transform`) - Enriches both historical and forecast dataframes with geographic metadata - - Uses `PriogridCountryMapper` to map PRIO-GRID cells to administrative boundaries + - Uses `GaulLookupEnricher` to merge a precomputed GAUL lookup onto PRIO-GRID cells (ADR-011) 3. **Validate Phase** (`_validate`) - Ensures all required metadata columns are present @@ -175,7 +175,7 @@ class UNFAOPostProcessorManager(PostprocessorManager, ForecastingModelManager): | `_forecast_dataframe` | pd.DataFrame | Forecast predictions from ensemble | | `_historical_dataset` | PGMDataset | Wrapped historical data with utilities | | `_forecast_dataset` | PGMDataset | Wrapped forecast data with utilities | -| `_mapper` | PriogridCountryMapper | Geographic mapping utility | +| `_enricher` | GaulLookupEnricher | Precomputed-lookup geographic enrichment (ADR-011) | | `ensemble_path_manager` | EnsemblePathManager | Path manager for source ensemble | ## Methods @@ -335,7 +335,7 @@ Error while trying to download the latest forecast data... ``` ValueError: Historical dataframe is missing required metadata column: country_iso_a3 ``` -*Solution:* Ensure the `PriogridCountryMapper` has access to required shapefiles +*Solution:* Ensure the `GaulLookupEnricher`'s lookup table (`views_postprocessing/data/gaul_lookup.parquet`) is present and covers the requested cells ## Dependencies @@ -384,4 +384,5 @@ except Exception as e: ## See Also -- [PriogridCountryMapper](../mapping/README.md) - Geographic mapping documentation \ No newline at end of file +- [GaulLookupEnricher](../../../docs/CICs/GaulLookupEnricher.md) - Precomputed-lookup enrichment (ADR-011) +- [PriogridCountryMapper](../mapping/README.md) - Legacy runtime mapper (retained, no longer used by the manager) \ No newline at end of file diff --git a/views_postprocessing/unfao/managers/unfao.py b/views_postprocessing/unfao/managers/unfao.py index 3e9d4f5..f39b5d9 100644 --- a/views_postprocessing/unfao/managers/unfao.py +++ b/views_postprocessing/unfao/managers/unfao.py @@ -16,7 +16,8 @@ from datetime import datetime import os from dotenv import load_dotenv -from views_postprocessing.unfao.mapping.mapping import get_default_mapper +from views_postprocessing.unfao.enrichment import GaulLookupEnricher +from views_postprocessing.unfao.gaul_schema import METADATA_COLS from pathlib import Path logger = logging.getLogger(__name__) @@ -38,7 +39,7 @@ def __init__( self._historical_dataset = None self._forecast_dataset = None - self._mapper = get_default_mapper() + self._enricher = GaulLookupEnricher() self.ensemble_path_manager = None def _read_historical_data(self): @@ -76,35 +77,6 @@ def _read_forecast_data(self): # Force it to the correct .env just to be safe load_dotenv(dotenv_path=str(self.ensemble_path_manager.dotenv)) - - # appwrite_config = AppwriteConfig( - # path_manager=self.ensemble_path_manager, - # endpoint=os.getenv("APPWRITE_ENDPOINT"), - # project_id=os.getenv("APPWRITE_DATASTORE_PROJECT_ID"), - # credentials=os.getenv("APPWRITE_DATASTORE_API_KEY"), - # auth_method="api_key", - # cache_ttl_hours=24, - # bucket_id=os.getenv("APPWRITE_UNFAO_BUCKET_ID"), - # bucket_name=os.getenv("APPWRITE_UNFAO_BUCKET_NAME"), - # collection_name=os.getenv("APPWRITE_UNFAO_COLLECTION_NAME"), - # collection_id=os.getenv("APPWRITE_UNFAO_COLLECTION_ID"), - # database_id=os.getenv("APPWRITE_DATABASE_ID"), - # database_name=os.getenv("APPWRITE_DATABASE_NAME"), - # ) - # appwrite_config = AppwriteConfig( - # path_manager=self._model_path, - # endpoint=os.getenv("APPWRITE_ENDPOINT"), - # project_id=os.getenv("APPWRITE_DATASTORE_PROJECT_ID"), - # credentials=os.getenv("APPWRITE_DATASTORE_API_KEY"), - # auth_method="api_key", - # cache_ttl_hours=24, - # bucket_id=os.getenv("APPWRITE_UNFAO_FORECASTS_BUCKET_ID"), - # bucket_name=os.getenv("APPWRITE_UNFAO_FORECASTS_BUCKET_NAME"), - # collection_id=os.getenv("APPWRITE_UNFAO_COLLECTION_ID"), - # collection_name=os.getenv("APPWRITE_UNFAO_COLLECTION_NAME"), - # database_id=os.getenv("APPWRITE_METADATA_DATABASE_ID"), - # database_name=os.getenv("APPWRITE_METADATA_DATABASE_NAME"), - # ) appwrite_config = AppwriteConfig( path_manager=self.ensemble_path_manager, @@ -138,25 +110,12 @@ def _read(self) -> any: self._read_forecast_data() def _append_metadata(self, dataset: PGMDataset) -> pd.DataFrame: - filter_cols = [ - dataset._time_id, - dataset._entity_id, - "pg_xcoord", - "pg_ycoord", - "country_iso_a3", - "admin1_gaul1_code", - "admin1_gaul1_name", - "admin1_gaul0_code", - "admin1_gaul0_name", - "admin2_gaul2_code", - "admin2_gaul2_name", - ] - raw_result = self._mapper.enrich_dataframe_with_pg_info( + filter_cols = [dataset._time_id, dataset._entity_id, *METADATA_COLS] + raw_result = self._enricher.enrich_dataframe_with_pg_info( dataset.dataframe.reset_index(), pg_id_col=dataset._entity_id, time_id_col=dataset._time_id, only_metadata=True, - batch_size=1000 ) raw_result = raw_result[filter_cols].set_index([dataset._time_id, dataset._entity_id]) @@ -186,15 +145,7 @@ def _transform( self._forecast_dataframe = self._append_metadata(self._forecast_dataset) def _validate(self) -> pd.DataFrame: - _necessary_metadata_cols = ["pg_xcoord", - "pg_ycoord", - "country_iso_a3", - "admin1_gaul1_code", - "admin1_gaul1_name", - "admin1_gaul0_code", - "admin1_gaul0_name", - "admin2_gaul2_code", - "admin2_gaul2_name"] + _necessary_metadata_cols = METADATA_COLS for col in _necessary_metadata_cols: if col not in self._historical_dataframe.columns: @@ -248,7 +199,7 @@ def _save(self) -> list: dsm = DatastoreModule(appwrite_file_manager_config=unfao_appwrite_config) timestamp = datetime.now().strftime("%Y%m%d_%H%M%S") - enrichment_description = f"Enriched with geographic metadata on {timestamp} using PriogridCountryMapper." + enrichment_description = f"Enriched with geographic metadata on {timestamp} using precomputed GAUL lookup (ADR-011)." historical_file_path = self._model_path.data_generated / f"historical_dataset_{timestamp}.parquet" forecast_file_path = self._model_path.data_generated / f"forecast_dataset_{timestamp}.parquet"