Plant
In the Capacity Planning Application JDL Samples using a Composite Data Model, this entity relies on the following entities:
-
Country
The Plant entity has the following attributes:
-
geojson-String: The GeoJSON area of the plant location. -
latitude-Double: The latitude of the plant location. -
longitude-Double: The longitude of the plant location. -
online-Boolean: The online status of the plant. -
plantId-String,required: The identifier of the plant. -
country.id-String: The id of the country where the plant is located.
Here are some values it can contain:
| geojson | latitude | longitude | online | plantId | country.id |
|---|---|---|---|---|---|
| { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "name": "Paris", "country": "France", "population": 2148000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [2.2241, 48.8156], [2.4699, 48.8156], [2.4699, 48.9021], [2.2241, 48.9021], [2.2241, 48.8156] ] ] } } ] } | 48.8566 | 2.3522 | true | Paris | FRA |
| { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "name": "New York City", "state": "New York", "country": "United States", "population": 8419600 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-74.2591, 40.4774], [-73.7004, 40.4774], [-73.7004, 40.9176], [-74.2591, 40.9176], [-74.2591, 40.4774] ] ] } } ] } | 40.7128 | -74.0060 | true | NYC | USA |
| { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "name": "London", "country": "United Kingdom", "population": 8982000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [-0.5103, 51.2868], [0.3340, 51.2868], [0.3340, 51.6919], [-0.5103, 51.6919], [-0.5103, 51.2868] ] ] } } ] } | 51.5074 | -0.1278 | true | London | UK |
| { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "name": "Singapore", "country": "Singapore", "population": 5639000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [103.6050, 1.2098], [104.0327, 1.2098], [104.0327, 1.4713], [103.6050, 1.4713], [103.6050, 1.2098] ] ] } } ] } | 1.3521 | 103.8198 | true | Singapore | SNG |
| { "type": "FeatureCollection", "features": [ { "type": "Feature", "properties": { "name": "Nice", "region": "Provence-Alpes-Côte d'Azur", "country": "France", "population": 340000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [7.2174, 43.6650], [7.3050, 43.6650], [7.3050, 43.7450], [7.2174, 43.7450], [7.2174, 43.6650] ] ] } } ] } | 43.7102 | 7.2620 | true | Nice | FRA |