JULES VERNE ATV DEMONSTRATION OBJECTIVES REPORT TOOL (JADOR)

Size: px
Start display at page:

Download "JULES VERNE ATV DEMONSTRATION OBJECTIVES REPORT TOOL (JADOR)"

Transcription

1 JULES VERNE ATV DEMONSTRATION OBJECTIVES REPORT TOOL (JADOR) Fran Martínez Fadrique (1), Carlos M. Casas Cuadrado (1), José Miguel Lozano González (1), (1) GMV AD, Isaac Newton 11, Tres Cantos, Spain ABSTRACT On April 3 rd 2008, the first Automated Transfer Vehicle (ATV) Jules Verne successfully docked to the International Space Station (ISS). Being the Jules Verne the first ATV mission, it was necessary to demonstrate the correct in-flight performance of the autonomous onboard Guidance, Navigation and Control (GNC) functions, critical to guarantee the success of the mission and the ISS safety. To assess this performance, CNES, ESA, NASA and RSA agreed on a number of demonstration objectives to be incorporated into an operational report that should quantify the actual performance of the on-board system. These evaluation objectives were implemented in the Jules Verne ATV Demonstration Objectives Report Tool (JADOR) that was integrated by CNES as part of the Flight Dynamics operational system. This paper intends to provide an insight in the specific aspects of JADOR, developed by GMV under ESA/CNES contract. 1. DEMONSTRATION OBJECTIVES The demonstration objectives agreed by all relevant parties had to be verified during different mission phases, when data from ATV and ISS are compared with ATV Control Centre (ATV-CC) Flight Dynamics computed data to assess the ATV on-board performance. Typical assessments focused on attitude control, absolute and relative GPS, GNC on-board confidence, navigation coherence and trajectory behaviour. Demonstration objectives were very heterogeneous, requiring a specific set of data and processing for each of them. The main differences were: - They can be related to a single magnitude or a set of magnitudes. - They can be based on raw telemetry data, results obtained in the ATV-CC, or the comparison between both. - They can apply to a single point in time or to an interval, even to several time intervals in the course of a mission phase. - They can have one or several thresholds, not necessarily constant. In case of demonstration objectives analysing an interval, the threshold could apply to the whole interval or only some parts if it. The high number of demonstration objectives and its different nature made it unfeasible to obtain manually all the required data in an appropriate format within the tight operational schedule. A more automated approach was recommended since a process with high level of manual intervention is very error prone. The purpose of JADOR is to automatically retrieve the demonstration objective related information, to compile it in a comprehensive document, to ease the verification of the computations with respect to pre-established thresholds and pass fail criteria and to allow the homogenous exchange to all involved parties, while reducing the human interaction in the process to a minimum. 2. DESIGN CONSTRAINTS The original goal of JADOR was to ease the retrieval and comparison of all the information related to the demonstration objectives, while the generation of the document and verification of the thresholds was to be done by a human operator. Detailed analysis of the actual operational needs and the necessity to process a huge amount of information caused that the objective of JADOR to be changed into a complete end-to-end process with minimal human interaction. At the beginning of the development of JADOR, the demonstration objectives were still significantly evolving. Some studies were on-going in order to refine the variables to monitor and set their most adequate thresholds. With the development already in process, some demonstration objectives were added or changed. In addition, the format and contents of the final report wasn t completely defined at the time of the JADOR specification. During the development of JADOR, several elements such as assessment of demonstration objectives, plots, results and statistics were added to the report. The time available for the development, testing, deployment and validation in the operational environment was limited to six months; this was a hard constraint due to already fixed launch date. The main challenge in this strict development process was to

2 develop JADOR from scratch and to bring it to operational conditions within the prescribed schedule. Performance was also a design issue for the JADOR software. After the data is available in the Flight Dynamics databases (FDB), the amount of time before the demonstration objectives had to be delivered to the analysis experts was really reduced due to operational requirements. This constraint imposed performance requirements in the software to execute all analysis tasks, generate all textual and graphical information and compile and format the final report. Although the processing implemented in JADOR is not extremely complex, the number of demonstration objectives to process and the big amount of graphical information to be generated causes that the processing time has to be taken into consideration within the operational timeline. To optimise the development process and minimise the risk, JADOR was conceived as a simple collection of command line tools. A Man-Machine Interface (MMI) should be incorporated should sufficient time be available. For this purpose the design of the configuration files and interfaces reused the formats and data structures from an already existing MMI application that could be overlaid on the command line version of JADOR. 3. ARCHITECTURE The following paragraphs define the main system architecture details that made JADOR a success MODULAR ARCHITECTURE Every element in the JADOR production chain had well specified and encapsulated tasks. Also, a clear definition of interfaces between those elements was established. This guaranteed that all the elements could be developed in parallel, reducing the development time to a minimum. ATV-FDS FDB R1 FDBLIB JADOR PRODUCTION P2 P1 Timeline Generation (J-TML) D9 Flow Retrieval (J-RGE) Configurati on D8 D1 Timeline & Range Flow/File Dumps D11 Thresholds Config. P3 D10 Flow Merge (J-MER) Config. D2 D3 D4 Threshold Data (MADONA) Plot Data (MADONA) Demo Numeric Description (XML) P5 D6 JADOR Generator (J-DOC) JADOR (XHTML) P4 D5 Plot Generator (J-DOC) Plots (PNG) Figure 1. High level architecture of JADOR D7 JADOR Template The main tasks of JADOR, represented in Figure 1, are: - Flow retrieval (J-RGE): this element is in charge of retrieving from the ATV-FDS database all the required data flows and data files and convert them into MADONA (CNES specifications) formatted ASCII files. These files are stored in the JADOR local area. - Timeline and range generation (J-TML): this component generates the actual ATV mission timeline (events relevant to the JADOR generation) and a representation of range as a function of time using the flows retrieved from the ATF-FDS database. - Flow merge (J-MER): this is the core of the system: the data flows are combined according to the different descriptions corresponding to each demonstration objective to produce derived data adequate for plotting and ancillary data required for the demonstration objective evaluation and document production (e.g. comparison statistics, thresholds, etc). - Document generation (J-DOC): actual plots and tables are produced using the data generated by J- MER and merged into the final JADOR document REDUCTION OF EXTERNAL INTERFACES The only data obtained from an external source in the JADOR generation was the retrieved data from the FDB. In order to reduce the dependency of JADOR on the FDB, all the accesses to it were concentrated in a single task, the Flow Retrieval. In addition, all the flows needed for all the subsequent tasks in the generation of the report are retrieved at the very beginning of the process and stored locally, to reduce the impact of an external contingency (e.g. FDB not reachable). All the subsequent tasks use the local data to do the computations TWO LAYER TASKS Each of the tasks in which JADOR was divided had a similar internal structure, which made it simpler to develop and to adapt possible changes: - A core program in FORTRAN 90, performing a simple unitary task. - A wrapper script in TCL that executes the core program as many times as needed. The core of each task was developed in FORTRAN 90 consistently with the supporting flight dynamics libraries from ATV-FDS. Those libraries provide access to the FDB and to a set of routines to easily manage and process the retrieved data. Those programs were designed to perform a very specific simple task each time they are executed, implementing the intelligence of the specific demonstration objective tailored with the input configuration. This way, the recovery time in case the program ends unexpectedly is reduced to a

