|
|
|
@ -3,6 +3,8 @@ export const dashboardData = {
|
|
|
|
|
name: 'Wasseiges',
|
|
|
|
|
area: 24.48,
|
|
|
|
|
population: 2996,
|
|
|
|
|
lat: 50.6173,
|
|
|
|
|
lon: 5.0206,
|
|
|
|
|
},
|
|
|
|
|
landuse: [
|
|
|
|
|
{
|
|
|
|
@ -56,7 +58,7 @@ export const dashboardData = {
|
|
|
|
|
|
|
|
|
|
interface landuse {
|
|
|
|
|
name: string,
|
|
|
|
|
area: number
|
|
|
|
|
area: number,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
interface production {
|
|
|
|
@ -69,7 +71,9 @@ export type dashboardDataType = {
|
|
|
|
|
base: {
|
|
|
|
|
name: string,
|
|
|
|
|
area: number,
|
|
|
|
|
population: number
|
|
|
|
|
population: number,
|
|
|
|
|
lat: number,
|
|
|
|
|
lon: number,
|
|
|
|
|
},
|
|
|
|
|
landuse: landuse[],
|
|
|
|
|
production: production[],
|
|
|
|
|