Israeli Gas Stations
All 1,100+ gas stations in Israel with location, company and services.
About this dataset
Official Ministry of Energy dataset of all active gas stations in Israel. Each entry has: company (Paz, Sonol, Dor-Alon...), precise lat/lon, services (wash, maintenance), fuel types, opening hours. Useful for navigation apps, fleet management, and fuel-cost tools.
Who it's for
How to use it
- 1Search 'gas stations' on data.gov.il.
- 2Copy the CSV resource_id.
- 3Download all records once per day.
Installation & setup
Download the CSV and load into Postgres with a PostGIS geo index: CREATE INDEX ON stations USING GIST (location).
Code examples
// PostGIS query — nearest 5 gas stations to a point
const { rows } = await db.query(`
SELECT name, company,
ST_Distance(location, ST_MakePoint($1, $2)::geography) as dist
FROM gas_stations
ORDER BY location <-> ST_MakePoint($1, $2)
LIMIT 5
`, [lon, lat]);Sample response
{
"records": [
{
"station_id": 1029,
"company": "פז",
"address": "דרך נמיר 100, תל אביב",
"lat": 32.098,
"lon": 34.788,
"services": "שטיפה, מרכול, קפה"
}
]
}FAQ
Tips & pitfalls
More datasets in this category
Israeli Educational Institutions
All 5,400+ schools and kindergartens in Israel with institution code, address, student count.
Israeli Bus & Train Stops
All 30,000+ public-transport stops in Israel with precise location and route info.
Israel Cadastre (Gush/Helka)
Every parcel of land in Israel — block, parcel, geographic location and boundaries.
Israeli Tourist Sites
2,000+ official Israeli tourist sites — historical sites, beaches, nature reserves and more.
Road Accidents in Israel
All recorded Israeli road accidents — location, cause, severity, vehicles involved.
Israeli Election Results
All Israeli election results at ballot-box level, since 1996.