3 minimum. The wrapper is a TCL script that reads the high level configuration file and executes the core as many times as requested in a safe way. Since the core program only performs a simple task each time it s executed, the wrapper has the control on the load of the JADOR system (e.g. slow down data retrieval to avoid FDB overload) SEQUENCED PROCEDURE The selection of the tasks was done in such a way that it can easily allow the definition of a sequenced procedure. Each step of the procedure was done by a different task. This procedure was simply defined as: - Retrieve data from ATV-FDS database. - Generate timeline for required period. - Merge data flows and calculate statistics. - Generate report. Tasks were also designed to be checkpoints. An unexpected event in one of the tasks doesn t force the user to execute the whole procedure again. The process could be continued from the last successfully executed task. The final goal of this simplified procedure was its automation. The most demanding document contains more that 100 charts and their corresponding statistics, and the only way to respond in time and with sufficient confidence that all data is consistent is to process automatically end-to-end HIGH ADAPTABILITY One of the most demanding constraints on the design of JADOR was the possibility to add, edit or remove features without a major re-design of the system. Those features had a diverse nature, such as modifications in the demonstration objective definitions, addition of new events, use of new data flows and addition of new statistics or new plotting features. The use of software technologies that allowed easy integration of new elements, tailoring of the already existing ones and growth of the tool capabilities was required. In order to achieve this goal, while keeping the modular architecture and its well-defined interfaces, JADOR had an object orientated high level design, where all the elements in the system were assigned an entity (e.g. data files, plots, reports). Those entities were created at a particular point in the system and travelled all the way to the end. If a new feature was requested in any of the tools, the information contained in a particular entity could be extended to account for it. At this point, the entity acts as a configuration file for the tool, which reacts differently depending on the information contained in the entity. Tools only use the information they need from each entity, so the additional information in an entity for a particular tool doesn t impose changes in any of the other tools. As a result, an object oriented language with growing capabilities was needed. The chosen mechanism was the use of XML files. The entities created in such a format can incorporate new information while maintaining backwards compatibility. In addition, their syntax can be easily validated anytime by means of XSD schemas. On the other hand, pure numerical data coming from the FDB or as a result of the data flow merge was stored in MADONA files. Its column-wise format allowed a nice handling by the plotting tools DECOUPLING OF DATA GENERATION AND DATA PRESENTATION All data generated by the computational generation tools are either XML or MADONA files. Both of them are very easy to manage and they allow nice generation and evolution of the datasets, meeting the high adaptability criteria. Moreover, the presentation of those data files was under the same adaptability criteria. Some changes in the document layout were to be expected during the final stages of the development process, when a change in the tools could make a big impact. In order to avoid this, JADOR has a complete decoupling of data generation and data presentation: - In a first step, all the needed data is obtained, processed, computed and stored. This data doesn t contain any formatting information. - In a second step, those data files are processed together with files containing the presentation details, to generate the necessary plots and the final report. Using the data in the XML and MADONA files, the plots are automatically generated. The structure is similar to the other tasks: a TCL wrapper processes the files and executes GNUPLOT to obtain the final image file. Those files are locally stored in PNG format for further use in the report. The final report generation is performed in a single step using also XML technologies (XSL and CSS transformation to XHTML). Thus, a change in the format would only imply a change in the associated style sheet. The XHTML format allows the presentation of the reports in a web browser with full browsing capabilities, which is a must due to the length of the document. Additionally, the final reports in XHTML could be

4 imported into a document processor to edit, post-process and formalise the final document. 4. MAN-MACHINE INTERFACE ESA s initial requested approach was to minimise the tool availability risk, meaning that JADOR should be developed for command line usage. If the available time allowed for it, a MMI should be added later. The initial design intentionally allowed for the easy integration of the MMI with minimum design guidelines in the data architecture. This proved to be a good approach and the integration of GMV s focussuite was done with minimum effort at the end of the project with sufficient time for qualification before launch. focussuite is a generic MMI framework that provides the basic capabilities for creation, editing, and save of the configuration files (see Figure 2). focussuite allows the definition of different workspaces, each of one set-up to contain the basic configuration for each of the phases in which a JADOR report was necessary. Those templates could be modified to account for the last minute details before actually running the whole document generation process. Figure 3. EBRO under focussuite GRAFOS (see Figure 4) is a tool that allows the graphical representation of a set of data. This tool allows the representation of several plots and subplots. It was configured such that, for each particular demonstration objective, the plots for each phase were shown in a different tab. Figure 4. GRAFOS under focussuite Figure 2. focussuite configuration panel edition In the MMI there were links to all the tasks for each of the demonstration objectives and to its input configuration files. Additionally, several plug-ins designed to be run under focussuite could be used in JADOR. EBRO (see Figure 3) is a tool created to show a graphical representation of a list of events. It was used to show a quick graphical overview of the most important events in the timeline. The JADOR man-machine interface was also used to provide a graphical layer to the visualisation of telemetry coming directly from the ATV-CC. In many cases during the analysis of the demonstration criteria it was necessary to go back to the reference raw data to identify the cause of observed behaviours. In this sense, having all graphical functionality integrated in a single tool proved being very useful. Figure 5 contains a sample of raw ATV-CC telemetry plotted using GRAFOS Figure 5. Raw telemetry display with GRAFOS.

5 5. REPORT The final report shows the assessment of all the demonstration objectives for a particular phase. The following paragraphs define the different chapters on it. from the summary to a particular demonstration objective analysis. A sample summary report can be found in Figure COVER This page contains the main title, the reference of the document, the reference of the ICD containing all the demonstration objectives and some space left for signatures. A sample cover page can be seen in Figure 6. Figure 8. Summary in JADOR report 5.4. DEMONSTRATION OBJECTIVES JADOR document contains a report for each particular demonstration objective to be assessed. A general part contains, its description, thresholds and status for each phase (see Figure 9). Then, for each phase to be assessed, all the results, plots and statistics are shown (see Figure 10). Figure 6. Cover in JADOR report 5.2. TIMELINE The timeline paragraph contains all the significant events that influence in the assessment of the demonstration objectives. It allows the JADOR user or analyst to identify the ATV mission events and those generated specifically for the assessment of the demonstration objectives. A sample timeline can be seen in Figure 7. Figure 9. General analysis of demonstration objectives in JADOR report Figure 7. Timeline in JADOR report 5.3. SUMMARY The summary gives an overview of the demonstration objectives assessed through the document and their status with respect to their threshold. It allows at first sight to discover any anomaly in the results. Thanks to the browsing capabilities, it s possible to go directly

