export const cityTopology = {
  type: "FeatureCollection",
  features: [
    {
      type: "Feature",
      properties: {
        name: "Dublin",
      },
      geometry: {
        type: "Point",
        coordinates: [-6.266155, 53.35014],
      },
    },
    {
      type: "Feature",
      properties: {
        name: "Cork",
      },
      geometry: {
        type: "Point",
        coordinates: [-8.468399, 51.903614],
      },
    },
    {
      type: "Feature",
      properties: {
        name: "Limerick",
      },
      geometry: {
        type: "Point",
        coordinates: [-8.630498, 52.668018],
      },
    },
    {
      type: "Feature",
      properties: {
        name: "Galway",
      },
      geometry: {
        type: "Point",
        coordinates: [-9.062691, 53.270962],
      },
    },
    {
      type: "Feature",
      properties: {
        name: "Waterford",
      },
      geometry: {
        type: "Point",
        coordinates: [-7.1101, 52.2593],
      },
    },
  ],
};
