Home Forum Software Extend the maps Reply To: Extend the maps

#1787

Hello everyone. This is my first message here.

This is a very good idea to have additional layers on the map, like nuclear power plants, hazardous places (e.g. Chernobyl), radioactive waste management facilities, natural (e.g. mines), etc.;

As a matter of fact I’ve already started to aggregate data about npps from various sources. Afterwards I was thinking to release it on GitHub.

My data structure is something more complex. SQL table structure below:

SELECT nuclear_power_plants.id,
nuclear_power_plants.name,
nuclear_power_plants.longitude,
nuclear_power_plants.latitude,
nuclear_power_plants.country,
nuclear_power_plants.status,
nuclear_power_plants.type,
nuclear_power_plants.model,
nuclear_power_plants.built_start_year,
nuclear_power_plants.operational_from_year,
nuclear_power_plants.operational_to_year
FROM nuclear_power_plants;

Cristian S.