6 successful completion of the activity, even with margin for extensive validation and implementation of additional useful operational features. The use of modern software development and data representation technologies was one of the most relevant aspects in the success of the activity. Using XML and extensive object orientation at application level permitted the evolution of the software to its final operational stage with minimum regression during the process and permitting the smooth integration of new requirements and modifications. The use of off-the-shelf building blocks also proved that the concept was adequate and minimise the risk of the development allowing to focus on the JADOR specific issues, while relying that the other components (plotting with GNUPLOT, data representation with XML, etc.) would just work out of the box. Figure 10. Detailed analysis of demonstration objectives in JADOR report 6. USE DURING OPERATIONS JADOR was operationally used during several phases along the mission, verifying the good behaviour of the ATV during Phasing, GPS navigation, Demo Day 1, Demo Day 2 and Rendez-vous. In all of them, it proved to be a very reliable tool, with a fast response time. All the data included in the report was used to discuss the behaviour of the ATV with the involved parties and prove the success of the mission. Thanks to the generation of the report in XHTML format, it could be uploaded to the ATV-CC web server as soon as it was generated. The report at this point wasn t public, so only the experts from FDS could access it via username and password. This proved to be a very useful feature, since the experts could review the report from their terminals just a few minutes after the data was available in the FDB. The addition of a focussuite MMI brought many advantages in the operational aspect. Apart from the ease of use and the reduction of typing errors, it gave JADOR a professional look and provided the operator with some tools to graphically analyse the intermediary data and the final results. JADOR was operated during the ATV Jules Verne mission successfully during all operational phases, fulfilling all expected requirements in the ATV performance assessment Demonstration Days. 8. FURTHER IMPROVEMENTS Although the implementation of JADOR is very unique, given the specific nature of the demonstration objectives and their structure, there are several components that are subject for further reuse in the reporting and activities where data structure is the key in the analysis process. Although the validation principle defined for the Jules Verne mission will not happen again for further ATV missions, JADOR can always be subject of reuse for online or off-line analysis in flight dynamics contexts where a robust and simple-to-use tool is required, also in non-atv or not even space related scenarios since the underlying principle is really generic. 9. REFERENCES ATV Jules Verne Demonstration Objectives and Success Criteria Plan, OPS-PL ESA, 2.2D, June 26th, 2007 JADOR Subsystem Architecture Description, GMVSA 21089/07, 1.0D, October 18th, CONCLUSIONS JADOR was a really challenging project where, in very short time and with several evolving requirements and constraints, it was necessary to bring to operational status a software system with deep operational implications. The selected approach, where incremental development on the evolving design was possible, was key for the

GNCDE: AN INTEGRATED GNC DEVELOPMENT ENVIRONMENT FOR ATTITUDE AND ORBIT CONTROL SYSTEMS

GNCDE: AN INTEGRATED GNC DEVELOPMENT ENVIRONMENT FOR ATTITUDE AND ORBIT CONTROL SYSTEMS GNCDE: AN INTEGRATED GNC DEVELOPMENT ENVIRONMENT FOR ATTITUDE AND ORBIT CONTROL SYSTEMS Fernando Gandía (1), Luigi Strippoli (1), Valentín Barrena (1) (1) GMV, Isaac Newton 11, P.T.M. Tres Cantos, E-28760

More information

CODE / CONFIGURATION COVERAGE

CODE / CONFIGURATION COVERAGE CODE / CONFIGURATION COVERAGE In all affairs it's a healthy thing now and then to hang a question mark on the things you have long taken for granted. - Bertrand Russell, 1872-1970 NASA Technical Fellow

More information

The Avionics System Test Bench, Functional Engineering Simulator: New Developments in Support of Mission and System Verification

The Avionics System Test Bench, Functional Engineering Simulator: New Developments in Support of Mission and System Verification The Avionics System Test Bench, Functional Engineering Simulator: New Developments in Support of Mission and System Verification INTRODUCTION 11th Int. WS on Simulation & EGSE facilities for Space Programmes

More information

Database Developers Forum APEX

Database Developers Forum APEX Database Developers Forum APEX 20.05.2014 Antonio Romero Marin, Aurelien Fernandes, Jose Rolland Lopez De Coca, Nikolay Tsvetkov, Zereyakob Makonnen, Zory Zaharieva BE-CO Contents Introduction to the Controls

More information

DABYS: EGOS Generic Database System

DABYS: EGOS Generic Database System SpaceOps 2010 ConferenceDelivering on the DreamHosted by NASA Mars 25-30 April 2010, Huntsville, Alabama AIAA 2010-1949 DABYS: EGOS Generic base System Isabel del Rey 1 and Ramiro

More information

OPERATIONS DATA FILE

