TerriaMap deployment for UNL - advice #6553
-
Ticket to detail responses to Universidad Nacional de Loja (UNL) request for clarifications around:
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
To enable the language switcher:The settings for this are in the TerriaMap repo, here... "languageConfiguration": {
"enabled": true,
"debug": false,
"languages": {
"es": "Espanol",
"en": "English"
},
"fallbackLanguage": "en"
}, To deploy Terria to a serverPlease see https://docs.terria.io/guide/deploying/deploying-to-aws/ . I will update this doc this week, so check next week and should be helpful for you. Adding sensor data to TerriaE.g. weather station data. This is very dependent on what your weather station can provide. If the weather station can make a live updating If the data updates regularly, and you want these updates to show live, then there is the If you weather station does not make its data available on the internet, then you will need to do this yourself. If you use AWS they have a lot of IoT services that are designed to filter and process sensor data and make it available online in various ways. This article has some useful information but dont worry if its more complex than your needs, just an introduction: https://docs.aws.amazon.com/iotanalytics/latest/userguide/iotanalytics-ug.pdf Alternatively, you could write a script to run on your servals at set time intervals. Something very simple like this.
Again the steps are - retrieve the data from the weather station, filter the data, and make it available as a csv! Updating colours in UIPlease see this link https://docs.terria.io/guide/customizing/skinning/ How to display 3D Data, e.g. Lidar:Your data needs to be converte to Give this a try: https://cesium.com/platform/cesium-ion/ You would then add the Cesium Resource that is created to your Terria Catalog as a Cesium3DTilesCatalogItem see https://docs.terria.io/guide/connecting-to-data/catalog-type-details/3d-tiles/ Make sure to fill out the ionAssetId and ionAccessToken traits, here is an example from my personal Cesium Ion account: {
"name": "Cesium 3dtiles hosted example",
"type": "3d-tiles",
"ionAssetId": 1029466,
"ionAccessToken": "dfakdhflaksdhfaslkfhasdkfjhasldkfjhsadkfjhsadkfhasdflkjahsdflkasdhflkajsdhflkasdjhflksadjfhalksdjfhsadkfh"
}, |
Beta Was this translation helpful? Give feedback.
-
thanks so much, for all the answers |
Beta Was this translation helpful? Give feedback.
To enable the language switcher:
The settings for this are in the TerriaMap repo, here...
/TerriaMap/wwwroot/config.json
Change this by modifying
enabled
property in config.json, and adding "es" to the languages object:To deploy Terria to a server
Please see https://docs.terria.io/guide/deploying/deploying-to-aws/ . I will update this doc this week, so check next week and should be helpful for you.
Adding sensor data to Terria
E.g. weather station data.
This is very dependent on what your weather statio…