OPERATIONS DATA FILE OPERATIONS DATA FILE Next Generation Manual Procedures Viewer Requirements Document Baseline Rev A March 2002 1 A REVISION AND HISTORY PAGE REVISION DESCRIPTION OF CHANGE PUB. DATE (Reference per SSCD

More information

Mobile MOUSe WEB SITE DESIGN ONLINE COURSE OUTLINE

Mobile MOUSe WEB SITE DESIGN ONLINE COURSE OUTLINE Mobile MOUSe WEB SITE DESIGN ONLINE COURSE OUTLINE COURSE TITLE WEB SITE DESIGN COURSE DURATION 19 Hours of Interactive Training COURSE OVERVIEW In this 7 session course Debbie will take you through the

More information

Automated Testing of Tableau Dashboards

Automated Testing of Tableau Dashboards Kinesis Technical Whitepapers April 2018 Kinesis CI Automated Testing of Tableau Dashboards Abstract Companies make business critical decisions every day, based on data from their business intelligence

More information

ASG WHITE PAPER DATA INTELLIGENCE. ASG s Enterprise Data Intelligence Solutions: Data Lineage Diving Deeper

ASG WHITE PAPER DATA INTELLIGENCE. ASG s Enterprise Data Intelligence Solutions: Data Lineage Diving Deeper THE NEED Knowing where data came from, how it moves through systems, and how it changes, is the most critical and most difficult task in any data management project. If that process known as tracing data

More information

Why testing and analysis. Software Testing. A framework for software testing. Outline. Software Qualities. Dependability Properties

Why testing and analysis. Software Testing. A framework for software testing. Outline. Software Qualities. Dependability Properties Why testing and analysis Software Testing Adapted from FSE 98 Tutorial by Michal Young and Mauro Pezze Software is never correct no matter what developing testing technique is used All software must be

More information

A Model-Based Reference Workflow for the Development of Safety-Related Software

A Model-Based Reference Workflow for the Development of Safety-Related Software A Model-Based Reference Workflow for the Development of Safety-Related Software 2010-01-2338 Published 10/19/2010 Michael Beine dspace GmbH Dirk Fleischer dspace Inc. Copyright 2010 SAE International ABSTRACT

More information

Advanced On-board Control Procedure

Advanced On-board Control Procedure 1 Overview The Advanced On-Board Control Procedure (AOBCP) product is one of a set of technologies that allows to implement cost effective operation and control of a spacecraft. Together these technologies

More information

Procedural Displays. Support for More Efficient Mission Preparation & Operations. Frank Plaßmeier //

Procedural Displays. Support for More Efficient Mission Preparation & Operations. Frank Plaßmeier // Support for More Efficient Mission Preparation & Operations // 2008-10-01 Contents Introduction & Motivation Concept & General Ideas Prototype Conclusion & Outlook p2 Introduction & Motivation (1) Procedures

More information

EUROCONTROL PEGASUS*Plus: A frame for GNSS Data Evaluation

EUROCONTROL PEGASUS*Plus: A frame for GNSS Data Evaluation PEGASUS*Plus: A frame for GNSS Data Evaluation David Duchet, Ivan Konaktchiev Carsten Butzmuehlen, Andreas Lipp Eurocontrol Experimental Centre Introduction As part of the approval process for operations

More information

SSASIM: AN EARTH-ORBITING OBJECTS CATALOGUE MAINTENANCE SIMULATOR

SSASIM: AN EARTH-ORBITING OBJECTS CATALOGUE MAINTENANCE SIMULATOR SSASIM: AN EARTH-ORBITING OBJECTS CATALOGUE MAINTENANCE SIMULATOR Alberto Águeda Maté (1), Isaac Juárez Villares (2), Pablo Muñoz Muñoz (3), Francisco M. Martínez Fadrique (4) (1) GMV, Isaac Newton 11.

More information

3.4 Data-Centric workflow

3.4 Data-Centric workflow 3.4 Data-Centric workflow One of the most important activities in a S-DWH environment is represented by data integration of different and heterogeneous sources. The process of extract, transform, and load

More information

Qualification Specification

Qualification Specification BCS Level 2 Certificate in IT User Skills (ECDL Core) Version 2.0 March 2018 This is a United Kingdom government regulated qualification which is administered and approved by one or more of the following:

More information

Components Based Design and Development. Unit 3: Software Design Quick Overview

Components Based Design and Development. Unit 3: Software Design Quick Overview Components Based Design and Development Computer Engineering Studies Universidad Carlos III de Madrid Unit 3: Software Design Quick Overview Juan Llorens Högskolan på Åland Finland / Universidad Carlos

More information

Create a smarter environment where information becomes insight

Create a smarter environment where information becomes insight Create a smarter environment where information becomes insight How a seamless network can turn data into intelligence for your smart city or factory Contents Introduction 3 Smart city surveillance: From

More information

ROSESAT -- A GRAPHICAL SPACECRAFT SIMULATOR FOR RAPID PROTOTYPING

ROSESAT -- A GRAPHICAL SPACECRAFT SIMULATOR FOR RAPID PROTOTYPING ROSESAT -- A GRAPHICAL SPACECRAFT SIMULATOR FOR RAPID PROTOTYPING Xavier Cyril Space Systems Engineering, CAE Electronics Ltd. 8585 Cote de Liesse, Saint Laurent, Quebec, Canada H4T 1G6 FAX: (514) 734

More information

Moving from a Paper to Paperless validation effort and how to get the most efficient mix of Manual vs. Automated testing.

Moving from a Paper to Paperless validation effort and how to get the most efficient mix of Manual vs. Automated testing. Moving from a Paper to Paperless validation effort and how to get the most efficient mix of Manual vs. Automated testing. Overview The desire to use tools to increase validation productivity with the consequent

More information

TERMS OF REFERENCE Design and website development UNDG Website

TERMS OF REFERENCE Design and website development UNDG Website TERMS OF REFERENCE Design and website development UNDG Website BACKGROUND The United Nations Development Coordination and Operations Office (UN DOCO) launched a new website in 2015 to ensure accessibility

More information

CTI Short Learning Programme in Internet Development Specialist

CTI Short Learning Programme in Internet Development Specialist CTI Short Learning Programme in Internet Development Specialist Module Descriptions 2015 1 Short Learning Programme in Internet Development Specialist (10 months full-time, 25 months part-time) Computer

More information

THE AUTOMATED TEST FRAMEWORK

THE AUTOMATED TEST FRAMEWORK 2017 THE AUTOMATED TEST FRAMEWORK Test More. Test Consistently. Test Faster. Secure Results. Delivered. xceleratesolutions.com TABLE OF CONTENTS CONCEPT...3 BENEFITS...4 TRANSFORMING FROM TRADITIONAL TO

More information

EUROPASS DIPLOMA SUPPLEMENT TO HIGHER TECHNICAL VOCATIONAL TRAINING

EUROPASS DIPLOMA SUPPLEMENT TO HIGHER TECHNICAL VOCATIONAL TRAINING EUROPASS DIPLOMA SUPPLEMENT TO HIGHER TECHNICAL VOCATIONAL TRAINING TITLE OF THE DIPLOMA (ES) Técnico Superior en Desarrollo de Aplicaciones Web TRANSLATED TITLE OF THE DIPLOMA (EN) (1) Higher Technician

More information

Adobe Flash Professional CC Voluntary Product Accessibility Template

Adobe Flash Professional CC Voluntary Product Accessibility Template Adobe Flash Professional CC Voluntary Product Accessibility Template The purpose of the Voluntary Product Accessibility Template is to assist Federal contracting officials in making preliminary assessments

More information

Marketplace Simulations Accessibility Conformance Report Based on Voluntary Product Accessibility Template (VPAT ) 1

Marketplace Simulations Accessibility Conformance Report Based on Voluntary Product Accessibility Template (VPAT ) 1 Marketplace Simulations Accessibility Conformance Report Based on Voluntary Product Accessibility Template (VPAT ) 1 Name of Product: Marketplace Simulations Date: September 20, 2017 Contact information:

More information

CTI Higher Certificate in Information Systems (Internet Development)

CTI Higher Certificate in Information Systems (Internet Development) CTI Higher Certificate in Information Systems (Internet Development) Module Descriptions 2015 1 Higher Certificate in Information Systems (Internet Development) (1 year full-time, 2½ years part-time) Computer

More information

A Web-based XML Schema Visualizer José Paulo Leal & Ricardo Queirós CRACS INESCPORTO LA

A Web-based XML Schema Visualizer José Paulo Leal & Ricardo Queirós CRACS INESCPORTO LA schem@doc A Web-based XML Schema Visualizer José Paulo Leal & Ricardo Queirós CRACS INESCPORTO LA Agenda Motivation Overview Architecture Deployment Main features o XSD extension o Navigation area o View

More information

Concept and Performance Simulation with ASTOS

Concept and Performance Simulation with ASTOS Concept and Performance Simulation with ASTOS Andreas Wiegand (1), Sven Weikert (1) Astos Solutions GmbH (1) Meitnerstraße 8, 70563 Stuttgart, Germany andreas.wiegand@astos.de ABSTRACT Advanced space missions,

More information

A White Paper on Intelligent Infrastructure Concepts

A White Paper on Intelligent Infrastructure Concepts A White Paper on Intelligent Infrastructure Concepts The UK has an extensive transport infrastructure. Government figures indicate that we currently have: 724,000 km of road lanes and 16,600 km of railway

More information

Tennessee. Business Technology Course Code Web Design Essentials. HTML Essentials, Second Edition 2010

Tennessee. Business Technology Course Code Web Design Essentials. HTML Essentials, Second Edition 2010 Tennessee Business Technology Course Code 6501240 Web Design Essentials HTML Essentials, Second Edition 2010 Notation Key SE Student Edition LE Learning Expectation Standard 1.0 Demonstrate knowledge of

More information

CCSDS Mission Operations Services

CCSDS Mission Operations Services CCSDS Mission Operations Services Mario Merri Head of Mission Data Systems Division (ESOC/HSO-GD) CCSDS Mission Operations and Information Management Services (MOIMS) Mehran Sarkarati Head of Applications

More information

CU Careers: Step-by-Step Guide

CU Careers: Step-by-Step Guide CU Careers: Step-by-Step Guide Creating Offers This guide describes how to create and extend an offer using an e-offer, written offer, or verbal offer. Before users can create an offer, the candidate must

More information

Les outils CNES. The «BEST» WORKBENCH. Béatrice LARZUL Danièle BOUCON Dominique HEULET. March The «BEST» Workbench

Les outils CNES. The «BEST» WORKBENCH. Béatrice LARZUL Danièle BOUCON Dominique HEULET. March The «BEST» Workbench Les outils CNES The «BEST» WORKBENCH Béatrice LARZUL Danièle BOUCON Dominique HEULET March 2012 OVERVIEW Brief history CNES recommended process The tools & utilities provided by the «Best» workbench Some

More information

Intelligent Content Authoring and Publishing with MadCap Software.

Intelligent Content Authoring and Publishing with MadCap Software. Intelligent Content Authoring and Publishing with MadCap Software. All the tools you need to develop intelligent, well-organized content that is future-proof and easy to manipulate, single-source, translate

More information

The Programmable Network

The Programmable Network Emerging software-defined data center solutions focus on the need for programmability in the network to reduce costs and realize the benefits of automation. Whether the goal is cloud computing or an SDN,

More information

Norcom. e-fileplan Electronic Cabinet System

Norcom. e-fileplan Electronic Cabinet System Norcom e-fileplan Electronic Cabinet System Revision 2.0 \ Phone: (866) 726-6328 Email:sales@norcom-inc.com e-fileplan Overview e-fileplan is an electronic filing cabinet and document imaging system. e-fileplan

More information

Cameron Stewart Technical Publications Product Manager, xmatters. MadCap Flare native XML singlesource content authoring software

Cameron Stewart Technical Publications Product Manager, xmatters. MadCap Flare native XML singlesource content authoring software San Ramon, CA INDUSTRY Communications Software When we experimented with the features in our trial version of MadCap Flare, it became strikingly obvious that it was the product we needed. You could really

More information

Unit code: J/601/1286 QCF Level 4: BTEC Higher National Credit value: 15

Unit code: J/601/1286 QCF Level 4: BTEC Higher National Credit value: 15 Unit 14: Website Design Unit code: J/601/1286 QCF Level 4: BTEC Higher National Credit value: 15 Aim To enable learners to understand the concepts of website design and apply their own creativity in designing

More information

ECSS E-70-41: Telemetry & Telecommand Packet Utilisation Mario Merri European Space Agency

ECSS E-70-41: Telemetry & Telecommand Packet Utilisation Mario Merri European Space Agency ECSS E-70-41: Telemetry & Telecommand Packet Utilisation Mario Merri European Space Agency OMG meeting Paris 1 Content PUS History and Background PUS context Presentation of the ECSS Standard for TM &

More information

Air Transat. Background. Goals. Challenges. Solution. Industry Travelling, Transport

Air Transat. Background. Goals. Challenges. Solution. Industry Travelling, Transport Air Transat www.airtransat.ca Industry Travelling, Transport Partner r42 communication Cooper Building 3981 boul. Saint-Laurent, suite 215 Montreal H2W1Y5 Quebec, Canada Ralph Spandl ralph@r42.ca Background

More information

Executive Summary. Round Trip Engineering of Space Systems. Change Log. Executive Summary. Visas

Executive Summary. Round Trip Engineering of Space Systems. Change Log. Executive Summary. Visas Reference: egos-stu-rts-rp-1002 Page 1/7 Authors: Andrey Sadovykh (SOFTEAM) Contributors: Tom Ritter, Andreas Hoffmann, Jürgen Großmann (FHG), Alexander Vankov, Oleg Estekhin (GTI6) Visas Surname - Name

More information

Etanova Enterprise Solutions

Etanova Enterprise Solutions Etanova Enterprise Solutions Front End Development» 2018-09-23 http://www.etanova.com/technologies/front-end-development Contents HTML 5... 6 Rich Internet Applications... 6 Web Browser Hardware Acceleration...

More information

Workpackage WP2.5 Platform System Architecture. Frank Badstübner Ralf Ködel Wilhelm Maurer Martin Kunert F. Giesemann, G. Paya Vaya, H.

Workpackage WP2.5 Platform System Architecture. Frank Badstübner Ralf Ködel Wilhelm Maurer Martin Kunert F. Giesemann, G. Paya Vaya, H. Guidelines for application Deliverable n. D25.6 Guidelines for application Sub Project SP2 ADAS development platform Workpackage WP2.5 Platform System Architecture Tasks T2.5.4 Guidelines for applications

More information

EUROPEAN ICT PROFESSIONAL ROLE PROFILES VERSION 2 CWA 16458:2018 LOGFILE

EUROPEAN ICT PROFESSIONAL ROLE PROFILES VERSION 2 CWA 16458:2018 LOGFILE EUROPEAN ICT PROFESSIONAL ROLE PROFILES VERSION 2 CWA 16458:2018 LOGFILE Overview all ICT Profile changes in title, summary, mission and from version 1 to version 2 Versions Version 1 Version 2 Role Profile

More information

Final Presentation AUTOCOGEQ GMV, 2017 Property of GMV All rights reserved UNCLASSIFIED INFORMATION

Final Presentation AUTOCOGEQ GMV, 2017 Property of GMV All rights reserved UNCLASSIFIED INFORMATION @ESTEC GMV, 2017 Property of GMV All rights reserved UNCLASSIFIED INFORMATION El presente documento está clasificado como "GMV-XXXX". Esta clasificación habilita a su receptor al uso de la información

More information

Page 1 of 6 Procedures > Pages > Procedures Use -the-system > MI-generate-report MI - Generate Report I Like It Tags & Notes MI - Generate Report This is an explanation of how to access, view and filter

More information

MANUFACTURING OPTIMIZING COMPONENT DESIGN

MANUFACTURING OPTIMIZING COMPONENT DESIGN 82 39 OPTIMIZING COMPONENT DESIGN MANUFACTURING SIMULATION OF LASER WELDING SHORTENS DESIGN CYCLE AND OPTIMIZES COMPONENT DESIGN AT OWENS CORNING JOHN KIRKLEY interviews BYRON BEMIS of Owens Corning It

More information

Security, Monitoring, and Control of the Re-engineered Hubble Space Telescope Control Center System

Security, Monitoring, and Control of the Re-engineered Hubble Space Telescope Control Center System Security, Monitoring, and Control of the Re-engineered Hubble Space Telescope Control Center System Caleb Principe, NASA Goddard Space Flight Center Larry Barrett, Orbital Sciences Corporation Thomas Buchanan,

More information

Transformation Through Innovation

Transformation Through Innovation Transformation Through Innovation A service provider strategy to prosper from digitization People will have 11.6 billion mobile-ready devices and connections by 2020. For service providers to thrive today

More information

Base Module - Computer Essentials

Base Module - Computer Essentials Base Module - Computer Essentials This module sets out essential concepts and skills relating to the use of devices, file creation and management, networks, and data security. Understand key concepts relating

More information

Quantum, a Data Storage Solutions Leader, Delivers Responsive HTML5-Based Documentation Centers Using MadCap Flare

Quantum, a Data Storage Solutions Leader, Delivers Responsive HTML5-Based Documentation Centers Using MadCap Flare A Customer Success Story in Technical Communication Best Practices Quantum, a Data Storage Solutions Leader, Delivers Responsive HTML5-Based Documentation Centers Using MadCap Flare GOALS Reinvent product

More information

Unit code: R/601/1288 QCF Level 4: BTEC Higher National Credit value: 15

Unit code: R/601/1288 QCF Level 4: BTEC Higher National Credit value: 15 Unit 15: Website Management Unit code: R/601/1288 QCF Level 4: BTEC Higher National Credit value: 15 Aim To enable learners to understand the concepts and knowledge required to effectively manage and maintain

More information

LIBREOFFICE TRAINING PROTOCOL

LIBREOFFICE TRAINING PROTOCOL LIBREOFFICE TRAINING PROTOCOL LibreOffice Training Protocol is a reference for professionals offering training services for LibreOffice, targeted at organizations and individuals deploying the free office

More information

THOMAS LATOZA SWE 621 FALL 2018 DESIGN ECOSYSTEMS

THOMAS LATOZA SWE 621 FALL 2018 DESIGN ECOSYSTEMS THOMAS LATOZA SWE 621 FALL 2018 DESIGN ECOSYSTEMS LOGISTICS HW5 due today Project presentation on 12/6 Review for final on 12/6 2 EXAMPLE: NPM https://twitter.com/garybernhardt/status/1067111872225136640

More information

Verification and Validation meet Planning and Scheduling

Verification and Validation meet Planning and Scheduling Verification and Validation meet Planning and Scheduling AndreA Orlandini (CNR-ISTC) Email: andrea.orlandini@istc.cnr.it National Research Council of Italy (CNR-ISTC) P&S Autonomy and V&V P&S systems are

More information

Workshare Transact. User Guide

Workshare Transact. User Guide Workshare Transact User Guide June 2017 Workshare Transact User Guide Table of Contents Chapter 1: Introducing Workshare Transact...5 What is Workshare Transact?... 6 A safe place for data...6 Workflow...6

More information

Requirements-driven Verification Methodology for Standards Compliance Serrie-justine Chapman (TVS)

Requirements-driven Verification Methodology for Standards Compliance Serrie-justine Chapman (TVS) Requirements-driven Verification Methodology for Standards Compliance Serrie-justine Chapman (TVS) in collaboration with Test and Verification Solutions Ltd Infineon Technologies UK ARTEMIS CRYSTAL project

More information

Grading Rubric Homework 1

Grading Rubric Homework 1 Grading Rubric Homework 1 Used Git, has many commits, over time, wrote appropriate commit comments, set up Git correctly with git config Cloning repository results in a working site, no broken links, no

More information

The IDN Variant TLD Program: Updated Program Plan 23 August 2012

The IDN Variant TLD Program: Updated Program Plan 23 August 2012 The IDN Variant TLD Program: Updated Program Plan 23 August 2012 Table of Contents Project Background... 2 The IDN Variant TLD Program... 2 Revised Program Plan, Projects and Timeline:... 3 Communication

More information

Verification, Validation, and Test with Model-Based Design

Verification, Validation, and Test with Model-Based Design 2008-01-2709 Verification, Validation, and Test with Model-Based Design Copyright 2008 The MathWorks, Inc Tom Erkkinen The MathWorks, Inc. Mirko Conrad The MathWorks, Inc. ABSTRACT Model-Based Design with

More information

10 Steps to Building an Architecture for Space Surveillance Projects. Eric A. Barnhart, M.S.

10 Steps to Building an Architecture for Space Surveillance Projects. Eric A. Barnhart, M.S. 10 Steps to Building an Architecture for Space Surveillance Projects Eric A. Barnhart, M.S. Eric.Barnhart@harris.com Howard D. Gans, Ph.D. Howard.Gans@harris.com Harris Corporation, Space and Intelligence

More information

CM and DM Support to the Modeling and Simulation Process Support to Systems Engineering Functions

CM and DM Support to the Modeling and Simulation Process Support to Systems Engineering Functions CM and DM Support to the Modeling and Simulation Process Support to Systems Engineering Functions First Views Discussions with Mr. Gordon Tillery Cynthia C. Hauer DM Support for Engineering M&S Simulation

More information

HTML is a mark-up language, in that it specifies the roles the different parts of the document are to play.

HTML is a mark-up language, in that it specifies the roles the different parts of the document are to play. Introduction to HTML (5) HTML is a mark-up language, in that it specifies the roles the different parts of the document are to play. For example you may specify which section of a document is a top level

More information

Hypertext Markup Language, or HTML, is a markup

Hypertext Markup Language, or HTML, is a markup Introduction to HTML Hypertext Markup Language, or HTML, is a markup language that enables you to structure and display content such as text, images, and links in Web pages. HTML is a very fast and efficient

More information

COLLECTION OF RAW DATA TASK FORCE MEETING N 7 12 MARCH Doc. CoRD 096. XML for Foreign Trade Statistics. For information

COLLECTION OF RAW DATA TASK FORCE MEETING N 7 12 MARCH Doc. CoRD 096. XML for Foreign Trade Statistics. For information COLLECTION OF RAW DATA TASK FORCE MEETING N 7 12 MARCH 2003 Doc. CoRD 096 XML for Foreign Trade Statistics For information Abstract This paper gives the updated progress report on the development of EDIFACT

More information

TIRA: Text based Information Retrieval Architecture

TIRA: Text based Information Retrieval Architecture TIRA: Text based Information Retrieval Architecture Yunlu Ai, Robert Gerling, Marco Neumann, Christian Nitschke, Patrick Riehmann yunlu.ai@medien.uni-weimar.de, robert.gerling@medien.uni-weimar.de, marco.neumann@medien.uni-weimar.de,

More information

Adobe Flash Professional CS5.5 Voluntary Product Accessibility Template

Adobe Flash Professional CS5.5 Voluntary Product Accessibility Template Adobe Flash Professional CS5.5 Voluntary Product Accessibility Template The purpose of the Voluntary Product Accessibility Template is to assist Federal contracting officials in making preliminary assessments

More information

is easing the creation of new ontologies by promoting the reuse of existing ones and automating, as much as possible, the entire ontology

is easing the creation of new ontologies by promoting the reuse of existing ones and automating, as much as possible, the entire ontology Preface The idea of improving software quality through reuse is not new. After all, if software works and is needed, just reuse it. What is new and evolving is the idea of relative validation through testing

More information

Adobe Photoshop CS6 Voluntary Product Accessibility Template

Adobe Photoshop CS6 Voluntary Product Accessibility Template Adobe Photoshop CS6 Voluntary Product Accessibility Template The purpose of the Voluntary Product Accessibility Template is to assist Federal contracting officials in making preliminary assessments regarding

More information

[AVWSQ-ADWCS6]: WSQ ICDL Adobe Dreamweaver CS6

[AVWSQ-ADWCS6]: WSQ ICDL Adobe Dreamweaver CS6 [AVWSQ-ADWCS6]: WSQ ICDL Adobe Dreamweaver CS6 Length : 2 Days Audience(s) : New or existing users Level : 3 Technology : Adobe Dreamweaver CS6 program Delivery Method : Instructor-Led (Classroom) Course

More information

ENTERPRISE SYSTEMS APOLLO (ANU POLLING ONLINE) USER GUIDE

ENTERPRISE SYSTEMS APOLLO (ANU POLLING ONLINE) USER GUIDE ENTERPRISE SYSTEMS APOLLO (ANU POLLING ONLINE) USER GUIDE Version 3.03 January 2008 CONTENTS 1 Introduction...3 1.1 Accessing APOLLO...3 2 Access, Security and Privacy...3 2.1 Poll Attributes...4 2.2 Poll

More information

Performance Analysis of Parallel Scientific Applications In Eclipse

Performance Analysis of Parallel Scientific Applications In Eclipse Performance Analysis of Parallel Scientific Applications In Eclipse EclipseCon 2015 Wyatt Spear, University of Oregon wspear@cs.uoregon.edu Supercomputing Big systems solving big problems Performance gains

More information

t Bench for Robotics and Autonomy Andrea Merlo

t Bench for Robotics and Autonomy Andrea Merlo t Bench for Robotics and Autonomy Andrea Merlo Agenda Introduction TBRA Overview Objectives Architecture / Technical Description Status Test Results Roadmap he context of a Rover, dance, Navigation and

More information

Review Software Engineering October, 7, Adrian Iftene

Review Software Engineering October, 7, Adrian Iftene Review Software Engineering October, 7, 2013 Adrian Iftene adiftene@info.uaic.ro Software engineering Basics Definition Development models Development activities Requirement analysis Modeling (UML Diagrams)

More information

PROBABILITY OF FAILURE ANALYSIS STANDARDS AND GUIDELINES FOR ELVS

PROBABILITY OF FAILURE ANALYSIS STANDARDS AND GUIDELINES FOR ELVS PROBABILITY OF FAILURE ANALYSIS STANDARDS AND GUIDELINES FOR ELVS Federal Aviation Administration 6th IAASS Conference Session 10: Launch Safety Part 1 By:, Elisabeth Morse (Valador Inc.), Paul Rosati

More information

Voluntary Product Accessibility. Retina CS Enterprise Vulnerability Management

Voluntary Product Accessibility. Retina CS Enterprise Vulnerability Management Voluntary Product Accessibility Template Retina CS Enterprise Vulnerability Management The VPAT (Voluntary Product Accessibility Template) product is a tool developed by ITIC (Information Technology Industry

More information

PSA ARCHIVING GUIDE FOR EXTERNAL DATA PROVIDERS

PSA ARCHIVING GUIDE FOR EXTERNAL DATA PROVIDERS esac European Space Astronomy Centre Camino Bajo del Castillo s/n Urb. Villafranca del Castillo 28692 Villanueva de la Cañada Madrid Spain Tel. (34) 91 813 1100 Fax (34) 91 813 1139 www.esa.int PSA ARCHIVING

More information

Ball Aerospace s Open Source Command and Control System. Ryan Melton Ball Aerospace & Technologies Corp. Boulder, CO

Ball Aerospace s Open Source Command and Control System. Ryan Melton Ball Aerospace & Technologies Corp. Boulder, CO Ball Aerospace s Open Source Command and Control System Ryan Melton Ball Aerospace & Technologies Corp. Boulder, CO 8/5/2016 VISION To enable small satellite developers to easily and cost effectively command

More information

DataCollect Administrative Tools Supporting DataCollect (CMDT 3900) Version 3.0.0

DataCollect Administrative Tools Supporting DataCollect (CMDT 3900) Version 3.0.0 Administrator Manual DataCollect Administrative Tools Supporting DataCollect (CMDT 3900) Version 3.0.0 P/N 15V-090-00054-100 Revision A SKF is a registered trademark of the SKF Group. All other trademarks

More information

EUROPEAN COMMISSION Enterprise Directorate-General

EUROPEAN COMMISSION Enterprise Directorate-General EUROPEAN COMMISSION Enterprise Directorate-General Services, commerce, tourism, e-business & IDA E-business, ICT industries and services Brussels, 21 October 2003 DG ENTR-D4 M 338 - EN Standardisation

More information

Adobe Captivate 7 Voluntary Product Accessibility Template

Adobe Captivate 7 Voluntary Product Accessibility Template Adobe Captivate 7 Voluntary Product Accessibility Template The purpose of the Voluntary Product Accessibility Template is to assist Federal contracting officials in making preliminary assessments regarding

More information

Adobe Illustrator CC Voluntary Product Accessibility Template

Adobe Illustrator CC Voluntary Product Accessibility Template Adobe Illustrator CC Voluntary Product Accessibility Template The purpose of the Voluntary Product Accessibility Template is to assist Federal contracting officials in making preliminary assessments regarding

More information

Building a New Rational Web Site with Rational Suite

Building a New Rational Web Site with Rational Suite Building a New Rational Web Site with Rational Suite by Christina Howe Director of Internet Services Rational Software In April of last year, Rational Software determined that its Web site no longer measured

More information

Website software. Assessment Criteria The learner can:

Website software. Assessment Criteria The learner can: ITQ within the Business Skills suite Unit Title: Website software OCR unit number: 22B Unit reference number: R/502/4631 Level: 2 Credit value: 4 Guided learning hours: 30 Learning Outcomes 1. Create structures

More information

Monitoring and analysis of your plant systems

Monitoring and analysis of your plant systems Monitoring and analysis of your plant systems At any place at any time The portal solution JUNE5 Your mobile and desktop assistant for the perfect overview The web based analysis for your plant systems

More information

Accelerate Your Enterprise Private Cloud Initiative

Accelerate Your Enterprise Private Cloud Initiative Cisco Cloud Comprehensive, enterprise cloud enablement services help you realize a secure, agile, and highly automated infrastructure-as-a-service (IaaS) environment for cost-effective, rapid IT service

More information

Pulse Secure Policy Secure

Pulse Secure Policy Secure Policy Secure RSA SecurID Ready Implementation Guide Last Modified: November 19, 2014 Partner Information Product Information Partner Name Pulse Secure Web Site http://www.pulsesecure.net/ Product Name

More information

SYSPRO s Fluid Interface Design

SYSPRO s Fluid Interface Design SYSPRO s Fluid Interface Design Introduction The world of computer-user interaction has come a long way since the beginning of the Graphical User Interface, but still most application interfaces are not

More information

Using Tableau to report on SharePoint lists and libraries: A step by step guide

Using Tableau to report on SharePoint lists and libraries: A step by step guide Using Tableau to report on SharePoint lists and libraries: A step by step guide Tableau is one of the most renowned and accepted Business Intelligence tool for visually analyzing the data by organizations

More information

COrDeT Cannes : Use of domain engineering process to develop reusable architectures and building-blocks

COrDeT Cannes : Use of domain engineering process to develop reusable architectures and building-blocks COrDeT Cannes : Use of domain engineering process to develop reusable architectures and building-blocks G. Garcia 1, X. Olive 1, A. Pasetti 2, O. Rohlik 2, T. Vardanega 3, A.-I. Rodríguez-Rodríguez 4 A.

More information

SnapShot Use Case Scenarios

SnapShot Use Case Scenarios DREAMFACTORY SOFTWARE INC. SnapShot Use Case Scenarios DreamFactory Professional Services December 2013 This document highlights common use case scenarios of SnapShot in the salesforce.com community. It

More information

Retrofitting Ground Systems to improve Cyber Security

Retrofitting Ground Systems to improve Cyber Security Retrofitting Ground Systems to improve Cyber Security Michael Worden Security Engineer 25 February 2014 Copyright 2014 Raytheon Company. Published by The Aerospace Corporation with permission.. Customer

More information

Deliverable D8.4 Certificate Transparency Log v2.0 Production Service

Deliverable D8.4 Certificate Transparency Log v2.0 Production Service 16-11-2017 Certificate Transparency Log v2.0 Production Contractual Date: 31-10-2017 Actual Date: 16-11-2017 Grant Agreement No.: 731122 Work Package/Activity: 8/JRA2 Task Item: Task 6 Nature of Deliverable:

More information

So you haven t upgraded to MapInfo 64-bit yet?

So you haven t upgraded to MapInfo 64-bit yet? MapInfo v16 So you haven t upgraded to MapInfo 64-bit yet? This document provides a quick overview of the important features and improvements of the current 64-bit release for those customers who have

More information

THE SOFTWARE ARCHITECTURE OF THE UPGRADED ESA DRAMA SOFTWARE SUITE

THE SOFTWARE ARCHITECTURE OF THE UPGRADED ESA DRAMA SOFTWARE SUITE THE SOFTWARE ARCHITECTURE OF THE UPGRADED ESA DRAMA SOFTWARE SUITE Christopher Kebschull (1), Sven Flegel (1), Johannes Gelhaus (1), Marek Möckel (1), Vitali Braun (1), Jonas Radtke (1), Carsten Wiedemann

More information

A web application serving queries on renewable energy sources and energy management topics database, built on JSP technology

A web application serving queries on renewable energy sources and energy management topics database, built on JSP technology International Workshop on Energy Performance and Environmental 1 A web application serving queries on renewable energy sources and energy management topics database, built on JSP technology P.N. Christias

More information

escan Security Network From MicroWorld Technologies Anti-Virus & Content Security

escan Security Network From MicroWorld Technologies Anti-Virus & Content Security & Content Security Created on: 5th November, 2012 Document Version Number: ESN(14.0.0.1) From MicroWorld Technologies With the growing amount of malware in-the-wild, we realized it would be practically

More information

IBM i2 Enterprise Insight Analysis Configuring a deployment before going live. Version 2 Release 1 IBM

IBM i2 Enterprise Insight Analysis Configuring a deployment before going live. Version 2 Release 1 IBM IBM i2 Enterprise Insight Analysis Configuring a deployment before going live Version 2 Release 1 IBM Note Before using this information and the product it supports, read the information in Notices on

More information