mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2024-11-10 17:33:24 +01:00
FreemindImport return fixes
This commit is contained in:
parent
09d95c2db5
commit
4e1544db03
@ -1,3 +1,4 @@
|
||||
import xmlFormatter from 'xml-formatter';
|
||||
import Importer from './Importer';
|
||||
import Mindmap from '../model/Mindmap';
|
||||
import RelationshipModel from '../model/RelationshipModel';
|
||||
@ -19,6 +20,7 @@ import FreemindIconConverter from './FreemindIconConverter';
|
||||
import NoteModel from '../model/NoteModel';
|
||||
import FeatureModelFactory from '../model/FeatureModelFactory';
|
||||
import FeatureModel from '../model/FeatureModel';
|
||||
import XMLSerializerFactory from '../persistence/XMLSerializerFactory';
|
||||
|
||||
export default class FreemindImporter extends Importer {
|
||||
private mindmap: Mindmap;
|
||||
@ -34,7 +36,7 @@ export default class FreemindImporter extends Importer {
|
||||
this.freemindMap = map;
|
||||
}
|
||||
|
||||
import(nameMap: string, description: string): Promise<Mindmap> {
|
||||
import(nameMap: string, description: string): Promise<string> {
|
||||
this.mindmap = new Mindmap(nameMap);
|
||||
this.nodesmap = new Map<string, NodeModel>();
|
||||
this.relationship = new Array<RelationshipModel>();
|
||||
@ -69,7 +71,16 @@ export default class FreemindImporter extends Importer {
|
||||
this.mindmap.setDescription(description);
|
||||
this.mindmap.addBranch(wiseTopic);
|
||||
|
||||
return Promise.resolve(this.mindmap);
|
||||
const serialize = XMLSerializerFactory.createInstanceFromMindmap(this.mindmap);
|
||||
const domMindmap = serialize.toXML(this.mindmap);
|
||||
const xmlToString = new XMLSerializer().serializeToString(domMindmap);
|
||||
const formatXml = xmlFormatter(xmlToString, {
|
||||
indentation: ' ',
|
||||
collapseContent: true,
|
||||
lineSeparator: '\n',
|
||||
});
|
||||
|
||||
return Promise.resolve(formatXml);
|
||||
}
|
||||
|
||||
private addRelationship(mindmap: Mindmap): void {
|
||||
|
@ -1,5 +1,3 @@
|
||||
import Mindmap from '../model/Mindmap';
|
||||
|
||||
export default abstract class Importer {
|
||||
abstract import(nameMap: string, description: string): Promise<Mindmap>;
|
||||
abstract import(nameMap: string, description: string): Promise<string>;
|
||||
}
|
||||
|
@ -5,7 +5,8 @@ import path from 'path';
|
||||
import { expect } from '@jest/globals';
|
||||
import { diff } from 'jest-diff';
|
||||
import Importer from '../../../src/components/import/Importer';
|
||||
import XMLSerializerFactory from '../../../src/components/persistence/XMLSerializerFactory';
|
||||
|
||||
const saveOutputRecord = false;
|
||||
|
||||
export const parseXMLString = (xmlStr: string, mimeType: DOMParserSupportedType) => {
|
||||
const parser = new DOMParser();
|
||||
@ -38,17 +39,18 @@ export const parseXMLFile = (filePath: fs.PathOrFileDescriptor, mimeType: DOMPar
|
||||
export const exporterAssert = async (testName: string, importer: Importer) => {
|
||||
const actualMindmap = await importer.import(testName, '');
|
||||
|
||||
// Load mindmap DOM..
|
||||
// Load mindmap file..
|
||||
const mindmapPath = path.resolve(__dirname, `./expected/${testName}.wxml`);
|
||||
const mindmapDocument = parseXMLFile(mindmapPath, 'text/xml');
|
||||
const serializer = XMLSerializerFactory.createInstanceFromDocument(mindmapDocument);
|
||||
const mindmapExpect = serializer.loadFromDom(mindmapDocument, testName);
|
||||
if (saveOutputRecord) {
|
||||
fs.writeFileSync(mindmapPath, actualMindmap);
|
||||
}
|
||||
|
||||
const mindmapExpect = fs.readFileSync(mindmapPath).toString();
|
||||
|
||||
// Compare with expected...
|
||||
if (actualMindmap !== mindmapExpect) {
|
||||
const diffResult = diff(actualMindmap, mindmapExpect);
|
||||
console.log(diffResult);
|
||||
|
||||
expect(actualMindmap.toString()).toEqual(mindmapExpect.toString());
|
||||
expect(actualMindmap).toEqual(mindmapExpect);
|
||||
}
|
||||
};
|
||||
|
@ -1,21 +1,21 @@
|
||||
<map name="58984" version="tango">
|
||||
<map name="bug2" version="tango">
|
||||
<topic central="true" text="SaberMás" id="1">
|
||||
<topic position="200,-350" order="0" text="Utilización de medios de expresión artística, digitales y analógicos" shape="line" id="5"/>
|
||||
<topic position="-290,-75" order="0" text="Precio también limitado: 100-120?" shape="line" id="9"/>
|
||||
<topic position="-380,-75" order="1" text="Talleres temáticos" shape="line" id="2">
|
||||
<topic position="380,-187" order="1" text="Naturaleza" shape="line" id="13">
|
||||
<topic position="-380,-199" order="1" text="Animales, Plantas, Piedras" shape="line" id="17"/>
|
||||
<topic position="380,-187" order="0" text="Naturaleza" shape="line" id="13">
|
||||
<topic position="-380,-199" order="0" text="Animales, Plantas, Piedras" shape="line" id="17"/>
|
||||
</topic>
|
||||
<topic position="470,-162" order="2" text="Arqueología" shape="line" id="21"/>
|
||||
<topic position="560,-137" order="3" text="Energía" shape="line" id="18"/>
|
||||
<topic position="650,-112" order="4" text="Astronomía" shape="line" id="16"/>
|
||||
<topic position="740,-87" order="5" text="Arquitectura" shape="line" id="20"/>
|
||||
<topic position="830,-62" order="6" text="Cocina" shape="line" id="11"/>
|
||||
<topic position="920,-37" order="7" text="Poesía" shape="line" id="24"/>
|
||||
<topic position="1010,-12" order="8" text="Culturas Antiguas" shape="line" id="25">
|
||||
<topic position="-1010,-24" order="1" text="Egipto, Grecia, China..." shape="line" id="26"/>
|
||||
<topic position="470,-162" order="1" text="Arqueología" shape="line" id="21"/>
|
||||
<topic position="560,-137" order="2" text="Energía" shape="line" id="18"/>
|
||||
<topic position="650,-112" order="3" text="Astronomía" shape="line" id="16"/>
|
||||
<topic position="740,-87" order="4" text="Arquitectura" shape="line" id="20"/>
|
||||
<topic position="830,-62" order="5" text="Cocina" shape="line" id="11"/>
|
||||
<topic position="920,-37" order="6" text="Poesía" shape="line" id="24"/>
|
||||
<topic position="1010,-12" order="7" text="Culturas Antiguas" shape="line" id="25">
|
||||
<topic position="-1010,-24" order="0" text="Egipto, Grecia, China..." shape="line" id="26"/>
|
||||
</topic>
|
||||
<topic position="1100,13" order="9" text="Paleontología" shape="line" id="38"/>
|
||||
<topic position="1100,13" order="8" text="Paleontología" shape="line" id="38"/>
|
||||
</topic>
|
||||
<topic position="-470,-25" order="2" text="Duración limitada: 5-6 semanas" shape="line" id="6"/>
|
||||
<topic position="-560,0" order="3" text="Niños y niñas que quieren saber más" shape="line" id="7"/>
|
||||
@ -28,17 +28,12 @@
|
||||
<topic position="-1190,150" order="10" text="Actividades centradas en el contexto cercano" shape="line" id="37"/>
|
||||
<topic position="-1280,175" order="11" text="Flexibilidad en el uso de las lenguas de trabajo (inglés, castellano, esukara?)" shape="line" id="22"/>
|
||||
<topic position="-1370,200" order="12" text="Complementamos el trabajo de la escuela" shape="rounded rectagle" id="27">
|
||||
<note><![CDATA[Todos los contenidos de los talleres están relacionados con el currículo de la enseñanza básica.
|
||||
A diferencia de la práctica tradicional, pretendemos ahondar en el conocimiento partiendo de lo que realmente interesa al niño o niña,
|
||||
ayudándole a que encuentre respuesta a las preguntas que él o ella se plantea.
|
||||
|
||||
Por ese motivo, SaberMás proyecta estar al lado de los niños que necesitan una motivación extra para entender la escuela y fluir en ella,
|
||||
y también al lado de aquellos a quienes la curiosidad y las ganas de saber les lleva más allá.]]></note>
|
||||
<topic position="1370,138" order="1" text="Cada uno va a su ritmo, y cada cual pone sus límites" shape="line" id="30"/>
|
||||
<topic position="1460,163" order="2" text="Aprendemos todos de todos" shape="line" id="31"/>
|
||||
<topic position="1550,188" order="3" text="Valoramos lo que hemos aprendido" shape="line" id="33"/>
|
||||
<topic position="1640,213" order="4" text="SaberMás trabaja con, desde y para la motivación" shape="line" id="28"/>
|
||||
<topic position="1730,238" order="5" text="Trabajamos en equipo en nuestros proyectos " shape="line" id="32"/>
|
||||
<note><![CDATA[[]]></note>
|
||||
<topic position="1370,138" order="0" text="Cada uno va a su ritmo, y cada cual pone sus límites" shape="line" id="30"/>
|
||||
<topic position="1460,163" order="1" text="Aprendemos todos de todos" shape="line" id="31"/>
|
||||
<topic position="1550,188" order="2" text="Valoramos lo que hemos aprendido" shape="line" id="33"/>
|
||||
<topic position="1640,213" order="3" text="SaberMás trabaja con, desde y para la motivación" shape="line" id="28"/>
|
||||
<topic position="1730,238" order="4" text="Trabajamos en equipo en nuestros proyectos " shape="line" id="32"/>
|
||||
</topic>
|
||||
</topic>
|
||||
</map>
|
@ -1,102 +1,412 @@
|
||||
<map name="81701" version="tango">
|
||||
<topic central="true" text="Indicator needs" id="1" fontStyle=";15;;;;">
|
||||
<topic position="221,-1937" order="0" text="Which new measures" shape="rounded rectagle" id="5" fontStyle=";10;;;;">
|
||||
<note><![CDATA[Identifying new measures or investments that should be implemented.]]></note>
|
||||
<topic position="394,-1978" order="0" text="Landscape of measures" shape="rounded rectagle" id="56" bgColor="#feffff">
|
||||
<topic position="616,-1991" order="0" text="Diversity index of innovation support instruments in the region" id="45">
|
||||
<note><![CDATA[Number of different innovations policy instruments existing in the region as a share of a total number representing a full typology of instruments]]></note>
|
||||
<map name="bug3" version="tango">
|
||||
<topic central="true" text="Indicator needs" id="1">
|
||||
<topic position="200,-100" order="0" text="Which new measures" shape="rounded rectagle" id="5" fontStyle=";;;;;8;;;;">
|
||||
<note><![CDATA[[]]></note>
|
||||
<topic position="200,-50" order="0" text="Landscape of measures" shape="rounded rectagle" id="56" bgColor="#feffff">
|
||||
<topic position="200,-50" order="0" text="Diversity index of innovation support instruments in the region" shape="line" id="45">
|
||||
<note><![CDATA[[]]></note>
|
||||
</topic>
|
||||
<topic position="550,-1964" order="1" text="Existing investments in measures" id="57"/>
|
||||
<topic position="-290,-75" order="0" text="Existing investments in measures" shape="line" id="57"/>
|
||||
</topic>
|
||||
<topic position="414,-1910" order="1" text="What other regions do differently" shape="rounded rectagle" id="38" bgColor="#feffff">
|
||||
<topic position="574,-1937" order="0" text="Balance of measure index" id="46"/>
|
||||
<topic position="597,-1910" order="1" text="Profile comparison with other regions" id="77"/>
|
||||
<topic position="620,-1883" order="2" text="Number of specific types of measures per capita" id="112"/>
|
||||
<topic position="-290,-125" order="0" text="What other regions do differently" shape="rounded rectagle" id="38" bgColor="#feffff">
|
||||
<topic position="290,-162" order="0" text="Balance of measure index" shape="line" id="46"/>
|
||||
<topic position="380,-137" order="1" text="Profile comparison with other regions" shape="line" id="77"/>
|
||||
<topic position="470,-112" order="2" text="Number of specific types of measures per capita" shape="line" id="112"/>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic position="-279,-545" order="1" text="How to design & implement measures" shape="rounded rectagle" id="6" fontStyle=";10;;;;">
|
||||
<note><![CDATA[Understanding how to design the details of a particular measure and how to implement them.]]></note>
|
||||
<topic position="-493,-775" order="0" text="Good practices" shape="rounded rectagle" id="41" bgColor="#feffff"/>
|
||||
<topic position="-486,-531" order="1" text="Diagnostics" shape="rounded rectagle" id="80" bgColor="#feffff">
|
||||
<topic position="-621,-748" order="0" text="Internal business innovation factors" id="81"/>
|
||||
<topic position="-621,-518" order="1" text="Return on investment to innovation" id="359">
|
||||
<topic position="-851,-717" order="0" id="360">
|
||||
<text><![CDATA[Firm's turnover from (new to firm)
|
||||
product innovation (as a pecentage of total turnover)]]>
|
||||
</text>
|
||||
<icon id="sign_warning"/>
|
||||
</topic>
|
||||
<topic position="-920,-682" order="1" id="361">
|
||||
<text><![CDATA[Increase in the probability to innovate linked to ICT use
|
||||
(in product innovation, process innovation, organisational innovaton, marketing innovation)]]>
|
||||
</text>
|
||||
</topic>
|
||||
<topic position="-882,-647" order="2" id="362">
|
||||
<text><![CDATA[Scientific articles by type of collaboration (per capita)
|
||||
(international co-authoriship, domestic co-authoriship, single author)]]>
|
||||
</text>
|
||||
<icon id="sign_warning"/>
|
||||
</topic>
|
||||
<topic position="-876,-612" order="3" id="363">
|
||||
<text><![CDATA[Increase in a share of expenditures on technological
|
||||
innovations in the total amount of regional firms’ expenditures, %]]>
|
||||
</text>
|
||||
<icon id="sign_warning"/>
|
||||
</topic>
|
||||
<topic position="-877,-581" order="4" text="Increase in the number of innovative companies with in-house R&D" id="364">
|
||||
<icon id="sign_warning"/>
|
||||
</topic>
|
||||
<topic position="-881,-554" order="5" text="Increase in th number of innovative companies without in-house R&D" id="365"><icon id="sign_warning"/>
|
||||
<topic position="-290,-37" order="0" text="How to design & implement measures" shape="rounded rectagle" id="6" fontStyle=";;;;;8;;;;">
|
||||
<note><![CDATA[[]]></note>
|
||||
<topic position="290,-62" order="0" text="Good practices" shape="rounded rectagle" id="41" bgColor="#feffff"/>
|
||||
<topic position="380,-37" order="1" text="Diagnostics" shape="rounded rectagle" id="80" bgColor="#feffff">
|
||||
<topic position="-380,-62" order="0" text="Internal business innovation factors" shape="line" id="81"/>
|
||||
<topic position="-470,-37" order="1" text="Return on investment to innovation" shape="line" id="359">
|
||||
<topic position="470,-212" order="0" shape="line" id="360"/>
|
||||
<topic position="560,-187" order="1" shape="line" id="361"/>
|
||||
<topic position="650,-162" order="2" shape="line" id="362"/>
|
||||
<topic position="740,-137" order="3" shape="line" id="363"/>
|
||||
<topic position="830,-112" order="4" text="Increase in the number of innovative companies with in-house R&D" shape="line" id="364"/>
|
||||
<topic position="920,-87" order="5" text="Increase in th number of innovative companies without in-house R&D" shape="line" id="365"/>
|
||||
<topic position="1010,-62" order="6" shape="line" id="366"/>
|
||||
<topic position="1100,-37" order="7" shape="line" id="367"/>
|
||||
<topic position="1190,-12" order="8" shape="line" id="368"/>
|
||||
<topic position="1280,13" order="9" text="Number of international patents" shape="line" id="369"/>
|
||||
<topic position="1370,38" order="10" text="Start-up activity (as a percentage of start-up activity in the whole Federation)" shape="line" id="370"/>
|
||||
<topic position="1460,63" order="11" text="Number of innovative companies to the number of students " shape="line" id="393"/>
|
||||
<topic position="1550,88" order="12" text="Number of innovative companies to the number of researchers " shape="line" id="394"/>
|
||||
<topic position="1640,113" order="13" text="Volume of license agreements to the volume of R&D support from the regional budget " shape="line" id="400"/>
|
||||
</topic>
|
||||
<topic position="-842,-523" order="6" id="366">
|
||||
<text><![CDATA[Increase in th number of firms with
|
||||
international/national collaboration on innovation]]>
|
||||
</text>
|
||||
<icon id="sign_warning"/>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic position="-380,-12" order="1" text="How much effort: where & how" shape="rounded rectagle" id="2" fontStyle=";;;;;8;;;;">
|
||||
<note><![CDATA[[]]></note>
|
||||
<topic position="380,-37" order="0" text="The bottom-line" shape="rounded rectagle" id="3" bgColor="#feffff">
|
||||
<note><![CDATA[[]]></note>
|
||||
<topic position="-380,-87" order="0" text="Wages" shape="line" id="15">
|
||||
<topic position="380,-112" order="0" text="Dynamics of real wages" shape="line" id="12"/>
|
||||
<topic position="470,-87" order="1" text="Average wage (compare to the Fed)" shape="line" id="14"/>
|
||||
</topic>
|
||||
<topic position="-849,-488" order="7" id="367">
|
||||
<text><![CDATA[Highly cited scientific articles (as a percentage of
|
||||
highly cited scientific article in the whole Federation)]]>
|
||||
</text>
|
||||
<icon id="sign_warning"/>
|
||||
<topic position="-470,-62" order="1" text="Productivity" shape="line" id="86">
|
||||
<topic position="470,-87" order="0" text="Labor productivity" shape="line" id="190"/>
|
||||
<topic position="560,-62" order="1" text="Labor productivity growth rate" shape="line" id="191"/>
|
||||
</topic>
|
||||
<topic position="-852,-453" order="8" id="368">
|
||||
<text><![CDATA[Patents filed by public research organisations
|
||||
(as a percentafe of patent application filed under PCT)]]>
|
||||
</text>
|
||||
<icon id="sign_warning"/>
|
||||
<topic position="-560,-37" order="2" text="Jobs" shape="line" id="87">
|
||||
<topic position="560,-74" order="0" text="Share of high-productive jobs" shape="line" id="13"/>
|
||||
<topic position="650,-49" order="1" text="Share of creative industries jobs" shape="line" id="88"/>
|
||||
<topic position="740,-24" order="2" text="Uneployment rate of university graduates" shape="line" id="336"/>
|
||||
</topic>
|
||||
<topic position="-805,-422" order="9" text="Number of international patents" id="369">
|
||||
<icon id="sign_warning"/>
|
||||
</topic><topic position="-893,-395" order="10" text="Start-up activity (as a percentage of start-up activity in the whole Federation)" id="370"/><topic position="-861,-368" order="11" text="Number of innovative companies to the number of students " id="393"><icon id="sign_warning"/></topic><topic position="-867,-341" order="12" text="Number of innovative companies to the number of researchers " id="394"><icon id="sign_warning"/></topic><topic position="-916,-314" order="13" text="Volume of license agreements to the volume of R&D support from the regional budget " id="400"><icon id="sign_warning"/></topic></topic></topic></topic><topic position="255,-251" order="2" text="How much effort: where & how" shape="rounded rectagle" id="2" fontStyle=";10;;;;"><note><![CDATA[Understanding the level of effort the region needs to take to compete on innovation and where to put this effort]]></note><topic position="454,-1762" order="0" text="The bottom-line" shape="rounded rectagle" id="3" bgColor="#feffff"><note><![CDATA[This is what policy makers care about in the end]]></note><topic position="547,-1843" order="0" text="Wages" id="15"><topic position="649,-1856" order="0" text="Dynamics of real wages" id="12"/><topic position="675,-1829" order="1" text="Average wage (compare to the Fed)" id="14"/></topic><topic position="558,-1789" order="1" text="Productivity" id="86"><topic position="665,-1802" order="0" text="Labor productivity" id="190"><icon id="sign_warning"/></topic><topic position="683,-1775" order="1" text="Labor productivity growth rate" id="191"/></topic><topic position="543,-1721" order="2" text="Jobs" id="87"><topic position="659,-1748" order="0" text="Share of high-productive jobs" id="13"><icon id="sign_warning"/></topic><topic position="657,-1721" order="1" text="Share of creative industries jobs" id="88"/><topic position="683,-1694" order="2" text="Uneployment rate of university graduates" id="336"><icon id="sign_warning"/></topic></topic><topic position="549,-1667" order="3" text="Income" id="89"><topic position="674,-1667" order="0" text="GRP per capita and its growth rate" id="11"/></topic></topic><topic position="452,-143" order="1" text="Influencing factors" shape="rounded rectagle" id="8" bgColor="#feffff"><topic position="548,-1613" order="0" text="Economy" id="55"><topic position="644,-1640" order="0" text="Economic structure" id="166"/><topic position="701,-1613" order="1" text="Volume of manufacturing production per capita " id="395"/><topic position="742,-1586" order="2" text="Manufacturing value added per capita (non-natural resource-based)" id="396"/></topic><topic position="582,-1200" order="1" text="The enabling environment" id="9"><topic position="728,-1559" order="0" text="Ease of doing business" id="16"><note><![CDATA[WB]]></note><topic position="990,-1559" order="0" text="Level of administrative barriers (number and cost of administrative procedures) " id="412"><icon id="sign_warning"/></topic></topic><topic position="719,-1532" order="1" text="Competition index" id="18"><note><![CDATA[GCR]]></note></topic><topic position="695,-1349" order="2" text="Workforce" id="120"><topic position="804,-1505" order="0" text="Quality of education" id="19"><note><![CDATA[GCR]]></note><topic position="995,-1505" order="0" text="Inrease in the number of International students" id="337"><icon id="sign_warning"/></topic></topic><topic position="800,-1389" order="1" text="Quantity of education" id="121"><topic position="962,-1478" order="0" text="Participation in life-long learning" id="122"><note><![CDATA[per 100 population aged 25-64]]></note><icon id="sign_warning"/></topic><topic position="933,-1451" order="1" text="Increase in literarecy " id="333"><icon id="sign_warning"/></topic><topic position="959,-1420" order="2" id="188"><text><![CDATA[Amount of university and colleague
|
||||
students per 10 thousands population]]></text></topic><topic position="986,-1385" order="3" id="276"><text><![CDATA[Share of employees with higher education in
|
||||
the total amount of population at the working age]]></text></topic><topic position="953,-1354" order="4" text="Increase in University students" id="332"><icon id="sign_warning"/></topic><topic position="996,-1327" order="5" text="Government expenditure on General University Funding" id="351"/><topic position="1001,-1300" order="6" text="Access to training, information, and consulting support " id="409"><icon id="sign_warning"/></topic></topic><topic position="822,-1233" order="2" text="Science & engineering workforce" id="285"><topic position="1013,-1273" order="0" text="Availability of scientists and engineers" id="147"><note><![CDATA[GCR]]></note></topic><topic position="1037,-1246" order="1" text="Amount of researches per 10 thousands population" id="189"><icon id="sign_warning"/></topic><topic position="1050,-1219" order="2" text="Average wage of researches per average wage in the region" id="284"/><topic position="1066,-1192" order="3" text="Share of researchers in the total number of employees in the region" id="286"/></topic></topic><topic position="700,-1152" order="3" text="Government" id="132"><topic position="897,-1165" order="0" text="Total expenditure of general government as a percentage of GDP" id="134"/><topic position="870,-1138" order="1" text="Government expenditure on Economic Development" id="352"/></topic><topic position="710,-1030" order="4" text="Access to finance" id="342"><topic position="796,-1057" order="0" text="Deals" id="387"><topic position="981,-1111" order="0" text="Venture capital investments for start-ups as a percentage of GDP" id="345"/><topic position="980,-1084" order="1" text="Amounts of business angel, pre-seed, seed and venture financing" id="344"/><topic position="940,-1057" order="2" text="Amount of public co-funding of business R&D" id="348"/><topic position="942,-1030" order="3" text="Number of startups received venture financing " id="385"/><topic position="957,-1003" order="4" text="Number of companies received equity investments " id="386"><icon id="sign_warning"/></topic></topic><topic position="803,-963" order="1" text="Available" id="388"><topic position="1000,-976" order="0" text="Amount of matching grants available in the region for business R&D" id="347"/><topic position="917,-949" order="1" text="Number of Business Angels" id="346"/></topic></topic><topic position="682,-882" order="5" text="ICT" id="135"><topic position="751,-922" order="0" text="ICT use" id="17"><note><![CDATA[GCR]]></note></topic><topic position="775,-895" order="1" text="Broadband penetration " id="136"/><topic position="769,-868" order="2" text="Internet penetration" id="334"/><topic position="765,-841" order="3" text="Computer literacy " id="335"/></topic></topic><topic position="589,-109" order="2" text="Behavior of innovation actors" id="10"><topic position="726,-685" order="0" text="Access to markets" id="167"><topic position="810,-747" order="0" text="FDI" id="97"><topic position="880,-814" order="0" text="foreign JVs" id="96"/><topic position="990,-787" order="1" text="Inflow of foreign direct investments in high-technology industries" id="157"/><topic position="926,-760" order="2" text="Foreign direct investment jobs" id="158"><note><![CDATA[: the percentage of the workforce employed by foreign companies [%]. ]]></note></topic><topic position="977,-733" order="3" text="FDI as a share of regional non natural resource-based GRP " id="159"/><topic position="967,-706" order="4" text="Number of foreign subsidiaries operating in the region" id="160"/><topic position="936,-679" order="5" text="Share of foreign controlled enterprises" id="161"/></topic><topic position="818,-617" order="1" text="Exports" id="168"><topic position="979,-652" order="0" text="Export intensity in manufacturing and services" id="169"><note><![CDATA[: exports as a share of total output in manufacturing and services [%].]]></note><icon id="sign_warning"/></topic><topic position="986,-621" order="1" id="375"><text><![CDATA[ Share of high-technology export in the total volume
|
||||
of production of goods, works and services]]></text><icon id="sign_warning"/></topic><topic position="1006,-586" order="2" id="377"><text><![CDATA[Share of innovation production/serivces that goes for export,
|
||||
by zones (EU, US, CIS, other countries]]></text><icon id="sign_warning"/></topic></topic><topic position="932,-555" order="2" text="Share of high-technology products in government procurements" id="338"/></topic><topic position="738,-501" order="1" text="Entrepreneurship culture" id="34"><topic position="872,-528" order="0" text="Fear of failure rate" id="150"><note><![CDATA[GEM]]></note></topic><topic position="921,-501" order="1" text="Entrepreneurship as desirable career choice" id="151"><note><![CDATA[GEM]]></note></topic><topic position="915,-474" order="2" text="High Status Successful Entrepreneurship" id="152"><note><![CDATA[GEM]]></note></topic></topic><topic position="746,-372" order="2" text="Collaboration & partnerships" id="54"><topic position="991,-447" order="0" text="Number of business contracts with foreign partners for R&D collaboration" id="163"/><topic position="939,-420" order="1" text="Share of R&D financed from foreign sources" id="164"><note><![CDATA[UNESCO]]></note></topic><topic position="992,-393" order="2" text="Firms collaborating on innovation with organizations in other countries" id="165"><note><![CDATA[CIS]]></note></topic><topic position="935,-362" order="3" id="173"><text><![CDATA[Share of Innovative companies collaborating
|
||||
with research institutions on innovation]]></text></topic><topic position="961,-327" order="4" id="174"><text><![CDATA[Number of joint projects conducted by the local comapnies
|
||||
and local consulting/intermediary agencies]]></text></topic><topic position="895,-296" order="5" text="science and industry links" id="358"/></topic><topic position="734,-163" order="3" text="Technology absorption" id="115"><topic position="869,-269" order="0" text="Local supplier quality" id="116"><note><![CDATA[GCR]]></note></topic><topic position="923,-238" order="1" id="127"><text><![CDATA[Share of expenditures on technological innovations
|
||||
in the amount of sales]]></text></topic><topic position="905,-207" order="2" text="Number of purchased new technologies" id="129"><icon id="sign_warning"/></topic><topic position="908,-176" order="3" id="354"><text><![CDATA[Investments in ICT by asset (IT equipment,
|
||||
communication equipment, software)]]></text></topic><topic position="871,-145" order="4" text="Machinery and equipment" id="355"/><topic position="867,-118" order="5" text="Software and databases" id="356"/><topic position="938,-87" order="6" id="373"><text><![CDATA[Level of energy efficiency of the regional economy
|
||||
(can be measured by sectors and for the whole region)]]></text><icon id="sign_warning"/></topic><topic position="951,-56" order="7" text="Share of wastes in the total volume of production (by sector)" id="374"><icon id="sign_warning"/></topic></topic><topic position="747,92" order="4" text="Innovation activities in firms" id="123"><topic position="907,-29" order="0" text="Share of innovative companies" id="35"/><topic position="918,-2" order="1" text="Business R&D expenditures per GRP" id="128"/><topic position="912,25" order="2" text="Factors hampering innovation" id="145"><note><![CDATA[CIS, BEEPS]]></note></topic><topic position="923,52" order="3" text="Expenditure on innovation by firm size" id="350"/><topic position="930,79" order="4" text="R&D and other intellectl property products" id="357"/><topic position="941,106" order="5" text="Growth of the number of innovative companies " id="390"/><topic position="859,173" order="6" text="Outpus" id="398"><topic position="1022,133" order="0" text="Volume of new to Russian market production per GRP" id="124"/><topic position="1048,160" order="1" text="Volume of new to world market production per total production" id="376"><icon id="sign_warning"/></topic><topic position="1036,187" order="2" text="Growth of the volume of production of innovative companies " id="389"/><topic position="1007,214" order="3" text="Volume of innovation production per capita " id="397"><icon id="sign_warning"/></topic></topic></topic><topic position="739,268" order="5" text="Entrepreneurial activities" id="148"><topic position="879,241" order="0" text="New business density" id="117"><note><![CDATA[Number of new organizations per thousand working age population (WBI)]]></note></topic><topic position="918,268" order="1" text="Volume of newly registered corporations " id="119"><note><![CDATA[(as a percentage of all registered corporations)]]></note></topic><topic position="954,295" order="2" text="Share of gazelle companies in the total number of businesses" id="170"/></topic><topic position="720,411" order="6" text="R&D production" id="277"><topic position="808,384" order="0" text="Outputs" id="280"><topic position="956,326" order="0" id="279"><text><![CDATA[Amount of domestically protected intellectual
|
||||
property per 1 mln. population]]></text></topic><topic position="965,357" order="1" text="Amount of PCT-applications per 1 mln. population" id="278"/><topic position="990,384" order="2" text="Number of domestic patent applications per R&D expenditures" id="281"/><topic position="980,415" order="3" id="282"><text><![CDATA[Number of intellectual property exploited by regional
|
||||
enterprises per 1 mln. population]]></text><icon id="sign_warning"/></topic><topic position="977,446" order="4" text="Publication activity of regional scientists and researches" id="283"/></topic><topic position="804,486" order="1" text="Inputs" id="340"><topic position="953,473" order="0" text="Regional and local budget expenditures on R&D" id="341"/><topic position="917,500" order="1" text="Government R&D expenditure " id="349"/></topic></topic><topic position="737,562" order="7" text="Public sector innovation" id="415"><topic position="971,531" order="0" id="416"><text><![CDATA[Number of advanced ICT introduced in the budgetary organizations
|
||||
(regional power, municipal bodies, social and educational organizations) ]]></text></topic><topic position="866,562" order="1" text="E-government index" id="418"/><topic position="984,593" order="2" id="419"><text><![CDATA[Number of management innovations introduced in the budgetary organizations
|
||||
(regional power, municipal bodies, social and educational organizations) ]]></text></topic></topic></topic><topic position="580,989" order="3" text="Supporting organizations" id="113"><topic position="712,854" order="0" text="Research institutions" id="51"><topic position="820,632" order="0" text="Collaboration" id="171"><topic position="985,628" order="0" id="172"><text><![CDATA[Number of interactions between universities
|
||||
and large companies by university size]]></text><icon id="sign_warning"/></topic></topic><topic position="814,686" order="1" text="Resources" id="184"><topic position="944,659" order="0" text="R&D expenditures per 1 researcher" id="137"/><topic position="996,686" order="1" text="Average wage of researches per average wage in the region" id="146"/><topic position="946,713" order="2" text="High education expenditure on R&D" id="353"/></topic><topic position="829,784" order="2" text="Scientific outputs" id="185"><topic position="928,771" order="0" text="Publications" id="306"><topic position="1098,740" order="0" text="Impact of publications in the ISI database (h-index)" id="304"/><topic position="1129,767" order="1" text="Number of publications in international journals per worker per year" id="186"/><topic position="1117,798" order="2" id="303"><text><![CDATA[Publications: Academic articles in international peer-reviewed
|
||||
journals per 1,000 researchers [articles/1,000 researchers].]]></text></topic></topic><topic position="993,829" order="1" text="Number of foreign patents granted per staff" id="187"/></topic><topic position="836,856" order="3" text="Supportive measures" id="312"><topic position="1056,856" order="0" text="Diversity index of university entrepreneurship support measures" id="313"><note><![CDATA[Number of measures offered by the unversity within a preset range (NCET2 survey)]]></note></topic></topic><topic position="831,984" order="4" text="Commercialization" id="299"><topic position="927,891" order="0" text="Licensing" id="308"><topic position="1074,887" order="0" id="298"><text><![CDATA[Academic licenses: Number of licenses
|
||||
per 1,000 researchers.[licenses/researcher] ]]></text></topic></topic><topic position="927,926" order="1" text="Spin-offs" id="309"><topic position="1091,922" order="0" id="300"><text><![CDATA[Number of spin-offs with external private financing
|
||||
as a share of the institution's R&D budget]]></text></topic></topic><topic position="945,1019" order="2" text="Industry contracts" id="310"><topic position="1074,953" order="0" text="Industry revenue per staff " id="297"/><topic position="1144,988" order="1" id="305"><text><![CDATA[Foreign contracts: Number of contracts with foreign industria
|
||||
l companies at scientific and educational organizations
|
||||
per 1,000 researchers [contracts/researchers]]]></text></topic><topic position="1121,1023" order="2" text="Share of industry income from foreign companies" id="307"/><topic position="1119,1054" order="3" id="90"><text><![CDATA[Revenue raised from industry R&D as a fraction
|
||||
of total institutional budget (up to a cap)]]></text></topic><topic position="1160,1085" order="4" text="Difficulties faced by research organization in collaborating with SMEs" id="311"/></topic></topic></topic><topic position="700,1152" order="1" text="Private market" id="153"><topic position="876,1112" order="0" text="Number of innovation & IP services organizations" id="154"><note><![CDATA[ (design firms, IP consultants, etc.)]]></note></topic><topic position="893,1139" order="1" text="Number of private innovation infrastructure organizations " id="155"><note><![CDATA[(e.g. accelerators, incubators)]]></note></topic><topic position="885,1166" order="2" text="Access to certification and licensing for specific activities " id="410"/><topic position="912,1193" order="3" text="Access to suppliers of equipment, production and engineering services " id="411"/></topic><topic position="720,1287" order="2" text="Innovation infrastructure" id="114"><topic position="835,1274" order="0" text="Investments" id="327"><topic position="992,1220" order="0" text="Public investment in innovation infrastructure" id="315"/><topic position="1028,1247" order="1" text="Increase of government investment in innovation infrastructure" id="328"/><topic position="1038,1274" order="2" text=" Number of Development institution projects performed in the region" id="339"/><topic position="1005,1301" order="3" text="Volume of seed investments by the regional budget " id="391"/><topic position="1009,1328" order="4" text="Volume of venture financing from the regional budget " id="392"/></topic><topic position="895,1355" order="1" text="Volume of state support per one company " id="413"/></topic></topic></topic></topic><topic position="-275,203" order="3" text="What to do about existing measures" shape="rounded rectagle" id="4" fontStyle=";10;;;;"><note><![CDATA[Understanding which measures should be strengthened, dropped or improved, and how.]]></note><topic position="-495,-48" order="0" text="Demand for measure" shape="rounded rectagle" id="42" bgColor="#feffff"><topic position="-625,-208" order="0" text="Quality of beneficiaries" id="50"><topic position="-832,-288" order="0" text="Growth rates of employment in supported innovative firms" id="292"/><topic position="-832,-261" order="1" text="Growth rates of employment in supported innovative firms" id="293"/><topic position="-778,-234" order="2" text="Role of IP for tenants/clients" id="323"><note><![CDATA[WIPO SURVEY OF INTELLECTUAL PROPERTY SERVICES OF
|
||||
EUROPEAN TECHNOLOGY INCUBATORS]]></note></topic><topic position="-798,-207" order="3" text="Share of tenants with innovation activities" id="326"/><topic position="-824,-172" order="4" id="329"><text><![CDATA[Gazelle tenant: Share of tenants with
|
||||
annual revenue growth of more than 20%
|
||||
for each of the past four years or since formation [%]]]></text></topic><topic position="-812,-133" order="5" id="330"><text><![CDATA[Globalization of tenants: Median share of tenant
|
||||
revenues obtained from exports [%]]]></text></topic></topic><topic position="-626,-61" order="1" text="Number of beneficiaries" id="78"><topic position="-894,-102" order="0" text="Number of projects conducted by companies in cooperation with innovation infrastructure" id="383"/><topic position="-825,-75" order="1" text="Scope and intensity of use of services offered to firms" id="325"/><topic position="-910,-48" order="2" text="Number of companies supported by the infrastructure (training, information, consultations, etc.)" id="384"/><topic position="-934,-21" order="3" text="Increase in the number of business applying for public support programmes (regional, federal, international) " id="401"/></topic><topic position="-613,45" order="2" text="Degree of access" id="182"><topic position="-726,14" order="0" text="Level of awareness" id="52"><topic position="-900,10" order="0" id="181"><text><![CDATA[Perception (opinion poll) of business managers
|
||||
regarding public support programmes]]></text></topic></topic><topic position="-714,49" order="1" text="Transparency" id="53"><topic position="-908,45" order="0" id="175"><text><![CDATA[Perception of business managers in terms
|
||||
of level of transparency of support measures in the region]]></text><icon id="sign_warning"/></topic></topic><topic position="-814,80" order="2" id="183"><text><![CDATA[Description by regional business managers of the way the
|
||||
select and apply for regional and federal support schemes]]></text><icon id="sign_warning"/></topic></topic><topic position="-621,152" order="3" text="Number of applicants" id="176"><topic position="-857,111" order="0" text="Increase in the number of business applying for public support programmes" id="177"/><topic position="-826,138" order="1" text="Number of companies that know about a particular program" id="178"/><topic position="-850,165" order="2" text="Increase in the number of start-ups applying to receive VC investments" id="179"/><topic position="-853,192" order="3" text="Increase in the number of start-ups applying for a place in the incubators" id="180"/></topic></topic><topic position="-491,233" order="1" text="Inputs of measures" shape="rounded rectagle" id="109" bgColor="#feffff"><topic position="-606,219" order="0" text="Qualified staff" id="110"><note><![CDATA[JL: not sure how this would be measured]]></note></topic><topic position="-616,246" order="1" text="Budget per beneficiary" id="111"/></topic><topic position="-502,341" order="2" text="Performance of measure" shape="rounded rectagle" id="48" bgColor="#feffff"><topic position="-649,300" order="0" text="Implementation of measure" shape="line" id="47" bgColor="#feffff"><topic position="-790,273" order="0" text="Target vs. actual KPIs" id="106"/><topic position="-811,300" order="1" text="Intermediate outputs per budget" id="287"/><topic position="-794,327" order="2" text="Qualification of staff" id="372"><icon id="sign_warning"/></topic></topic><topic position="-630,381" order="1" text="Output of measure" id="58"><topic position="-740,354" order="0" text="Opinion surveys" id="101"><topic position="-862,354" order="0" text="Opinions of beneficiaries" id="102"/></topic><topic position="-734,395" order="1" text="Hard metrics" id="103"><topic position="-894,381" order="0" text="Output per headcount (e.g. staff, researchers)" id="289"/><topic position="-842,408" order="1" text="Productivity analysis" id="288"/></topic></topic></topic><topic position="-491,565" order="3" text="Impact of measure" shape="rounded rectagle" id="49" bgColor="#feffff"><topic position="-601,449" order="0" text="Opinion surveys" id="79"><topic position="-762,435" order="0" text="Perception of support impact (opinion polls)" id="294"/><topic position="-828,462" order="1" text="Perception of the activity of regional government by the regional companies " id="404"/></topic><topic position="-595,543" order="1" text="Hard metrics" id="104"><topic position="-764,489" order="0" text="Increase in number of small innovation enterprises " id="331"/><topic position="-842,516" order="1" text="Growth of the total volume of salary in the supported companies (excluding inflation) " id="402"><icon id="sign_warning"/></topic><topic position="-817,543" order="2" text="Growth of the volume of regional taxes paid by the supported companies " id="403"><icon id="sign_warning"/></topic><topic position="-783,570" order="3" text="Growth of the volume of export at the supported companies " id="405"/><topic position="-809,597" order="4" text="Number of new products/projects at the companies that received support " id="406"/></topic><topic position="-608,624" order="2" text="Impact assessment " id="290"/><topic position="-663,655" order="3" id="291"><text><![CDATA[Average leverage of 1rub (there would be
|
||||
several programs with different leverage)]]></text><icon id="sign_warning"/></topic><topic position="-687,690" order="4" id="296"><text><![CDATA[Volume of attracted money per one ruble
|
||||
of regional budget expenditures on innovation projects]]></text><icon id="sign_warning"/></topic></topic></topic><topic position="288,1687" order="4" text="What investments in innovative projects" shape="rounded rectagle" id="7" fontStyle=";10;;;;"><note><![CDATA[Understanding what investments should be made in innovative projects.]]></note><topic position="518,1673" order="0" text="Competitive niches" shape="rounded rectagle" id="61" bgColor="#feffff"><topic position="632,1521" order="0" text="Clusters behavior" id="59"><topic position="750,1382" order="0" text="Cluster EU star rating" id="60"/><topic position="809,1409" order="1" text="Share of value added of cluster enterprises in GRP" id="318"/><topic position="843,1436" order="2" text="Share of cluster products in the relevant world market segment " id="320"><icon id="sign_warning"/></topic><topic position="803,1463" order="3" text="Share of export in cluster total volume of sales" id="321"/><topic position="830,1490" order="4" text="Growth of the volume of production in the cluster companies" id="379"/><topic position="830,1521" order="5" id="380"><text><![CDATA[Growth of the volume of production in the cluster companies
|
||||
to the volume of state support for the cluster]]></text></topic><topic position="830,1552" order="6" text="Growth of the volume of innovation production in the cluster" id="381"/><topic position="887,1579" order="7" text="Share of export in cluster total volume of sales (by zones: US, EU, CIS, other countries) " id="407"/><topic position="741,1633" order="8" text="Internal behavior" id="408"><topic position="870,1606" order="0" text="Median wage in the cluster" id="319"/><topic position="904,1633" order="1" text="Growth of the volume of R&D in the cluster" id="382"/><topic position="857,1660" order="2" text="Cluster collaboration" id="108"/></topic></topic><topic position="606,1700" order="1" text="R&D" id="66"><topic position="678,1687" order="0" text="Patent map" id="65"/><topic position="689,1714" order="1" text="Publications map" id="371"/></topic><topic position="613,1795" order="2" text="Industry" id="67"><topic position="688,1741" order="0" text="FDI map" id="63"/><topic position="695,1768" order="1" text="Gazelle map" id="62"/><topic position="792,1795" order="2" text="Business R&D expenditures as a share of revenues by sector" id="131"/><topic position="765,1822" order="3" text="Share of regional products in the world market" id="378"/><topic position="770,1849" order="4" text="Expenditure on innovation by firm size, by sector " id="414"/></topic><topic position="631,1920" order="3" text="Entrepreneurship" id="72"><topic position="730,1876" order="0" text="Startup map" id="73"/><topic position="755,1903" order="1" text="Venture investment map" id="74"/><topic position="794,1947" order="2" text="Attractiveness to public competitive funding" id="317"><topic position="1004,1930" order="0" text="Fed and regional seed fund investments" id="316"/><topic position="1023,1961" order="1" id="314"><text><![CDATA[FASIE projects: Number of projects supported
|
||||
by the FASIE per 1,000 workers [awards/worker] ]]></text></topic></topic></topic></topic><topic position="545,1992" order="1" text="Competitiveness support factors" shape="rounded rectagle" id="64" bgColor="#ffffff"><topic position="716,1992" order="0" text="Private investment in innovation" id="68"/></topic></topic><topic position="-214,749" order="5" text="How to improve image" shape="rounded rectagle" id="69" fontStyle=";10;;;;" bgColor="#e0e5ef"><topic position="-351,735" order="0" text="Rankings" shape="rounded rectagle" id="75" bgColor="#feffff"><topic position="-443,722" order="0" text="macro indicators" id="70"/><topic position="-441,749" order="1" text="meso-indicators" id="71"/></topic><topic position="-395,776" order="1" text="Innovation investment climate" shape="rounded rectagle" id="76" bgColor="#feffff"/></topic></topic><relationship srcTopicId="9" destTopicId="76" lineType="3" srcCtrlPoint="45,123" destCtrlPoint="229,42" endArrow="false" startArrow="true"/><relationship srcTopicId="4" destTopicId="114" lineType="3" srcCtrlPoint="-58,271" destCtrlPoint="-52,-241" endArrow="false" startArrow="true"/></map>
|
||||
<topic position="-650,-12" order="3" text="Income" shape="line" id="89">
|
||||
<topic position="650,-24" order="0" text="GRP per capita and its growth rate" shape="line" id="11"/>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic position="470,-12" order="1" text="Influencing factors" shape="rounded rectagle" id="8" bgColor="#feffff">
|
||||
<topic position="-470,-62" order="0" text="Economy" shape="line" id="55">
|
||||
<topic position="470,-99" order="0" text="Economic structure" shape="line" id="166"/>
|
||||
<topic position="560,-74" order="1" text="Volume of manufacturing production per capita " shape="line" id="395"/>
|
||||
<topic position="650,-49" order="2" text="Manufacturing value added per capita (non-natural resource-based)" shape="line" id="396"/>
|
||||
</topic>
|
||||
<topic position="-560,-37" order="1" text="The enabling environment" shape="line" id="9">
|
||||
<topic position="560,-112" order="0" text="Ease of doing business" shape="line" id="16">
|
||||
<note><![CDATA[[]]></note>
|
||||
<topic position="-560,-124" order="0" text="Level of administrative barriers (number and cost of administrative procedures) " shape="line" id="412"/>
|
||||
</topic>
|
||||
<topic position="650,-87" order="1" text="Competition index" shape="line" id="18">
|
||||
<note><![CDATA[[]]></note>
|
||||
</topic>
|
||||
<topic position="740,-62" order="2" text="Workforce" shape="line" id="120">
|
||||
<topic position="-740,-99" order="0" text="Quality of education" shape="line" id="19">
|
||||
<note><![CDATA[[]]></note>
|
||||
<topic position="740,-111" order="0" text="Inrease in the number of International students" shape="line" id="337"/>
|
||||
</topic>
|
||||
<topic position="-830,-74" order="1" text="Quantity of education" shape="line" id="121">
|
||||
<topic position="830,-161" order="0" text="Participation in life-long learning" shape="line" id="122">
|
||||
<note><![CDATA[[]]></note>
|
||||
</topic>
|
||||
<topic position="920,-136" order="1" text="Increase in literarecy " shape="line" id="333"/>
|
||||
<topic position="1010,-111" order="2" shape="line" id="188"/>
|
||||
<topic position="1100,-86" order="3" shape="line" id="276"/>
|
||||
<topic position="1190,-61" order="4" text="Increase in University students" shape="line" id="332"/>
|
||||
<topic position="1280,-36" order="5" text="Government expenditure on General University Funding" shape="line" id="351"/>
|
||||
<topic position="1370,-11" order="6" text="Access to training, information, and consulting support " shape="line" id="409"/>
|
||||
</topic>
|
||||
<topic position="-920,-49" order="2" text="Science & engineering workforce" shape="line" id="285">
|
||||
<topic position="920,-99" order="0" text="Availability of scientists and engineers" shape="line" id="147">
|
||||
<note><![CDATA[[]]></note>
|
||||
</topic>
|
||||
<topic position="1010,-74" order="1" text="Amount of researches per 10 thousands population" shape="line" id="189"/>
|
||||
<topic position="1100,-49" order="2" text="Average wage of researches per average wage in the region" shape="line" id="284"/>
|
||||
<topic position="1190,-24" order="3" text="Share of researchers in the total number of employees in the region" shape="line" id="286"/>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic position="830,-37" order="3" text="Government" shape="line" id="132">
|
||||
<topic position="-830,-62" order="0" text="Total expenditure of general government as a percentage of GDP" shape="line" id="134"/>
|
||||
<topic position="-920,-37" order="1" text="Government expenditure on Economic Development" shape="line" id="352"/>
|
||||
</topic>
|
||||
<topic position="920,-12" order="4" text="Access to finance" shape="line" id="342">
|
||||
<topic position="-920,-37" order="0" text="Deals" shape="line" id="387">
|
||||
<topic position="920,-99" order="0" text="Venture capital investments for start-ups as a percentage of GDP" shape="line" id="345"/>
|
||||
<topic position="1010,-74" order="1" text="Amounts of business angel, pre-seed, seed and venture financing" shape="line" id="344"/>
|
||||
<topic position="1100,-49" order="2" text="Amount of public co-funding of business R&D" shape="line" id="348"/>
|
||||
<topic position="1190,-24" order="3" text="Number of startups received venture financing " shape="line" id="385"/>
|
||||
<topic position="1280,1" order="4" text="Number of companies received equity investments " shape="line" id="386"/>
|
||||
</topic>
|
||||
<topic position="-1010,-12" order="1" text="Available" shape="line" id="388">
|
||||
<topic position="1010,-37" order="0" text="Amount of matching grants available in the region for business R&D" shape="line" id="347"/>
|
||||
<topic position="1100,-12" order="1" text="Number of Business Angels" shape="line" id="346"/>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic position="1010,13" order="5" text="ICT" shape="line" id="135">
|
||||
<topic position="-1010,-37" order="0" text="ICT use" shape="line" id="17">
|
||||
<note><![CDATA[[]]></note>
|
||||
</topic>
|
||||
<topic position="-1100,-12" order="1" text="Broadband penetration " shape="line" id="136"/>
|
||||
<topic position="-1190,13" order="2" text="Internet penetration" shape="line" id="334"/>
|
||||
<topic position="-1280,38" order="3" text="Computer literacy " shape="line" id="335"/>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic position="-650,-12" order="2" text="Behavior of innovation actors" shape="line" id="10">
|
||||
<topic position="650,-112" order="0" text="Access to markets" shape="line" id="167">
|
||||
<topic position="-650,-149" order="0" text="FDI" shape="line" id="97">
|
||||
<topic position="650,-224" order="0" text="foreign JVs" shape="line" id="96"/>
|
||||
<topic position="740,-199" order="1" text="Inflow of foreign direct investments in high-technology industries" shape="line" id="157"/>
|
||||
<topic position="830,-174" order="2" text="Foreign direct investment jobs" shape="line" id="158">
|
||||
<note><![CDATA[[]]></note>
|
||||
</topic>
|
||||
<topic position="920,-149" order="3" text="FDI as a share of regional non natural resource-based GRP " shape="line" id="159"/>
|
||||
<topic position="1010,-124" order="4" text="Number of foreign subsidiaries operating in the region" shape="line" id="160"/>
|
||||
<topic position="1100,-99" order="5" text="Share of foreign controlled enterprises" shape="line" id="161"/>
|
||||
</topic>
|
||||
<topic position="-740,-124" order="1" text="Exports" shape="line" id="168">
|
||||
<topic position="740,-161" order="0" text="Export intensity in manufacturing and services" shape="line" id="169">
|
||||
<note><![CDATA[[]]></note>
|
||||
</topic>
|
||||
<topic position="830,-136" order="1" shape="line" id="375"/>
|
||||
<topic position="920,-111" order="2" shape="line" id="377"/>
|
||||
</topic>
|
||||
<topic position="-830,-99" order="2" text="Share of high-technology products in government procurements" shape="line" id="338"/>
|
||||
</topic>
|
||||
<topic position="740,-87" order="1" text="Entrepreneurship culture" shape="line" id="34">
|
||||
<topic position="-740,-124" order="0" text="Fear of failure rate" shape="line" id="150">
|
||||
<note><![CDATA[[]]></note>
|
||||
</topic>
|
||||
<topic position="-830,-99" order="1" text="Entrepreneurship as desirable career choice" shape="line" id="151">
|
||||
<note><![CDATA[[]]></note>
|
||||
</topic>
|
||||
<topic position="-920,-74" order="2" text="High Status Successful Entrepreneurship" shape="line" id="152">
|
||||
<note><![CDATA[[]]></note>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic position="830,-62" order="2" text="Collaboration & partnerships" shape="line" id="54">
|
||||
<topic position="-830,-137" order="0" text="Number of business contracts with foreign partners for R&D collaboration" shape="line" id="163"/>
|
||||
<topic position="-920,-112" order="1" text="Share of R&D financed from foreign sources" shape="line" id="164">
|
||||
<note><![CDATA[[]]></note>
|
||||
</topic>
|
||||
<topic position="-1010,-87" order="2" text="Firms collaborating on innovation with organizations in other countries" shape="line" id="165">
|
||||
<note><![CDATA[[]]></note>
|
||||
</topic>
|
||||
<topic position="-1100,-62" order="3" shape="line" id="173"/>
|
||||
<topic position="-1190,-37" order="4" shape="line" id="174"/>
|
||||
<topic position="-1280,-12" order="5" text="science and industry links" shape="line" id="358"/>
|
||||
</topic>
|
||||
<topic position="920,-37" order="3" text="Technology absorption" shape="line" id="115">
|
||||
<topic position="-920,-137" order="0" text="Local supplier quality" shape="line" id="116">
|
||||
<note><![CDATA[[]]></note>
|
||||
</topic>
|
||||
<topic position="-1010,-112" order="1" shape="line" id="127"/>
|
||||
<topic position="-1100,-87" order="2" text="Number of purchased new technologies" shape="line" id="129"/>
|
||||
<topic position="-1190,-62" order="3" shape="line" id="354"/>
|
||||
<topic position="-1280,-37" order="4" text="Machinery and equipment" shape="line" id="355"/>
|
||||
<topic position="-1370,-12" order="5" text="Software and databases" shape="line" id="356"/>
|
||||
<topic position="-1460,13" order="6" shape="line" id="373"/>
|
||||
<topic position="-1550,38" order="7" text="Share of wastes in the total volume of production (by sector)" shape="line" id="374"/>
|
||||
</topic>
|
||||
<topic position="1010,-12" order="4" text="Innovation activities in firms" shape="line" id="123">
|
||||
<topic position="-1010,-99" order="0" text="Share of innovative companies" shape="line" id="35"/>
|
||||
<topic position="-1100,-74" order="1" text="Business R&D expenditures per GRP" shape="line" id="128"/>
|
||||
<topic position="-1190,-49" order="2" text="Factors hampering innovation" shape="line" id="145">
|
||||
<note><![CDATA[[]]></note>
|
||||
</topic>
|
||||
<topic position="-1280,-24" order="3" text="Expenditure on innovation by firm size" shape="line" id="350"/>
|
||||
<topic position="-1370,1" order="4" text="R&D and other intellectl property products" shape="line" id="357"/>
|
||||
<topic position="-1460,26" order="5" text="Growth of the number of innovative companies " shape="line" id="390"/>
|
||||
<topic position="-1550,51" order="6" text="Outpus" shape="line" id="398">
|
||||
<topic position="1550,1" order="0" text="Volume of new to Russian market production per GRP" shape="line" id="124"/>
|
||||
<topic position="1640,26" order="1" text="Volume of new to world market production per total production" shape="line" id="376"/>
|
||||
<topic position="1730,51" order="2" text="Growth of the volume of production of innovative companies " shape="line" id="389"/>
|
||||
<topic position="1820,76" order="3" text="Volume of innovation production per capita " shape="line" id="397"/>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic position="1100,13" order="5" text="Entrepreneurial activities" shape="line" id="148">
|
||||
<topic position="-1100,-24" order="0" text="New business density" shape="line" id="117">
|
||||
<note><![CDATA[[]]></note>
|
||||
</topic>
|
||||
<topic position="-1190,1" order="1" text="Volume of newly registered corporations " shape="line" id="119">
|
||||
<note><![CDATA[[]]></note>
|
||||
</topic>
|
||||
<topic position="-1280,26" order="2" text="Share of gazelle companies in the total number of businesses" shape="line" id="170"/>
|
||||
</topic>
|
||||
<topic position="1190,38" order="6" text="R&D production" shape="line" id="277">
|
||||
<topic position="-1190,13" order="0" text="Outputs" shape="line" id="280">
|
||||
<topic position="1190,-49" order="0" shape="line" id="279"/>
|
||||
<topic position="1280,-24" order="1" text="Amount of PCT-applications per 1 mln. population" shape="line" id="278"/>
|
||||
<topic position="1370,1" order="2" text="Number of domestic patent applications per R&D expenditures" shape="line" id="281"/>
|
||||
<topic position="1460,26" order="3" shape="line" id="282"/>
|
||||
<topic position="1550,51" order="4" text="Publication activity of regional scientists and researches" shape="line" id="283"/>
|
||||
</topic>
|
||||
<topic position="-1280,38" order="1" text="Inputs" shape="line" id="340">
|
||||
<topic position="1280,13" order="0" text="Regional and local budget expenditures on R&D" shape="line" id="341"/>
|
||||
<topic position="1370,38" order="1" text="Government R&D expenditure " shape="line" id="349"/>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic position="1280,63" order="7" text="Public sector innovation" shape="line" id="415">
|
||||
<topic position="-1280,26" order="0" shape="line" id="416"/>
|
||||
<topic position="-1370,51" order="1" text="E-government index" shape="line" id="418"/>
|
||||
<topic position="-1460,76" order="2" shape="line" id="419"/>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic position="-740,13" order="3" text="Supporting organizations" shape="line" id="113">
|
||||
<topic position="740,-24" order="0" text="Research institutions" shape="line" id="51">
|
||||
<topic position="-740,-86" order="0" text="Collaboration" shape="line" id="171">
|
||||
<topic position="740,-98" order="0" shape="line" id="172"/>
|
||||
</topic>
|
||||
<topic position="-830,-61" order="1" text="Resources" shape="line" id="184">
|
||||
<topic position="830,-98" order="0" text="R&D expenditures per 1 researcher" shape="line" id="137"/>
|
||||
<topic position="920,-73" order="1" text="Average wage of researches per average wage in the region" shape="line" id="146"/>
|
||||
<topic position="1010,-48" order="2" text="High education expenditure on R&D" shape="line" id="353"/>
|
||||
</topic>
|
||||
<topic position="-920,-36" order="2" text="Scientific outputs" shape="line" id="185">
|
||||
<topic position="920,-61" order="0" text="Publications" shape="line" id="306">
|
||||
<topic position="-920,-98" order="0" text="Impact of publications in the ISI database (h-index)" shape="line" id="304"/>
|
||||
<topic position="-1010,-73" order="1" text="Number of publications in international journals per worker per year" shape="line" id="186"/>
|
||||
<topic position="-1100,-48" order="2" shape="line" id="303"/>
|
||||
</topic>
|
||||
<topic position="1010,-36" order="1" text="Number of foreign patents granted per staff" shape="line" id="187"/>
|
||||
</topic>
|
||||
<topic position="-1010,-11" order="3" text="Supportive measures" shape="line" id="312">
|
||||
<topic position="1010,-23" order="0" text="Diversity index of university entrepreneurship support measures" shape="line" id="313">
|
||||
<note><![CDATA[[]]></note>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic position="-1100,14" order="4" text="Commercialization" shape="line" id="299">
|
||||
<topic position="1100,-23" order="0" text="Licensing" shape="line" id="308">
|
||||
<topic position="-1100,-35" order="0" shape="line" id="298"/>
|
||||
</topic>
|
||||
<topic position="1190,2" order="1" text="Spin-offs" shape="line" id="309">
|
||||
<topic position="-1190,-10" order="0" shape="line" id="300"/>
|
||||
</topic>
|
||||
<topic position="1280,27" order="2" text="Industry contracts" shape="line" id="310">
|
||||
<topic position="-1280,-35" order="0" text="Industry revenue per staff " shape="line" id="297"/>
|
||||
<topic position="-1370,-10" order="1" shape="line" id="305"/>
|
||||
<topic position="-1460,15" order="2" text="Share of industry income from foreign companies" shape="line" id="307"/>
|
||||
<topic position="-1550,40" order="3" shape="line" id="90"/>
|
||||
<topic position="-1640,65" order="4" text="Difficulties faced by research organization in collaborating with SMEs" shape="line" id="311"/>
|
||||
</topic>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic position="830,1" order="1" text="Private market" shape="line" id="153">
|
||||
<topic position="-830,-49" order="0" text="Number of innovation & IP services organizations" shape="line" id="154">
|
||||
<note><![CDATA[[]]></note>
|
||||
</topic>
|
||||
<topic position="-920,-24" order="1" text="Number of private innovation infrastructure organizations " shape="line" id="155">
|
||||
<note><![CDATA[[]]></note>
|
||||
</topic>
|
||||
<topic position="-1010,1" order="2" text="Access to certification and licensing for specific activities " shape="line" id="410"/>
|
||||
<topic position="-1100,26" order="3" text="Access to suppliers of equipment, production and engineering services " shape="line" id="411"/>
|
||||
</topic>
|
||||
<topic position="920,26" order="2" text="Innovation infrastructure" shape="line" id="114">
|
||||
<topic position="-920,1" order="0" text="Investments" shape="line" id="327">
|
||||
<topic position="920,-61" order="0" text="Public investment in innovation infrastructure" shape="line" id="315"/>
|
||||
<topic position="1010,-36" order="1" text="Increase of government investment in innovation infrastructure" shape="line" id="328"/>
|
||||
<topic position="1100,-11" order="2" text=" Number of Development institution projects performed in the region" shape="line" id="339"/>
|
||||
<topic position="1190,14" order="3" text="Volume of seed investments by the regional budget " shape="line" id="391"/>
|
||||
<topic position="1280,39" order="4" text="Volume of venture financing from the regional budget " shape="line" id="392"/>
|
||||
</topic>
|
||||
<topic position="-1010,26" order="1" text="Volume of state support per one company " shape="line" id="413"/>
|
||||
</topic>
|
||||
</topic>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic position="-470,13" order="2" text="What to do about existing measures" shape="rounded rectagle" id="4" fontStyle=";;;;;8;;;;">
|
||||
<note><![CDATA[[]]></note>
|
||||
<topic position="470,-37" order="0" text="Demand for measure" shape="rounded rectagle" id="42" bgColor="#feffff">
|
||||
<topic position="-470,-87" order="0" text="Quality of beneficiaries" shape="line" id="50">
|
||||
<topic position="470,-162" order="0" text="Growth rates of employment in supported innovative firms" shape="line" id="292"/>
|
||||
<topic position="560,-137" order="1" text="Growth rates of employment in supported innovative firms" shape="line" id="293"/>
|
||||
<topic position="650,-112" order="2" text="Role of IP for tenants/clients" shape="line" id="323">
|
||||
<note><![CDATA[[]]></note>
|
||||
</topic>
|
||||
<topic position="740,-87" order="3" text="Share of tenants with innovation activities" shape="line" id="326"/>
|
||||
<topic position="830,-62" order="4" shape="line" id="329"/>
|
||||
<topic position="920,-37" order="5" shape="line" id="330"/>
|
||||
</topic>
|
||||
<topic position="-560,-62" order="1" text="Number of beneficiaries" shape="line" id="78">
|
||||
<topic position="560,-112" order="0" text="Number of projects conducted by companies in cooperation with innovation infrastructure" shape="line" id="383"/>
|
||||
<topic position="650,-87" order="1" text="Scope and intensity of use of services offered to firms" shape="line" id="325"/>
|
||||
<topic position="740,-62" order="2" text="Number of companies supported by the infrastructure (training, information, consultations, etc.)" shape="line" id="384"/>
|
||||
<topic position="830,-37" order="3" text="Increase in the number of business applying for public support programmes (regional, federal, international) " shape="line" id="401"/>
|
||||
</topic>
|
||||
<topic position="-650,-37" order="2" text="Degree of access" shape="line" id="182">
|
||||
<topic position="650,-74" order="0" text="Level of awareness" shape="line" id="52">
|
||||
<topic position="-650,-86" order="0" shape="line" id="181"/>
|
||||
</topic>
|
||||
<topic position="740,-49" order="1" text="Transparency" shape="line" id="53">
|
||||
<topic position="-740,-61" order="0" shape="line" id="175"/>
|
||||
</topic>
|
||||
<topic position="830,-24" order="2" shape="line" id="183"/>
|
||||
</topic>
|
||||
<topic position="-740,-12" order="3" text="Number of applicants" shape="line" id="176">
|
||||
<topic position="740,-62" order="0" text="Increase in the number of business applying for public support programmes" shape="line" id="177"/>
|
||||
<topic position="830,-37" order="1" text="Number of companies that know about a particular program" shape="line" id="178"/>
|
||||
<topic position="920,-12" order="2" text="Increase in the number of start-ups applying to receive VC investments" shape="line" id="179"/>
|
||||
<topic position="1010,13" order="3" text="Increase in the number of start-ups applying for a place in the incubators" shape="line" id="180"/>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic position="560,-12" order="1" text="Inputs of measures" shape="rounded rectagle" id="109" bgColor="#feffff">
|
||||
<topic position="-560,-37" order="0" text="Qualified staff" shape="line" id="110">
|
||||
<note><![CDATA[[]]></note>
|
||||
</topic>
|
||||
<topic position="-650,-12" order="1" text="Budget per beneficiary" shape="line" id="111"/>
|
||||
</topic>
|
||||
<topic position="650,13" order="2" text="Performance of measure" shape="rounded rectagle" id="48" bgColor="#feffff">
|
||||
<topic position="-650,-12" order="0" text="Implementation of measure" shape="line" id="47">
|
||||
<topic position="650,-49" order="0" text="Target vs. actual KPIs" shape="line" id="106"/>
|
||||
<topic position="740,-24" order="1" text="Intermediate outputs per budget" shape="line" id="287"/>
|
||||
<topic position="830,1" order="2" text="Qualification of staff" shape="line" id="372"/>
|
||||
</topic>
|
||||
<topic position="-740,13" order="1" text="Output of measure" shape="line" id="58">
|
||||
<topic position="740,-12" order="0" text="Opinion surveys" shape="line" id="101">
|
||||
<topic position="-740,-24" order="0" text="Opinions of beneficiaries" shape="line" id="102"/>
|
||||
</topic>
|
||||
<topic position="830,13" order="1" text="Hard metrics" shape="line" id="103">
|
||||
<topic position="-830,-12" order="0" text="Output per headcount (e.g. staff, researchers)" shape="line" id="289"/>
|
||||
<topic position="-920,13" order="1" text="Productivity analysis" shape="line" id="288"/>
|
||||
</topic>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic position="740,38" order="3" text="Impact of measure" shape="rounded rectagle" id="49" bgColor="#feffff">
|
||||
<topic position="-740,-24" order="0" text="Opinion surveys" shape="line" id="79">
|
||||
<topic position="740,-49" order="0" text="Perception of support impact (opinion polls)" shape="line" id="294"/>
|
||||
<topic position="830,-24" order="1" text="Perception of the activity of regional government by the regional companies " shape="line" id="404"/>
|
||||
</topic>
|
||||
<topic position="-830,1" order="1" text="Hard metrics" shape="line" id="104">
|
||||
<topic position="830,-61" order="0" text="Increase in number of small innovation enterprises " shape="line" id="331"/>
|
||||
<topic position="920,-36" order="1" text="Growth of the total volume of salary in the supported companies (excluding inflation) " shape="line" id="402"/>
|
||||
<topic position="1010,-11" order="2" text="Growth of the volume of regional taxes paid by the supported companies " shape="line" id="403"/>
|
||||
<topic position="1100,14" order="3" text="Growth of the volume of export at the supported companies " shape="line" id="405"/>
|
||||
<topic position="1190,39" order="4" text="Number of new products/projects at the companies that received support " shape="line" id="406"/>
|
||||
</topic>
|
||||
<topic position="-920,26" order="2" text="Impact assessment " shape="line" id="290"/>
|
||||
<topic position="-1010,51" order="3" shape="line" id="291"/>
|
||||
<topic position="-1100,76" order="4" shape="line" id="296"/>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic position="-560,38" order="3" text="What investments in innovative projects" shape="rounded rectagle" id="7" fontStyle=";;;;;8;;;;">
|
||||
<note><![CDATA[[]]></note>
|
||||
<topic position="560,13" order="0" text="Competitive niches" shape="rounded rectagle" id="61" bgColor="#feffff">
|
||||
<topic position="-560,-37" order="0" text="Clusters behavior" shape="line" id="59">
|
||||
<topic position="560,-149" order="0" text="Cluster EU star rating" shape="line" id="60"/>
|
||||
<topic position="650,-124" order="1" text="Share of value added of cluster enterprises in GRP" shape="line" id="318"/>
|
||||
<topic position="740,-99" order="2" text="Share of cluster products in the relevant world market segment " shape="line" id="320"/>
|
||||
<topic position="830,-74" order="3" text="Share of export in cluster total volume of sales" shape="line" id="321"/>
|
||||
<topic position="920,-49" order="4" text="Growth of the volume of production in the cluster companies" shape="line" id="379"/>
|
||||
<topic position="1010,-24" order="5" shape="line" id="380"/>
|
||||
<topic position="1100,1" order="6" text="Growth of the volume of innovation production in the cluster" shape="line" id="381"/>
|
||||
<topic position="1190,26" order="7" text="Share of export in cluster total volume of sales (by zones: US, EU, CIS, other countries) " shape="line" id="407"/>
|
||||
<topic position="1280,51" order="8" text="Internal behavior" shape="line" id="408">
|
||||
<topic position="-1280,14" order="0" text="Median wage in the cluster" shape="line" id="319"/>
|
||||
<topic position="-1370,39" order="1" text="Growth of the volume of R&D in the cluster" shape="line" id="382"/>
|
||||
<topic position="-1460,64" order="2" text="Cluster collaboration" shape="line" id="108"/>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic position="-650,-12" order="1" text="R&D" shape="line" id="66">
|
||||
<topic position="650,-37" order="0" text="Patent map" shape="line" id="65"/>
|
||||
<topic position="740,-12" order="1" text="Publications map" shape="line" id="371"/>
|
||||
</topic>
|
||||
<topic position="-740,13" order="2" text="Industry" shape="line" id="67">
|
||||
<topic position="740,-49" order="0" text="FDI map" shape="line" id="63"/>
|
||||
<topic position="830,-24" order="1" text="Gazelle map" shape="line" id="62"/>
|
||||
<topic position="920,1" order="2" text="Business R&D expenditures as a share of revenues by sector" shape="line" id="131"/>
|
||||
<topic position="1010,26" order="3" text="Share of regional products in the world market" shape="line" id="378"/>
|
||||
<topic position="1100,51" order="4" text="Expenditure on innovation by firm size, by sector " shape="line" id="414"/>
|
||||
</topic>
|
||||
<topic position="-830,38" order="3" text="Entrepreneurship" shape="line" id="72">
|
||||
<topic position="830,1" order="0" text="Startup map" shape="line" id="73"/>
|
||||
<topic position="920,26" order="1" text="Venture investment map" shape="line" id="74"/>
|
||||
<topic position="1010,51" order="2" text="Attractiveness to public competitive funding" shape="line" id="317">
|
||||
<topic position="-1010,26" order="0" text="Fed and regional seed fund investments" shape="line" id="316"/>
|
||||
<topic position="-1100,51" order="1" shape="line" id="314"/>
|
||||
</topic>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic position="650,38" order="1" text="Competitiveness support factors" shape="rounded rectagle" id="64" bgColor="#ffffff">
|
||||
<topic position="-650,26" order="0" text="Private investment in innovation" shape="line" id="68"/>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic position="-650,63" order="4" text="How to improve image" shape="rounded rectagle" id="69" fontStyle=";;;;;8;;;;" bgColor="#e0e5ef">
|
||||
<topic position="650,38" order="0" text="Rankings" shape="rounded rectagle" id="75" bgColor="#feffff">
|
||||
<topic position="-650,13" order="0" text="macro indicators" shape="line" id="70"/>
|
||||
<topic position="-740,38" order="1" text="meso-indicators" shape="line" id="71"/>
|
||||
</topic>
|
||||
<topic position="740,63" order="1" text="Innovation investment climate" shape="rounded rectagle" id="76" bgColor="#feffff"/>
|
||||
</topic>
|
||||
</topic>
|
||||
</map>
|
@ -1,53 +1,3 @@
|
||||
<map name="71137" version="tango">
|
||||
<topic central="true" text="Observation" shape="rectagle" id="1">
|
||||
<note><![CDATA[Always ask ]]></note>
|
||||
</topic>
|
||||
<topic position="-4,-107" text="Data Analysis" id="29">
|
||||
<note>
|
||||
<![CDATA[You always check your data to see if it is correct and then you check it and organize the data that you have to make sure that it is right ]]></note>
|
||||
</topic>
|
||||
<topic position="-143,-31" text="Organizing Data" id="30">
|
||||
<note><![CDATA[Organize your data when you are doing an experiment ]]></note>
|
||||
</topic>
|
||||
<topic position="181,-42" text="Questions" id="31">
|
||||
<note><![CDATA[Always ask your self a question when analysis the data it is a good idea to do.]]></note>
|
||||
</topic>
|
||||
<topic position="-6,46" text="Hypothesis" id="32">
|
||||
<note><![CDATA[You make your hypothesis when you are making your observation.]]></note>
|
||||
</topic>
|
||||
<topic position="-305,-50" text="Experiment" id="33">
|
||||
<note><![CDATA[Always analysis your data and keep it in order when you are doing an experiment.]]></note>
|
||||
</topic>
|
||||
<topic position="211,-151" text="Variable" id="34">
|
||||
<note><![CDATA[A major factor that can change the outcome in an experiment.]]></note>
|
||||
</topic>
|
||||
<topic position="327,-64" text="Independent Variable" id="35">
|
||||
<note><![CDATA[When you change it you the see affect or the aftermath of what happened ]]></note>
|
||||
</topic>
|
||||
<topic position="-304,14" text="Control Group" id="37">
|
||||
<note><![CDATA[A test That can be compared ]]></note>
|
||||
</topic>
|
||||
<topic position="323,98" text="Dependent Variable" id="36">
|
||||
<note><![CDATA[Changes the outcome of the other variables]]></note>
|
||||
</topic>
|
||||
<topic position="-28,141" text="Constant " id="40">
|
||||
<note><![CDATA[Doesnt Change at all maybe once and a while but never that often]]></note>
|
||||
</topic>
|
||||
<relationship srcTopicId="1" destTopicId="29" lineType="3" endArrow="true" startArrow="false"/>
|
||||
<relationship srcTopicId="29" destTopicId="30" lineType="3" endArrow="true" startArrow="false"/>
|
||||
<relationship srcTopicId="1" destTopicId="31" lineType="3" endArrow="true" startArrow="false"/>
|
||||
<relationship srcTopicId="1" destTopicId="32" lineType="3" endArrow="true" startArrow="false"/>
|
||||
<relationship srcTopicId="30" destTopicId="33" lineType="3" srcCtrlPoint="-53,0" destCtrlPoint="-20,0"
|
||||
endArrow="true" startArrow="false"/>
|
||||
<relationship srcTopicId="33" destTopicId="29" lineType="3" endArrow="true" startArrow="false"/>
|
||||
<relationship srcTopicId="29" destTopicId="31" lineType="3" endArrow="true" startArrow="false"/>
|
||||
<relationship srcTopicId="33" destTopicId="35" lineType="3" srcCtrlPoint="191,-113" destCtrlPoint="-354,-98"
|
||||
endArrow="true" startArrow="false"/>
|
||||
<relationship srcTopicId="33" destTopicId="37" lineType="3" endArrow="true" startArrow="false"/>
|
||||
<relationship srcTopicId="33" destTopicId="34" lineType="3" srcCtrlPoint="-14,-117" destCtrlPoint="-218,-20"
|
||||
endArrow="true" startArrow="false"/>
|
||||
<relationship srcTopicId="35" destTopicId="36" lineType="3" endArrow="true" startArrow="false"/>
|
||||
<relationship srcTopicId="34" destTopicId="36" lineType="3" srcCtrlPoint="66,43" destCtrlPoint="199,-215"
|
||||
endArrow="true" startArrow="false"/>
|
||||
<relationship srcTopicId="33" destTopicId="40" lineType="3" endArrow="true" startArrow="false"/>
|
||||
<map name="cdata-support" version="tango">
|
||||
<topic central="true" text="Observation" id="1"/>
|
||||
</map>
|
@ -1,352 +1,25 @@
|
||||
<map name="66634" version="pela">
|
||||
<topic central="true" text="PPM Plan" id="1" bgColor="#32e36a">
|
||||
<topic position="241,250" order="10" text="Business Development " id="4" fontStyle=";;;bold;;"/>
|
||||
<topic position="226,-100" order="3" text="Backlog Management" shape="line" id="18" fontStyle=";;;bold;;">
|
||||
<link url="https://docs.google.com/a/freeform.ca/drawings/d/1mrtkVAN3_XefJJCgfxw4Va6xk9TVDBKXDt_uzyIF4Us/edit"/>
|
||||
<map name="complex" version="tango">
|
||||
<topic central="true" text="PPM Plan" id="1">
|
||||
<topic position="200,-300" order="0" text="Business Development " shape="line" id="4" fontStyle=";;;;;8;;;;"/>
|
||||
<topic position="-290,-87" order="0" text="Backlog Management" shape="line" id="18" fontStyle=";;;;;8;;;;">
|
||||
<link url="https://docs.google.com/a/freeform.ca/drawings/d/1mrtkVAN3_XefJJCgfxw4Va6xk9TVDBKXDt_uzyIF4Us/edit" urlType="url"/>
|
||||
</topic>
|
||||
<topic position="-193,50" order="2" text="Freeform IT" id="10" fontStyle=";;;bold;;"/>
|
||||
<topic position="-271,-50" order="1" text="Client Project Management" id="204" fontStyle=";;;bold;;"/>
|
||||
<topic position="-183,-150" order="5" text="Governance & Executive" id="206" fontStyle=";;;bold;;"/>
|
||||
<topic position="124,-200" order="7" text="Finance" id="5" fontStyle=";;;bold;;"/>
|
||||
<topic position="176,-150" order="5" text="Administration" id="3" fontStyle=";;;bold;;"/>
|
||||
<topic position="222,100" order="4" text="Human Resources" id="154" fontStyle=";;;bold;;">
|
||||
<note text="HR%20Vision%3A%20Freeform%20Solutions%20is%20successful%20at%20its%20mission%2C%20sustainable%20as%20an%20organization%20AND%20is%20a%20great%20place%20to%20work.%0AHR%20Mission%3A%20To%20provide%20a%20positive%20HR%20service%20experience%20for%20applicants%20and%20employees%2C%20and%20%20collaborate%20with%20departments%20to%20recruit%2C%20develop%2C%20support%2C%20and%20retain%20diverse%20and%20talented%20employees%20who%20are%20the%20key%20to%20Freeform%u2019s%20%20reputation%20and%20success."/>
|
||||
<topic position="-380,-37" order="1" text="Freeform IT" shape="line" id="10" fontStyle=";;;;;8;;;;"/>
|
||||
<topic position="-470,-12" order="2" text="Client Project Management" shape="line" id="204" fontStyle=";;;;;8;;;;"/>
|
||||
<topic position="-560,13" order="3" text="Governance & Executive" shape="line" id="206" fontStyle=";;;;;8;;;;"/>
|
||||
<topic position="-650,13" order="4" text="Finance" shape="line" id="5" fontStyle=";;;;;8;;;;"/>
|
||||
<topic position="-740,38" order="5" text="Administration" shape="line" id="3" fontStyle=";;;;;8;;;;"/>
|
||||
<topic position="-830,63" order="6" text="Human Resources" shape="line" id="154" fontStyle=";;;;;8;;;;">
|
||||
<note><![CDATA[[]]></note>
|
||||
</topic>
|
||||
<topic position="-202,150" order="6" text="Freeform Hosting" id="16" fontStyle=";;;bold;;"/>
|
||||
<topic position="197,50" order="2" text="Community Outreach" id="247" fontStyle=";;;bold;;"/>
|
||||
<topic position="124,300" order="12" text="R&D" id="261" fontStyle=";;;bold;;">
|
||||
<topic position="230,289" order="0" text="Goals" id="263"/>
|
||||
<topic position="239,313" order="1" text="Formulize" id="264"/>
|
||||
<topic position="-920,113" order="7" text="Freeform Hosting" shape="line" id="16" fontStyle=";;;;;8;;;;"/>
|
||||
<topic position="-1010,113" order="8" text="Community Outreach" shape="line" id="247" fontStyle=";;;;;8;;;;"/>
|
||||
<topic position="-1100,138" order="9" text="R&D" shape="line" id="261" fontStyle=";;;;;8;;;;">
|
||||
<topic position="1100,113" order="0" text="Goals" shape="line" id="263"/>
|
||||
<topic position="1190,138" order="1" text="Formulize" shape="line" id="264"/>
|
||||
</topic>
|
||||
<topic position="-158,0" order="0" text="Probono" id="268">
|
||||
<topic position="-273,1" order="0" id="269"/>
|
||||
<topic position="-1190,188" order="10" text="Probono" shape="line" id="268">
|
||||
<topic position="1190,176" order="0" shape="line" id="269"/>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic position="1558,-249" text="Strategy 2: Talent Development" id="31">
|
||||
<note text="Strategy%20%232%3A%20Support%20the%20talent%20development%20of%20our%20employees%20through%20professional%20development%20and%20learning%20and%20through%20improved%20performance%20management."/>
|
||||
<topic position="1817,-260" order="0" text="Strategic Priority 2a: Personal Plans" id="113">
|
||||
<note text="Each%20employee%20will%20have%20a%20personal%20Professional%20Development%20Plan.%20%20"/>
|
||||
</topic>
|
||||
<topic position="1869,-236" order="1" text="Strategic Priority 2b: External learning matches organ. goals"
|
||||
id="114">
|
||||
<note text="Each%20department%20of%20Freeform%20will%20identify%20areas%20that%20need%20development%20to%20meet%20overall%20FS%20goals.%20%20Eg.%20%20Project%20Manager%20may%20identify%20needed%20improvement%20in%20a%20development%20tool.%20%20Or...%20Bus.%20Dev.%20may%20identify%20a%20new%20need%20in%20NFP%20that%20FS%20could%20fill%20within%20mandate%2C%20if%20training%20were%20provided.%20%20Professional%20Dev.%20priority%20will%20be%20given%20to%20proposals%20for%20development%20with%20clear%20ROIs."/>
|
||||
</topic>
|
||||
<topic position="1831,-212" order="2" text="Strategic Priority 2c: Learning Environment" id="116">
|
||||
<note text="Learning%20and%20innovation%20are%20an%20essential%20part%20of%20providing%20the%20best%20solutions%20to%20NFPs.%20%20Cost%20effective%20internal%20learning%20and%20time%20to%20explore%20innovation%20will%20be%20encouraged%2C%20provided%20they%20conform%20with%20organization%20goal%20and%20clear%20ROI%20is%20demonstrated."/>
|
||||
</topic>
|
||||
<topic position="1766,-188" order="3" text="So That..." id="112">
|
||||
<icon id="object_rainbow"/>
|
||||
<note text="%28So%20that...%20our%20employees%20have%20improved%20skills%20and%20knowledge%2C%20So%20that...%20they%20are%20highly%20competent%20and%20can%20work%20well%20in%20agile%20teams%20and%20feel%20fulfilled%20and%20self%20actualized...%20So%20that%20we%20can%20so%20the%20best%20work%20possible%2C%20for%20the%20least%20cost%2C%20in%20the%20shortest%20time%20for%20other%20NFPs%2C%20So%20that...%20NFPs%20can%20help%20those%20who%20need%20it.%29"/>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic position="1952,168" text="Strategy 4: Inclusive, Positive Environment" id="105">
|
||||
<note text="Strategy%20%234%3A%20Foster%20a%20diverse%2C%20inclusive%20community%20with%20a%20positive%20work%20environment."/>
|
||||
<topic position="2229,142" order="0" text="Strategic Priority 4a:Feedback" id="119">
|
||||
<note text="Conduct%20regular%20organizational%20feedback%20assessments%20and%20collaborate%20to%20improve%20the%20work%20climate"/>
|
||||
</topic>
|
||||
<topic position="2246,166" order="1" text="Strategic Priority 4b: Anti Harassment" id="120">
|
||||
<note text="Educate%20employees%20on%20the%20prevention%20of%20harassment%20and%20discrimination%20and%20productive%20ways%20to%20resolve%20conflict"/>
|
||||
</topic>
|
||||
<topic position="2228,190" order="2" text="Strategic Priority 4c: Diversity" id="121">
|
||||
<note text="Insure%20we%20promote%20our%20commitment%20to%20diversity%20and%20non-discrimination%20through%20our%20actions%20and%20in%20our%20outreach%20and%20employee%20recruitment%20efforts"/>
|
||||
</topic>
|
||||
<topic position="2178,214" order="3" id="253"/>
|
||||
<topic position="2191,238" order="4" text="So That..." id="118">
|
||||
<icon id="object_rainbow"/>
|
||||
<note text="%28So%20that...%20we%20can%20reflect%20the%20diverse%20populations%20we%20serve%20AND%20ensure%20everyone%20feels%20safe%2C%20respected%20%20and%20%20included%2C%20So%20that...%20we%20better%20serve%20our%20diverse%20client%20organizations%20AND%20we%20are%20a%20great%20place%20to%20work%20%29"/>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic position="1326,-642" text="Strategy 1: Recruit & Retain" id="29">
|
||||
<note text="Recruit%20and%20retain%20top%20talent%20commensurate%20with%20identified%20organizational%20capacity%20requirements%20"/>
|
||||
<topic position="1444,-781" order="0" text="So that..." id="28">
|
||||
<note text="%28So%20that...%20we%20find%20and%20keep%20good%20people%2C%20So%20that...%20they%20are%20highly%20competent%20and%20can%20work%20well%20in%20agile%20teams...%20So%20that%20we%20can%20so%20the%20best%20work%20possible%2C%20for%20the%20least%20cost%2C%20in%20the%20shortest%20time%20for%20other%20NFPs%2C%20So%20that...%20NFPs%20can%20help%20those%20who%20need%20it.%29"/>
|
||||
</topic>
|
||||
<topic position="1539,-742" order="1" text="Strategic Priority 1a: Recruitment" id="37">
|
||||
<note text="1.%20Identify%20and%20use%20proactive%20and%20effective%20recruitment%20strategies%2C%20"/>
|
||||
<topic position="1573,-752" order="0" text="Modify App Form" shrink="true" id="238">
|
||||
<note text="Recently%2C%20I%20saw%20a%20few%20job%20posts%20sent%20through%20different%20community%0Agroups%20and%20they%20seem%20to%20be%20taking%20our%20idea%20of%20screening%20candidates%0Ato%20a%20next%20level.%20Not%20only%20they%20ask%20candidates%20to%20provide%20resume%20and%0Acover%20letter%20+%20some%20project%20related%20information%20but%20also%20request%0Awritten%20answers%20to%20questions%20like%20%22Why%20are%20you%20interested%20in%20this%0Aposition%22%20etc.%20That%20allows%20to%20screen%20out%20people%20who%20just%20submit%0Amultiple%20resumes%20to%20multiple%20organizations%20without%20really%20applying%0Afor%20that%20particular%20job%20and%20it%20would%20make%20our%20interview%20process%20more%0Astraightforward%2C%20knowing%20answers%20to%20some%20questions.%0A%0AFor%20example%2C%20we%20may%20want%20to%20always%20include%20in%20the%20screening%0Aquestions%3A%0A-%20Why%20do%20you%20want%20to%20work%20for%20Freeform%20Solutions%3F%0A-%20Why%20are%20you%20interested%20in%20this%20position%3F%0A-%20What%27s%20your%20experience%20working%20with%20NFP%3F%0A-%20What%27s%20your%20experience%20working%20with%20Open%20Source%20software%3F%0Aetc.%0A%0AI%20also%20saw%20that%20people%20ask%20for%20references%20up%20front%2C%20in%20that%0Asubmissions%20form.%20We%20could%20include%20the%20HR%20requirement%20that%20Heather%0Abrought%20recently%20for%20%22permissions%20to%20ask%20your%20references%20about%20you%22%0Ain%20the%20online%20form%20so%20that%20we%20don%27t%20have%20to%20follow%20up%20with%20this%0Alater.%0A%0AAttached%20below%20a%20sample%20of%20such%20screening%20questions"/>
|
||||
</topic>
|
||||
<topic position="1614,-728" order="1" text="Strategy integrated with hiring plan" id="299">
|
||||
<note text="Hiring%20plan%20should%20be%20comprehensive...%20not%20Agile%20or%20Iterative%2C%20in%20the%20sense%20that%20staff%20capacity%20and%20skill%20needs%20should%20be%20met%20within%20at%20least%20a%20six%20month%20plan.%20%20If%20three%20Drupal%20developers%20are%20needed%2C%20the%20hiring%20should%20be%20done%20concurrently%20to%20minimize%20HR%20costs%20and%20time."/>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic position="1477,-700" order="2" text="Strategic Priority 1b: Hiring" id="39">
|
||||
<note text="2.%20Continue%20to%20practice%20our%20unique%20Freeform%20hiring%20process%20that%20balances%20fit%20with%20the%20Freeform%20culture%20and%20best%20talent%20"/>
|
||||
</topic>
|
||||
<topic position="1487,-647" order="3" text="Strategic Priority 1c: Onboarding" id="41">
|
||||
<note text=""/>
|
||||
<topic position="1592,-674" order="0" text="3 Month Onboarding Process" shape="elipse" id="275"
|
||||
bgColor="#adddf0"/>
|
||||
<topic position="1570,-650" order="1" text="Tools & Guidelines" id="277"/>
|
||||
<topic position="1552,-626" order="2" text="Mentoring" id="276"/>
|
||||
</topic>
|
||||
<topic position="1484,-569" order="4" text="Strategic Priority 1d: Incentives" id="43">
|
||||
<note text="5.%20Explore%20incentives%20-%20monetary%2C%20benefits%2C%20fulfilment%20-%20needed%20to%20encourage%20top%20talent%20to%20work%20for%20and%20remain%20working%20for%20an%20NFP"/>
|
||||
<topic position="1544,-596" order="0" text="Raises" id="274"/>
|
||||
<topic position="1548,-572" order="1" text="Benefits" shape="elipse" id="270" bgColor="#adddf0"/>
|
||||
<topic position="1577,-548" order="2" text="Rewards Message" id="45">
|
||||
<note text="Create%20a%20total%20rewards%20message%20to%20encourage%20prospective%20and%20current%20employees%20to%20understand%20the%20full%20value%20of%20working%20for%20Freeform"/>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic position="1487,-518" order="5" text="Strategic Priority 1e: Offboarding" shrink="true" id="123">
|
||||
<note text="Assess%20and%20address%20reasons%20why%20talented%20people%20leave%20Freeform"/>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic position="726,413" text="Business Development Plan" shape="rounded rectagle" id="156"
|
||||
fontStyle=";;#0d0826;;;" bgColor="#32e36a">
|
||||
<topic position="894,401" order="0" text="Goals" id="164">
|
||||
<topic position="975,422" order="0" text="Increase new clients" id="168">
|
||||
<topic position="1138,409" order="0" text="Academic Research" id="171"/>
|
||||
<topic position="1118,433" order="1" id="177"/>
|
||||
</topic>
|
||||
<topic position="978,488" order="1" text="Support New Products" id="172">
|
||||
<topic position="1125,463" order="0" text="Formulize" id="179"/>
|
||||
<topic position="1125,487" order="1" id="180"/>
|
||||
<topic position="1125,511" order="2" id="181"/>
|
||||
</topic>
|
||||
<topic position="966,539" order="2" text="Support CiviCRM" id="255"/>
|
||||
<topic position="976,602" order="3" text="Identify Opportunites" id="182">
|
||||
<topic position="1121,565" order="0" id="183"/>
|
||||
<topic position="1121,589" order="1" id="184"/>
|
||||
<topic position="1121,613" order="2" id="185"/>
|
||||
<topic position="1121,637" order="3" id="186"/>
|
||||
</topic>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic position="-621,395" text="Hosting NG Plan" shape="rounded rectagle" id="162" fontStyle=";;#0d0826;;;"
|
||||
bgColor="#32e36a"/>
|
||||
<topic position="-613,99" text="Freeform IT Plan" shape="rounded rectagle" id="163" bgColor="#52e380">
|
||||
<topic position="-753,68" order="0" text="Fragile" id="17" fontStyle=";;;bold;;"/>
|
||||
<topic position="-749,92" order="1" text="Tools" id="259"/>
|
||||
<topic position="-760,116" order="2" id="260"/>
|
||||
</topic>
|
||||
<topic position="-548,-87" text="Project Teams" shape="rounded rectagle" shrink="true" id="9" bgColor="#52e380">
|
||||
<topic position="-668,-142" order="0" text="Projects 1-3" id="13"/>
|
||||
<topic position="-668,-118" order="1" text="Projects 4-6" id="14"/>
|
||||
<topic position="-672,-94" order="2" text="Projects 7 & 8" id="15"/>
|
||||
<topic position="-696,-70" order="3" text="General Work" id="12"/>
|
||||
<topic position="-686,-46" order="4" text="Learning Needs Plan" id="11"/>
|
||||
</topic>
|
||||
<topic position="-532,-250" text="Restructure" shape="rounded rectagle" shrink="true" id="33" bgColor="#52e380">
|
||||
<topic position="-685,-282" order="0" text="Client Centric Process" id="216"/>
|
||||
<topic position="-692,-258" order="1" text="Freeform Project Process" id="217"/>
|
||||
<topic position="-693,-234" order="2" text="Supportive Systems Plan" id="218"/>
|
||||
</topic>
|
||||
<topic position="-427,-329" text="Board and C Planning" shape="rounded rectagle" shrink="true" id="208"
|
||||
bgColor="#52e380">
|
||||
<topic position="-614,-384" order="0" text="Mission Statements" id="23">
|
||||
<note text="In%20the%20absence%20of%20one%20clearly%20defined%20mission%20statement%2C%20we%20have%20reviewed%20various%20expressed%20mission%20statement%20as%20following%0A%0A%20%20%20%20Objects%20of%20Incorporation%20in%20Letters%20Patent%0A%20%20%20%20%20%20%20%20The%20objects%20of%20the%20Corporation%20are%3ATo%20provide%20solutions%20that%20facilitate%20the%20effective%20use%20of%20information%20technology%20in%20not-for-profit%2C%20non-governmental%2C%20and%20charitable%20organizations%20throughout%20Canada%2C%20to%20support%20and%20improve%20their%20mission%20delivery.%0A%20%20%20%202006%20Strategic%20Business%20Plan%20-%20Brand%20Positioning%0A%20%20%20%20%20%20%20%20We%20are%20a%20nonprofit%20dedicated%20to%20helping%20other%20nonprofits%20understand%20and%20employ%20technology%20appropriately%20and%20effectively%20to%20support%20their%20mission.%20Our%20mission%20is%20to%20provide%20flexible%20consulting%2C%20website%20development%2C%20and%20Internet%20hosting%20solutions%20that%20give%20you%20peace%20of%20mind%20and%20help%20you%20stay%20focused%20on%20your%20mission.%0A%20%20%20%20Freeform%20One%20Page%20%28Freeform%20Wiki%29%0A%20%20%20%20%20%20%20%20About%20Freeform%20Solutions%3A%20Freeform%20Solutions%20is%20a%20not-for-profit%20organization.%20Our%20mission%20is%20help%20%28sic%29%20other%20not-for-profits%20organizations%20to%20build%20their%20capacity%20and%20increase%20their%20effectiveness.%0A%20%20%20%20Result%20of%20Google%20search%20for%20%u201CFreeform%20Solutions%20mission%u201D%0A%20%20%20%20%20%20%20%20Freeform%20Solutions%20is%20a%20not-for-profit%20organization.%20Our%20mission%20is%20to%20help%20other%20not-for-profits%20use%20technology%20to%20build%20their%20capacity%20and%20increase%20their%20effectiveness.%20%28www.freeformsolutions.ca/en/files/AboutFreeformSolutions.pdf%0A%20%20%20%20%20%20%20%20Freeform%20Solutions%20%28www.freeformsolutions.ca%29%20is%20a%20non%20profit%20organization.%20Our%20mission%20is%20to%20help%20other%20non-profit%20organizations%20to%20realize%20their%20missions%20through%20the%20appropriate%20deployment%20of%20information%20and%20knowledge%20management%20systems.www.freeformsolutions.ca/en/sites/default/.../virtual.volunteering.pdf%0A%20%20%20%20%20%20%20%20We%20are%20a%20not-for-profit%20organization%20%28NFP%29%20that%20helps%20other%20NFPs%20use%20IT%20to%20achieve%20their%20organizational%20goals%20and%20better%20serve%20their%20communities.%20Freeform%20Solutions%20is%20a%20nonprofit%20organization%20dedicated%20to%20helping%20other%20nonprofit%20organizations%20understand%20and%20employ%20technology%20appropriately%20and%20effectively%20to%20support%20their%20missions.%20Our%20mission%20is%20to%20provide%20flexible%20consulting%2C%20website%20development%2C%20and%20hosting%20solutions%20%20http%3A//socialinnovation.ca/community/organizations/freeform-solutions%0A%20%20%20%20%20%20%20%20Freeform%20Solutions%20is%20a%20not-for-profit%20organization%2C%20with%20a%20mission%20to%20help%20other%20not-for-profits%20use%20technology%20more%20effectively%20to%20meet%20their%20own%20missions.%20http%3A//timreview.ca/article/387%0A%20%20%20%20%20%20%20%20Freeform%20Solutions%20%u2013%20their%20mission%3A%20%u201Cwe%20help%20not-for-profit%20organisations%20use%20technology%20to%20build%20their%20capacity%20and%20increase%20their%20effectiveness.%20http%3A//www.warnerlaw.ca/links/community-organisations-and-local-businesses/%0A%20%20%20%20%20%20%20%20Freeform%20Solutions%20is%20a%20not-for-profit%20organization%20with%20a%20mission%20to%20help%20other%20not-for-profits%20use%20technology%20to%20meet%20their%20goals.%20http%3A//xoops.org/modules/news/article.php%3Fstoryid%3D3860%0A%20%20%20%20%20%20%20%20At%20Freeform%20Solutions%2C%20we%20have%20a%20mission%20to%20help%20not-for-profit%20and%20public%20sector%20organizations%20use%20technology%20more%20effectively.%20http%3A//osbrca.blogspot.ca/2010/07/development-commons-approach.html%0A%20%20%20%20Freeform%20Solutions%20Facebook%20Page%0A%20%20%20%20%20%20%20%20Mission%3A%20Freeform%20Solutions%20is%20a%20not-for-profit%20organization%20%28NFP%29%20that%20helps%20other%20NFPs%20use%20IT%20to%20achieve%20their%20organizational%20goals%20and%20better%20serve%20their%20communities.%0A%20%20%20%20The%20current%20Freeform%20Solutions%20website%0A%20%20%20%20%20%20%20%20We%20started%20Freeform%20to%20help%20NFPs%20use%20IT%20to%20achieve%20their%20organizational%20goals%20and%20better%20serve%20their%20communities%20-%20to%20support%20and%20improve%20their%20mission%20delivery.%20Our%20mission%20is%20to%20strengthen%20the%20capacity%20of%20NFPs%20and%20the%20voluntary%20sector%2C%20and%20to%20help%20build%20a%20civil%20society."/>
|
||||
</topic>
|
||||
<topic position="-579,-360" order="1" text="Values" id="25"/>
|
||||
<topic position="-594,-336" order="2" text="Bylaw Review" id="201"/>
|
||||
<topic position="-581,-312" order="3" text="Policies" id="202"/>
|
||||
<topic position="-592,-288" order="4" text="Business Plan" id="203"/>
|
||||
</topic>
|
||||
<topic position="1723,-35" text="Strategy 3: Safety and Wellness" id="91">
|
||||
<note text="Strategy%20%23%203%3A%20Promote%20the%20achievement%20of%20safety%20and%20wellness%20in%20our%20virtual%20employee%20community."/>
|
||||
<topic position="1995,-81" order="0" text="Strategic Priority 3a: H&S Policies & Practices"
|
||||
shrink="true" id="108">
|
||||
<note text="Continuing%20improvement%20in%20Health%20and%20Safety%20policies%20and%20practices%20%26%20compliance%20with%20OHSC%20legislation"/>
|
||||
<topic position="1948,-83" order="0" id="198"/>
|
||||
</topic>
|
||||
<topic position="1984,-38" order="1" text="Strategic Priority 3b: Health Promotion" id="110">
|
||||
<note text="Promoting%20safety%2C%20work-life%20balance%2C%20self-care%2C%20ergonomics%20and%20other%20factors%20for%20wellness%20and%20productivity%20in%20a%20virtual%20workplace%20environment"/>
|
||||
<topic position="2003,-51" order="0" text="Health and Wellness Committee" id="195">
|
||||
<note text="The%20Freeform%20H%26S%20rep%20will%20lead%20a%20Health%20and%20Wellness%20Committee%20to%20%20responsible%20for%20recognizing%20health%20and%20safety%20concerns%20and%20identifying%20solutions."/>
|
||||
</topic>
|
||||
<topic position="1992,-27" order="1" text="Work-life Balance Initiative" id="197">
|
||||
<link url="http://hrcouncil.ca/hr-toolkit/workplaces-health-safety.cfm"/>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic position="1933,0" order="2" text="So that..." id="106">
|
||||
<icon id="object_rainbow"/>
|
||||
<note text="%28So%20that...%20our%20employees%20remain%20well%20and%20safe%2C%20So%20that...%20they%20are%20highly%20competent%20and%20can%20work%20well%20in%20agile%20teams%20and%20feel%20fulfilled%20and%20self%20actualized...%20So%20that%20we%20can%20so%20the%20best%20work%20possible%2C%20for%20the%20least%20cost%2C%20in%20the%20shortest%20time%20for%20other%20NFPs%2C%20So%20that...%20NFPs%20can%20help%20those%20who%20need%20it.%29"/>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic position="2267,-485" text="Benefits" shape="elipse" id="130" bgColor="#c2eaf0">
|
||||
<note text="As%20Freeform%20Employees%20we%20will%20have%20benefits%20reviewed%20in%20light%20of%20our%20priorities%20and%20cost%20to%20Freeform"/>
|
||||
<topic position="2419,-579" order="0" text="As Freeform Staff" id="144">
|
||||
<icon id="people_group"/>
|
||||
</topic>
|
||||
<topic position="2421,-553" order="1" text="Responsibility: HZ, JC" id="131"/>
|
||||
<topic position="2403,-527" order="2" text="Release 3" id="141">
|
||||
<icon id="time_calendar"/>
|
||||
</topic>
|
||||
<topic position="2514,-503" order="3" text="Have Heather create list benefits against Best Practice & cost"
|
||||
shape="rounded rectagle" id="132">
|
||||
<icon id="tick_tick"/>
|
||||
</topic>
|
||||
<topic position="2430,-479" order="4" text="Have Jason review list" id="133">
|
||||
<icon id="tag_green"/>
|
||||
</topic>
|
||||
<topic position="2449,-455" order="5" text="Have JC & HZ consult with staff" id="134">
|
||||
<icon id="tag_orange"/>
|
||||
</topic>
|
||||
<topic position="2453,-431" order="6" text="Have best benefits we can afford" id="140">
|
||||
<icon id="tag_red"/>
|
||||
</topic>
|
||||
<topic position="2408,-407" order="7" text="So that..." id="142">
|
||||
<icon id="object_rainbow"/>
|
||||
<note text="%20so%20that%20our%20efforts%20to%20excel%20are%20rewarded."/>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic position="607,-489" text="Community Outreach Plan" shape="rounded rectagle" id="248" fontStyle=";8;;bold;;"
|
||||
bgColor="#51e898">
|
||||
<topic position="775,-545" order="0" text="Goals" id="285"/>
|
||||
<topic position="770,-521" order="1" text="CSI" id="249"/>
|
||||
<topic position="802,-497" order="2" text="Drupal Community" id="250"/>
|
||||
<topic position="780,-473" order="3" text="CiviCRM" id="251"/>
|
||||
<topic position="774,-449" order="4" text="Other" id="252"/>
|
||||
</topic>
|
||||
<topic position="469,-596" text="Backlog Plan" shape="rounded rectagle" id="215" fontStyle=";;;bold;;"
|
||||
bgColor="#2ee668">
|
||||
<link url="https://docs.google.com/a/freeform.ca/drawings/d/1mrtkVAN3_XefJJCgfxw4Va6xk9TVDBKXDt_uzyIF4Us/edit"/>
|
||||
<topic position="645,-605" order="0" text="Go To Backlog Plan " shape="rectagle" id="286" bgColor="#e8da6d">
|
||||
<icon id="funy_glasses"/>
|
||||
<link url="https://docs.google.com/a/freeform.ca/drawings/d/1mrtkVAN3_XefJJCgfxw4Va6xk9TVDBKXDt_uzyIF4Us/edit"/>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic position="1460,394" text="Strategy Prospecting" id="167">
|
||||
<topic position="1617,372" order="0" id="170"/>
|
||||
<topic position="1617,396" order="1" id="175"/>
|
||||
<topic position="1617,420" order="2" id="176"/>
|
||||
</topic>
|
||||
<topic position="1459,314" text="Stategies: Forecasting" id="166">
|
||||
<topic position="1620,292" order="0" id="169"/>
|
||||
<topic position="1620,316" order="1" id="173"/>
|
||||
<topic position="1620,340" order="2" id="174"/>
|
||||
</topic>
|
||||
<topic position="1461,480" text="Strategies Marketing" id="2" fontStyle=";;;normal;;"/>
|
||||
<topic position="-460,698" id="267"/>
|
||||
<topic position="1867,-359" text="Exit Interviews" shape="elipse" id="220" fontStyle=";6;;;;">
|
||||
<topic position="2010,-416" order="0" text="As Freeform" id="232">
|
||||
<icon id="people_group"/>
|
||||
</topic>
|
||||
<topic position="2022,-392" order="1" text="Responsiblity: HZ, KS" id="233"/>
|
||||
<topic position="2001,-368" order="2" text="Release" id="234">
|
||||
<icon id="time_hourglass"/>
|
||||
</topic>
|
||||
<topic position="2100,-344" order="3" text="Have Heather write procedures for exit interview process" id="235"/>
|
||||
<topic position="2006,-320" order="4" text="So that" id="236">
|
||||
<icon id="object_rainbow"/>
|
||||
<note text="We%20learn%20from%20our%20mistakes%20and%20missed%20opportunities%20in%20future%20with%20the%20goal%20of%20keeping%20the%20best%20talent."/>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic position="2250,-634" text="3 Month Onboarding Process" shape="elipse" id="298" bgColor="#adddf0"/>
|
||||
<topic position="558,-26" text="Human Resources Plan" shape="rounded rectagle" id="6" fontStyle=";;#0d0826;bold;;"
|
||||
bgColor="#32e36a">
|
||||
<topic position="694,-284" order="0" text="Related Org Objectives" id="287" fontStyle=";;;bold;;">
|
||||
<topic position="772,-321" order="0" text="1" id="288">
|
||||
<note text="Attract%2C%20build%20and%20retain%20a%20motivated%2C%20agile%2C%20knowledgeable%20team%20of%20Top%20Talent%20that%20loves%20to%20%u201Ccome%u201D%20to%20work"/>
|
||||
</topic>
|
||||
<topic position="772,-297" order="1" text="2" id="289">
|
||||
<note text="Maintain%20level%20of%20human%20resource%20capacity%20and%20skill%20to%20meet%20planned%20growth%20and%20client%20contractual%20commitments"/>
|
||||
</topic>
|
||||
<topic position="772,-273" order="2" text="3" id="290">
|
||||
<note text="Conform%20to%20all%20legislated%20requirements"/>
|
||||
</topic>
|
||||
<topic position="772,-249" order="3" text="4" id="291">
|
||||
<note text="Minimize%20and%20mitigate%20risk%20to%20the%20organization"/>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic position="695,-221" order="1" text="Related Documents" id="294" fontStyle=";;;bold;;">
|
||||
<note text="MIssion%2C%20Values%2C%20Principles%2C%20Org%20Business%20Plan%2C%20Human%20Resources%20Policy%20Manual"/>
|
||||
</topic>
|
||||
<topic position="663,29" order="2" text="Goals" id="30" fontStyle=";;;bold;;">
|
||||
<topic position="844,-153" order="0" text="Goal:Staff=Optimal Bus. Growth" id="104">
|
||||
<icon id="sport_football"/>
|
||||
<note text="Human%20resource%20capacity%20will%20remain%20at%20a%20level%20to%20%20meet%20planned%20growth%20growth%20objectives%20and%20client%20contractual%20commitments"/>
|
||||
<topic position="1030,-193" order="0" text="So that..." id="124">
|
||||
<icon id="object_rainbow"/>
|
||||
</topic>
|
||||
<topic position="1062,-169" order="1" text="Related Strategic Priorities: " id="125"/>
|
||||
<topic position="1090,-145" order="2" text="KPI: HR Level equals Planned Growth" id="126">
|
||||
<icon id="chart_bar"/>
|
||||
</topic>
|
||||
<topic position="1038,-118" order="3" text="Methodology" id="99">
|
||||
<note text="Schedule%20of%20required%20HR%20capacity%20vs.%20actual%20HR%20capacity.%20%20Variance%20+%20or%20-%201"/>
|
||||
<topic position="1172,-119" order="0" text="Target" id="100">
|
||||
<note text="%3D%20+%20or%20-%201"/>
|
||||
</topic>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic position="835,-38" order="1" text="Goal: Increase Job Satisfaction" id="49">
|
||||
<icon id="sport_football"/>
|
||||
<topic position="1016,-85" order="0" text="So That" id="59">
|
||||
<icon id="object_rainbow"/>
|
||||
<note text="%20%20%20%20Establish%20better%20relationships.%0A%20%20%20%20Identify%20with%20the%20new%20employer.%0A%20%20%20%20Build%20a%20great%20attitude%20with%20the%20company."/>
|
||||
</topic>
|
||||
<topic position="1043,-57" order="1" text="Related Strategic Priorities" shrink="true" id="86">
|
||||
<topic position="1199,-59" order="0" id="90"/>
|
||||
</topic>
|
||||
<topic position="1051,-26" order="2" text="KPI: Employee Satisfaction" id="50">
|
||||
<icon id="chart_bar"/>
|
||||
<topic position="1214,-27" order="0" id="303"/>
|
||||
</topic>
|
||||
<topic position="1021,4" order="3" text="Methodology" id="128">
|
||||
<note text="Percentage%20of%20improvement%20in%20employee%20reported%20job%20satisfaction%20based%20on%20survey%20vs%20previous%20year.%20%20Base%20level%20to%20be%20established%20in%20first%20year.%20"/>
|
||||
<topic position="1155,3" order="0" text="Target" id="129">
|
||||
<note text="Base%20level%201st%20%20year"/>
|
||||
</topic>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic position="834,77" order="2" text="Goal: Improve Performance" id="51">
|
||||
<icon id="sport_football"/>
|
||||
<note text="To%20increase%20knowledge%2C%20skills%20and%20experience%20of%20the%20Freeform%20staff%20relevant%20to%20organizational%20priorities."/>
|
||||
<topic position="1013,37" order="0" text="So That" id="60">
|
||||
<icon id="object_rainbow"/>
|
||||
<note text="%20%20%20%20Clarify%20expectations.%0A%20%20%20%20Understand%20values%20and%20priorities.%0A%20%20%20%20Decrease%20the%20learning%20curve."/>
|
||||
</topic>
|
||||
<topic position="1047,61" order="1" text="Related Strategic Priorities" id="87">
|
||||
<note text="1"/>
|
||||
</topic>
|
||||
<topic position="1050,85" order="2" text="KPI: Employee Performance" id="61">
|
||||
<icon id="chart_bar"/>
|
||||
</topic>
|
||||
<topic position="1011,112" order="3" text="Methodology" id="80">
|
||||
<topic position="1131,111" order="0" text="Target" id="102"/>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic position="824,186" order="3" text="Goal: Reduce Turnover" id="52">
|
||||
<icon id="sport_football"/>
|
||||
<note text="To%20reduce%20turnover%20of%20Top%20Talent."/>
|
||||
<topic position="994,145" order="0" text="So That" id="62">
|
||||
<icon id="object_rainbow"/>
|
||||
<note text="%20%20%20%20Provide%20support%20through%20feedback.%0A%20%20%20%20Help%20the%20employee%20feel%20valued.%0A%20%20%20%20Again%2C%20decrease%20the%20learning%20curve."/>
|
||||
</topic>
|
||||
<topic position="1021,169" order="1" text="Related Strategic Priorities" id="88"/>
|
||||
<topic position="1014,193" order="2" text="KPI: Retention Rate" id="63">
|
||||
<icon id="chart_bar"/>
|
||||
</topic>
|
||||
<topic position="992,221" order="3" text="Methodology" shrink="true" id="98">
|
||||
<topic position="1112,219" order="0" text="Target" id="101"/>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic position="814,253" order="4" text="Risk & Compliance" id="246">
|
||||
<icon id="sport_football"/>
|
||||
<note text="To%20eliminate%20or%20minimize%20risk%20and%20to%20comply%20with%20all%20legislated%20requirements.%20%20"/>
|
||||
</topic>
|
||||
</topic>
|
||||
</topic>
|
||||
<relationship srcTopicId="154" destTopicId="6" lineType="3" endArrow="true" startArrow="false"/>
|
||||
<relationship srcTopicId="4" destTopicId="156" lineType="3" endArrow="true" startArrow="false"/>
|
||||
<relationship srcTopicId="16" destTopicId="162" lineType="3" endArrow="true" startArrow="false"/>
|
||||
<relationship srcTopicId="31" destTopicId="91" lineType="3" endArrow="true" startArrow="false"/>
|
||||
<relationship srcTopicId="91" destTopicId="105" lineType="3" endArrow="true" startArrow="false"/>
|
||||
<relationship srcTopicId="10" destTopicId="163" lineType="3" endArrow="true" startArrow="false"/>
|
||||
<relationship srcTopicId="204" destTopicId="9" lineType="3" endArrow="true" startArrow="false"/>
|
||||
<relationship srcTopicId="204" destTopicId="33" lineType="3" endArrow="true" startArrow="false"/>
|
||||
<relationship srcTopicId="206" destTopicId="208" lineType="3" endArrow="true" startArrow="false"/>
|
||||
<relationship srcTopicId="18" destTopicId="215" lineType="3" endArrow="true" startArrow="false"/>
|
||||
<relationship srcTopicId="91" destTopicId="105" lineType="3" endArrow="true" startArrow="false"/>
|
||||
<relationship srcTopicId="91" destTopicId="105" lineType="3" endArrow="true" startArrow="false"/>
|
||||
<relationship srcTopicId="247" destTopicId="248" lineType="3" endArrow="true" startArrow="false"/>
|
||||
<relationship srcTopicId="156" destTopicId="166" lineType="3" endArrow="true" startArrow="false"/>
|
||||
<relationship srcTopicId="166" destTopicId="167" lineType="3" endArrow="true" startArrow="false"/>
|
||||
<relationship srcTopicId="167" destTopicId="2" lineType="3" endArrow="true" startArrow="false"/>
|
||||
<relationship srcTopicId="270" destTopicId="130" lineType="3" endArrow="true" startArrow="false"/>
|
||||
<relationship srcTopicId="275" destTopicId="298" lineType="3" endArrow="true" startArrow="false"/>
|
||||
<relationship srcTopicId="123" destTopicId="220" lineType="3" endArrow="true" startArrow="false"/>
|
||||
<relationship srcTopicId="6" destTopicId="29" lineType="3" endArrow="true" startArrow="false"/>
|
||||
<relationship srcTopicId="29" destTopicId="31" lineType="3" endArrow="true" startArrow="false"/>
|
||||
</map>
|
@ -1,239 +1,89 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<map version="tango" name="120724 ATG Business plan">
|
||||
<topic id="0" central="true" position="0,0" brColor="#808080"
|
||||
bgColor="#ffcc33" fontStyle="Arial;16;#0000cc;bold;;" shape="rounded rectagle">
|
||||
<text><![CDATA[]]></text>
|
||||
<note>
|
||||
<text><![CDATA[]]></text>
|
||||
</note>
|
||||
<topic id="1" position="200,0" order="0" brColor="#808080"
|
||||
bgColor="#ffcc33" fontStyle="Arial;16;#0000cc;bold;;" shape="rounded rectagle">
|
||||
<text><![CDATA[objectifs journée]]></text>
|
||||
<topic id="2" position="290,-50" order="0" brColor="#808080"
|
||||
bgColor="#ffff33" fontStyle="Arial;14;#0000cc;bold;;" shape="rounded rectagle">
|
||||
<text><![CDATA["business plan" associatif ?]]></text>
|
||||
</topic>
|
||||
<topic id="3" position="290,-25" order="1" brColor="#808080"
|
||||
bgColor="#ffff33" fontStyle="Arial;14;#0000cc;bold;;" shape="rounded rectagle">
|
||||
<text><![CDATA[modèle / activités responsabilités]]></text>
|
||||
</topic>
|
||||
<topic id="4" position="290,0" order="2" brColor="#808080"
|
||||
bgColor="#ffff33" fontStyle="Arial;14;#0000cc;bold;;" shape="rounded rectagle">
|
||||
<text><![CDATA[articulations / LOG]]></text>
|
||||
</topic>
|
||||
<map name="emptyNodes" version="tango">
|
||||
<topic central="true" id="1" fontStyle=";;;;;;#0000cc;;;" bgColor="#ffcc33">
|
||||
<topic position="200,-50" order="0" text="objectifs journée" shape="rounded rectagle" id="1" fontStyle=";;;;Arial;8;#0000cc;;;" bgColor="#808080">
|
||||
<topic position="200,-100" order="0" text=""business plan" associatif ?" shape="rounded rectagle" id="2" fontStyle=";;;;Arial;8;#0000cc;;;" bgColor="#808080"/>
|
||||
<topic position="-290,-87" order="0" text="modèle / activités responsabilités" shape="rounded rectagle" id="3" fontStyle=";;;;Arial;8;#0000cc;;;" bgColor="#808080"/>
|
||||
<topic position="-380,-62" order="1" text="articulations / LOG" shape="rounded rectagle" id="4" fontStyle=";;;;Arial;8;#0000cc;;;" bgColor="#808080"/>
|
||||
</topic>
|
||||
<topic id="5" position="200,100" order="4" brColor="#808080"
|
||||
bgColor="#ffcc33" fontStyle="Arial;16;#0000cc;bold;;" shape="rounded rectagle">
|
||||
<text><![CDATA[SWOT]]></text>
|
||||
<topic id="6" position="290,50" order="0" brColor="#808080"
|
||||
bgColor="#ffff33" fontStyle="Arial;14;#0000cc;bold;;" shape="rounded rectagle">
|
||||
<text><![CDATA[]]></text>
|
||||
<topic id="7" position="380,-375" order="0" shape="line">
|
||||
<text><![CDATA[l'entreprise a aujourd'hui un potentiel important]]></text>
|
||||
<topic id="8" position="470,-400" order="0" shape="line">
|
||||
<text><![CDATA[compétences professionnel]]></text>
|
||||
</topic>
|
||||
<topic id="9" position="470,-375" order="1" shape="line">
|
||||
<text><![CDATA[citoyen]]></text>
|
||||
</topic>
|
||||
<topic id="10" position="470,-350" order="2" shape="line">
|
||||
<text><![CDATA[forte chance de réussite]]></text>
|
||||
</topic>
|
||||
<topic position="-290,-25" order="0" text="SWOT" shape="rounded rectagle" id="5" fontStyle=";;;;Arial;8;#0000cc;;;" bgColor="#808080">
|
||||
<topic position="290,-50" order="0" shape="rounded rectagle" id="6" fontStyle=";;;;Arial;8;#0000cc;;;" bgColor="#808080">
|
||||
<topic position="-290,-437" order="0" text="l'entreprise a aujourd'hui un potentiel important" shape="line" id="7">
|
||||
<topic position="290,-474" order="0" text="compétences professionnel" shape="line" id="8"/>
|
||||
<topic position="380,-449" order="1" text="citoyen" shape="line" id="9"/>
|
||||
<topic position="470,-424" order="2" text="forte chance de réussite" shape="line" id="10"/>
|
||||
</topic>
|
||||
<topic id="11" position="380,-350" order="1" shape="line">
|
||||
<text><![CDATA[apporter des idées et propsitions à des questions sociétales]]></text>
|
||||
<topic position="-380,-412" order="1" text="apporter des idées et propsitions à des questions sociétales" shape="line" id="11"/>
|
||||
<topic position="-470,-387" order="2" text="notre manière d"y répondre avec notamment les technlogies" shape="line" id="12"/>
|
||||
<topic position="-560,-362" order="3" text="l'opportunité et la demande sont fortes aujourd'hui, avec peu de "concurrence"" shape="line" id="13"/>
|
||||
<topic position="-650,-337" order="4" text="ensemble de ressources "rares"" shape="line" id="14"/>
|
||||
<topic position="-740,-312" order="5" text="capacités de recherche et innovation" shape="line" id="15"/>
|
||||
<topic position="-830,-287" order="6" text="motivation du groupe et sens partagé entre membres" shape="line" id="16"/>
|
||||
<topic position="-920,-262" order="7" text="professionnellement : expérience collective et partage d'outils en pratique" shape="line" id="17"/>
|
||||
<topic position="-1010,-237" order="8" text="ouverture vers mode de vie attractif perso / pro" shape="line" id="18"/>
|
||||
<topic position="-1100,-212" order="9" text="potentiel humain, humaniste et citoyen" shape="line" id="19"/>
|
||||
<topic position="-1190,-187" order="10" text="assemblage entre atelier et outillage" shape="line" id="20"/>
|
||||
<topic position="-1280,-162" order="11" text="capacité de réponder en local et en global" shape="line" id="21"/>
|
||||
<topic position="-1370,-137" order="12" text="associatif : contxte de crise multimorphologique / positionne référence en réflexion et usages" shape="line" id="22"/>
|
||||
<topic position="-1460,-112" order="13" text="réseau régional et mondial de l'économie de la ,connaisance" shape="line" id="23"/>
|
||||
<topic position="-1550,-87" order="14" text="asso prend pied dans le monde de la recherche" shape="line" id="24"/>
|
||||
<topic position="-1640,-62" order="15" text="labo de l'innovation sociopolitique" shape="line" id="25"/>
|
||||
<topic position="-1730,-37" order="16" text="acteur valable avec pouvoirs et acteurs en place" shape="line" id="26"/>
|
||||
<topic position="-1820,-12" order="17" text="autonomie par prestations et services" shape="line" id="27"/>
|
||||
<topic position="-1910,13" order="18" text="triptique" shape="line" id="28">
|
||||
<topic position="1910,-24" order="0" text="éthique de la discussion" shape="line" id="29"/>
|
||||
<topic position="2000,1" order="1" text="pari de la délégation" shape="line" id="30"/>
|
||||
<topic position="2090,26" order="2" text="art de la décision" shape="line" id="31"/>
|
||||
</topic>
|
||||
<topic id="12" position="380,-325" order="2" shape="line">
|
||||
<text><![CDATA[notre manière d"y répondre avec notamment les technlogies]]></text>
|
||||
</topic>
|
||||
<topic id="13" position="380,-300" order="3" shape="line">
|
||||
<text><![CDATA[l'opportunité et la demande sont fortes aujourd'hui, avec peu de "concurrence"]]></text>
|
||||
</topic>
|
||||
<topic id="14" position="380,-275" order="4" shape="line">
|
||||
<text><![CDATA[ensemble de ressources "rares"]]></text>
|
||||
</topic>
|
||||
<topic id="15" position="380,-250" order="5" shape="line">
|
||||
<text><![CDATA[capacités de recherche et innovation]]></text>
|
||||
</topic>
|
||||
<topic id="16" position="380,-225" order="6" shape="line">
|
||||
<text><![CDATA[motivation du groupe et sens partagé entre membres]]></text>
|
||||
</topic>
|
||||
<topic id="17" position="380,-200" order="7" shape="line">
|
||||
<text><![CDATA[professionnellement : expérience collective et partage d'outils en pratique]]></text>
|
||||
</topic>
|
||||
<topic id="18" position="380,-175" order="8" shape="line">
|
||||
<text><![CDATA[ouverture vers mode de vie attractif perso / pro]]></text>
|
||||
</topic>
|
||||
<topic id="19" position="380,-150" order="9" shape="line">
|
||||
<text><![CDATA[potentiel humain, humaniste et citoyen]]></text>
|
||||
</topic>
|
||||
<topic id="20" position="380,-125" order="10" shape="line">
|
||||
<text><![CDATA[assemblage entre atelier et outillage]]></text>
|
||||
</topic>
|
||||
<topic id="21" position="380,-100" order="11" shape="line">
|
||||
<text><![CDATA[capacité de réponder en local et en global]]></text>
|
||||
</topic>
|
||||
<topic id="22" position="380,-75" order="12" shape="line">
|
||||
<text><![CDATA[associatif : contxte de crise multimorphologique / positionne référence en réflexion et usages]]></text>
|
||||
</topic>
|
||||
<topic id="23" position="380,-50" order="13" shape="line">
|
||||
<text><![CDATA[réseau régional et mondial de l'économie de la ,connaisance]]></text>
|
||||
</topic>
|
||||
<topic id="24" position="380,-25" order="14" shape="line">
|
||||
<text><![CDATA[asso prend pied dans le monde de la recherche]]></text>
|
||||
</topic>
|
||||
<topic id="25" position="380,0" order="15" shape="line">
|
||||
<text><![CDATA[labo de l'innovation sociopolitique]]></text>
|
||||
</topic>
|
||||
<topic id="26" position="380,25" order="16" shape="line">
|
||||
<text><![CDATA[acteur valable avec pouvoirs et acteurs en place]]></text>
|
||||
</topic>
|
||||
<topic id="27" position="380,50" order="17" shape="line">
|
||||
<text><![CDATA[autonomie par prestations et services]]></text>
|
||||
</topic>
|
||||
<topic id="28" position="380,75" order="18" shape="line">
|
||||
<text><![CDATA[triptique]]></text>
|
||||
<topic id="29" position="470,50" order="0" shape="line">
|
||||
<text><![CDATA[éthique de la discussion]]></text>
|
||||
</topic>
|
||||
<topic id="30" position="470,75" order="1" shape="line">
|
||||
<text><![CDATA[pari de la délégation]]></text>
|
||||
</topic>
|
||||
<topic id="31" position="470,100" order="2" shape="line">
|
||||
<text><![CDATA[art de la décision]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="32" position="380,100" order="19" shape="line">
|
||||
<text><![CDATA[réussir à caler leprojet en adéquation avec le contexte actuel]]></text>
|
||||
</topic>
|
||||
<topic id="33" position="380,125" order="20" shape="line">
|
||||
<text><![CDATA[assoc : grouper des personnes qui développent le concept]]></text>
|
||||
</topic>
|
||||
<topic id="34" position="380,150" order="21" shape="line">
|
||||
<text><![CDATA[traduire les belles pensées au niveau du citoyen]]></text>
|
||||
<topic id="35" position="470,125" order="0" shape="line">
|
||||
<text><![CDATA[compréhension]]></text>
|
||||
</topic>
|
||||
<topic id="36" position="470,150" order="1" shape="line">
|
||||
<text><![CDATA[adhésion]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="37" position="380,175" order="22" shape="line">
|
||||
<text><![CDATA[ressources contributeurs réfréents]]></text>
|
||||
</topic>
|
||||
<topic id="38" position="380,200" order="23" shape="line">
|
||||
<text><![CDATA[reconnaissance et référence exemplaires]]></text>
|
||||
</topic>
|
||||
<topic id="39" position="380,225" order="24" shape="line">
|
||||
<text><![CDATA[financeements suffisants pour bien exister]]></text>
|
||||
</topic>
|
||||
<topic id="40" position="380,250" order="25" shape="line">
|
||||
<text><![CDATA[notre organisation est claire]]></text>
|
||||
</topic>
|
||||
<topic id="41" position="380,275" order="26" shape="line">
|
||||
<text><![CDATA[prendre des "marchés émergent"]]></text>
|
||||
</topic>
|
||||
<topic id="42" position="380,300" order="27" shape="line">
|
||||
<text><![CDATA[double stratup avec succes-story]]></text>
|
||||
</topic>
|
||||
<topic id="43" position="380,325" order="28" shape="line">
|
||||
<text><![CDATA[engageons une activité présentielle forte, conviviale et exemplaire]]></text>
|
||||
</topic>
|
||||
<topic id="44" position="380,350" order="29" shape="line">
|
||||
<text><![CDATA[attirer de nouveaux membres locomotives]]></text>
|
||||
</topic>
|
||||
<topic id="45" position="380,375" order="30" shape="line">
|
||||
<text><![CDATA[pratiquons en interne et externe une gouvernance explaire etune citoyennté de rêve]]></text>
|
||||
<topic position="-2000,38" order="19" text="réussir à caler leprojet en adéquation avec le contexte actuel" shape="line" id="32"/>
|
||||
<topic position="-2090,63" order="20" text="assoc : grouper des personnes qui développent le concept" shape="line" id="33"/>
|
||||
<topic position="-2180,88" order="21" text="traduire les belles pensées au niveau du citoyen" shape="line" id="34">
|
||||
<topic position="2180,63" order="0" text="compréhension" shape="line" id="35"/>
|
||||
<topic position="2270,88" order="1" text="adhésion" shape="line" id="36"/>
|
||||
</topic>
|
||||
<topic position="-2270,113" order="22" text="ressources contributeurs réfréents" shape="line" id="37"/>
|
||||
<topic position="-2360,138" order="23" text="reconnaissance et référence exemplaires" shape="line" id="38"/>
|
||||
<topic position="-2450,163" order="24" text="financeements suffisants pour bien exister" shape="line" id="39"/>
|
||||
<topic position="-2540,188" order="25" text="notre organisation est claire" shape="line" id="40"/>
|
||||
<topic position="-2630,213" order="26" text="prendre des "marchés émergent"" shape="line" id="41"/>
|
||||
<topic position="-2720,238" order="27" text="double stratup avec succes-story" shape="line" id="42"/>
|
||||
<topic position="-2810,263" order="28" text="engageons une activité présentielle forte, conviviale et exemplaire" shape="line" id="43"/>
|
||||
<topic position="-2900,288" order="29" text="attirer de nouveaux membres locomotives" shape="line" id="44"/>
|
||||
<topic position="-2990,313" order="30" text="pratiquons en interne et externe une gouvernance explaire etune citoyennté de rêve" shape="line" id="45"/>
|
||||
</topic>
|
||||
<topic id="46" position="290,75" order="1" brColor="#808080"
|
||||
bgColor="#ffff33" fontStyle="Arial;14;#0000cc;bold;;" shape="rounded rectagle">
|
||||
<text><![CDATA[Risques : cauchemars, dangers]]></text>
|
||||
<topic id="47" position="380,-225" order="0" shape="line">
|
||||
<text><![CDATA[disparition des forces vives, départ de membres actuels]]></text>
|
||||
<topic position="380,-25" order="1" text="Risques : cauchemars, dangers" shape="rounded rectagle" id="46" fontStyle=";;;;Arial;8;#0000cc;;;" bgColor="#808080">
|
||||
<topic position="-380,-312" order="0" text="disparition des forces vives, départ de membres actuels" shape="line" id="47"/>
|
||||
<topic position="-470,-287" order="1" text="opportunités atteignables mais difficile" shape="line" id="48"/>
|
||||
<topic position="-560,-262" order="2" text="difficultés de travailler ensemble dans la durée" shape="line" id="49"/>
|
||||
<topic position="-650,-237" order="3" text="risque de rater le train" shape="line" id="50"/>
|
||||
<topic position="-740,-212" order="4" text="sauter dans le dernier wagon et rester à la traîne" shape="line" id="51"/>
|
||||
<topic position="-830,-187" order="5" text="manquer de professionnalisme" shape="line" id="52">
|
||||
<topic position="830,-199" order="0" text="perte de crédibilité" shape="line" id="53"/>
|
||||
</topic>
|
||||
<topic id="48" position="380,-200" order="1" shape="line">
|
||||
<text><![CDATA[opportunités atteignables mais difficile]]></text>
|
||||
<topic position="-920,-162" order="6" text="s'isoler entre nous et perdre le contact avec les autres acteurs" shape="line" id="54"/>
|
||||
<topic position="-1010,-137" order="7" text="perdre la capacité de réponse au global" shape="line" id="55"/>
|
||||
<topic position="-1100,-112" order="8" text="manque de concret, surdimension des reflexions" shape="line" id="56"/>
|
||||
<topic position="-1190,-87" order="9" text="manque d'utilité socioplolitique" shape="line" id="57"/>
|
||||
<topic position="-1280,-62" order="10" text="manque de nouveaux membres actifs, fidéliser" shape="line" id="58"/>
|
||||
<topic position="-1370,-37" order="11" text="faire du surplace et" shape="line" id="59">
|
||||
<topic position="1370,-62" order="0" text="manque innovation" shape="line" id="60"/>
|
||||
<topic position="1460,-37" order="1" shape="line" id="61"/>
|
||||
</topic>
|
||||
<topic id="49" position="380,-175" order="2" shape="line">
|
||||
<text><![CDATA[difficultés de travailler ensemble dans la durée]]></text>
|
||||
<topic position="-1460,-12" order="12" text="ne pas vivre ce que nous affirmons" shape="line" id="62">
|
||||
<topic position="1460,-24" order="0" text="cohérence entre langage gouvernance et la pratique" shape="line" id="63"/>
|
||||
</topic>
|
||||
<topic id="50" position="380,-150" order="3" shape="line">
|
||||
<text><![CDATA[risque de rater le train]]></text>
|
||||
</topic>
|
||||
<topic id="51" position="380,-125" order="4" shape="line">
|
||||
<text><![CDATA[sauter dans le dernier wagon et rester à la traîne]]></text>
|
||||
</topic>
|
||||
<topic id="52" position="380,-100" order="5" shape="line">
|
||||
<text><![CDATA[manquer de professionnalisme]]></text>
|
||||
<topic id="53" position="470,-100" order="0" shape="line">
|
||||
<text><![CDATA[perte de crédibilité]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="54" position="380,-75" order="6" shape="line">
|
||||
<text><![CDATA[s'isoler entre nous et perdre le contact avec les autres acteurs]]></text>
|
||||
</topic>
|
||||
<topic id="55" position="380,-50" order="7" shape="line">
|
||||
<text><![CDATA[perdre la capacité de réponse au global]]></text>
|
||||
</topic>
|
||||
<topic id="56" position="380,-25" order="8" shape="line">
|
||||
<text><![CDATA[manque de concret, surdimension des reflexions]]></text>
|
||||
</topic>
|
||||
<topic id="57" position="380,0" order="9" shape="line">
|
||||
<text><![CDATA[manque d'utilité socioplolitique]]></text>
|
||||
</topic>
|
||||
<topic id="58" position="380,25" order="10" shape="line">
|
||||
<text><![CDATA[manque de nouveaux membres actifs, fidéliser]]></text>
|
||||
</topic>
|
||||
<topic id="59" position="380,50" order="11" shape="line">
|
||||
<text><![CDATA[faire du surplace et]]></text>
|
||||
<topic id="60" position="470,25" order="0" shape="line">
|
||||
<text><![CDATA[manque innovation]]></text>
|
||||
</topic>
|
||||
<topic id="61" position="470,50" order="1" shape="line">
|
||||
<text><![CDATA[]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="62" position="380,75" order="12" shape="line">
|
||||
<text><![CDATA[ne pas vivre ce que nous affirmons]]></text>
|
||||
<topic id="63" position="470,75" order="0" shape="line">
|
||||
<text><![CDATA[cohérence entre langage gouvernance et la pratique]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="64" position="380,100" order="13" shape="line">
|
||||
<text><![CDATA[groupe de base insuffisant]]></text>
|
||||
</topic>
|
||||
<topic id="65" position="380,125" order="14" shape="line">
|
||||
<text><![CDATA[non attractifs / nouveaux]]></text>
|
||||
<topic id="66" position="470,125" order="0" shape="line">
|
||||
<text><![CDATA[pas ennuyants]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="67" position="380,150" order="15" shape="line">
|
||||
<text><![CDATA[pas efficaces en com]]></text>
|
||||
</topic>
|
||||
<topic id="68" position="380,175" order="16" shape="line">
|
||||
<text><![CDATA[trop lent, rater l'opportunité actuelle]]></text>
|
||||
</topic>
|
||||
<topic id="69" position="380,200" order="17" shape="line">
|
||||
<text><![CDATA[débordés par "concurrences"]]></text>
|
||||
</topic>
|
||||
<topic id="70" position="380,225" order="18" shape="line">
|
||||
<text><![CDATA[départs de didier, micvhel, rené, corinne MCD etc]]></text>
|
||||
</topic>
|
||||
<topic id="71" position="380,250" order="19" shape="line">
|
||||
<text><![CDATA[conclits de personnes et schisme entre 2 groupes ennemis]]></text>
|
||||
</topic>
|
||||
<topic id="72" position="380,275" order="20" shape="line">
|
||||
<text><![CDATA[groupe amicale mais très merdique]]></text>
|
||||
</topic>
|
||||
<topic id="73" position="380,300" order="21" shape="line">
|
||||
<text><![CDATA[système autocratique despotique ou sectaire]]></text>
|
||||
</topic>
|
||||
<topic id="74" position="380,325" order="22" shape="line">
|
||||
<text><![CDATA[]]></text>
|
||||
<topic position="-1550,13" order="13" text="groupe de base insuffisant" shape="line" id="64"/>
|
||||
<topic position="-1640,38" order="14" text="non attractifs / nouveaux" shape="line" id="65">
|
||||
<topic position="1640,26" order="0" text="pas ennuyants" shape="line" id="66"/>
|
||||
</topic>
|
||||
<topic position="-1730,63" order="15" text="pas efficaces en com" shape="line" id="67"/>
|
||||
<topic position="-1820,88" order="16" text="trop lent, rater l'opportunité actuelle" shape="line" id="68"/>
|
||||
<topic position="-1910,113" order="17" text="débordés par "concurrences"" shape="line" id="69"/>
|
||||
<topic position="-2000,138" order="18" text="départs de didier, micvhel, rené, corinne MCD etc" shape="line" id="70"/>
|
||||
<topic position="-2090,163" order="19" text="conclits de personnes et schisme entre 2 groupes ennemis" shape="line" id="71"/>
|
||||
<topic position="-2180,188" order="20" text="groupe amicale mais très merdique" shape="line" id="72"/>
|
||||
<topic position="-2270,213" order="21" text="système autocratique despotique ou sectaire" shape="line" id="73"/>
|
||||
<topic position="-2360,238" order="22" shape="line" id="74"/>
|
||||
</topic>
|
||||
</topic>
|
||||
</topic>
|
||||
</map>
|
||||
</map>
|
@ -1,187 +1,34 @@
|
||||
<map name="82740" version="tango">
|
||||
<map name="enc" version="tango">
|
||||
<topic central="true" text="Artigos GF comentários interessantes" id="1">
|
||||
<topic position="-466,16" order="3"
|
||||
text="Baraloto et al. 2010. Functional trait variation and sampling strategies in species-rich plant communities"
|
||||
shape="rectagle" id="5" bgColor="#cccccc" brColor="#cccccc">
|
||||
<topic position="-1042,-163" order="0" id="6">
|
||||
<text><![CDATA[Therecent growth of large functional trait data
|
||||
bases has been fuelled by standardized protocols forthe
|
||||
measurement of individual functional traits and intensive
|
||||
efforts to compile trait data(Cornelissen etal. 2003; Chave etal. 2009). Nonetheless, there remains no consensusfor
|
||||
the most appropriate sampling design so that traits can be
|
||||
scaled from the individuals on whom measurements are
|
||||
made to the community or ecosystem levels at which infer-
|
||||
ences are drawn (Swenson etal. 2006,2007,Reich,Wright
|
||||
& Lusk 2007;Kraft,Valencia & Ackerly 2008). ]]></text>
|
||||
<topic position="-200,-50" order="1" text="Baraloto et al. 2010. Functional trait variation and sampling strategies in species-rich plant communities" shape="rectagle" id="5" bgColor="#cccccc">
|
||||
<topic position="-200,-350" order="1" shape="line" id="6"/>
|
||||
<topic position="290,-150" order="0" shape="line" id="7"/>
|
||||
<topic position="380,-125" order="1" shape="line" id="8"/>
|
||||
<topic position="470,-100" order="2" text="Falar que a escolha das categorias de sucessão e dos parâmetros ou característica dos indivíduos que serão utilizadas dependera da facilidade de coleta dos dados e do custo monetário e temporal." shape="line" id="9"/>
|
||||
<topic position="560,-75" order="3" text="Ver se classifica sucessão por densidade de tronco para citar no artigo como exemplo de outros atributos além de germinação e ver se e custoso no tempo e em dinheiro" shape="line" id="12"/>
|
||||
<topic position="650,-50" order="4" text="Intensas amostragens de experimentos simples tem maior retorno em acurácia de estimativa e de custo tb." shape="line" id="13"/>
|
||||
<topic position="740,-25" order="5" shape="line" id="14">
|
||||
<note><![CDATA[[]]></note>
|
||||
</topic>
|
||||
<topic position="-918,-93" order="1" id="7">
|
||||
<text><![CDATA[However, the fast pace of
|
||||
development of plant trait meta-analyses also suggests that
|
||||
trait acquisition in the field is a factor limiting the growth of
|
||||
plant trait data bases.]]></text>
|
||||
</topic>
|
||||
<topic position="-932,-7" order="2" id="8">
|
||||
<text><![CDATA[We measured
|
||||
traits for every individual tree in nine 1-ha plots in tropical
|
||||
lowland rainforest (N = 4709). Each plant was sampled for
|
||||
10 functional traits related to wood and leaf morphology and
|
||||
ecophysiology. Here, we contrast the trait means and variances
|
||||
obtained with a full sampling strategy with those of
|
||||
other sampling designs used in the recent literature, which we
|
||||
obtain by simulation. We assess the differences in community-
|
||||
level estimates of functional trait means and variances
|
||||
among design types and sampling intensities. We then contrast
|
||||
the relative costs of these designs and discuss the appropriateness
|
||||
of different sampling designs and intensities for
|
||||
different questions and systems.]]></text>
|
||||
</topic>
|
||||
<topic position="-1226,67" order="3"
|
||||
text="Falar que a escolha das categorias de sucessão e dos parâmetros ou característica dos indivíduos que serão utilizadas dependera da facilidade de coleta dos dados e do custo monetário e temporal."
|
||||
id="9"/>
|
||||
<topic position="-1163,93" order="4"
|
||||
text="Ver se classifica sucessão por densidade de tronco para citar no artigo como exemplo de outros atributos além de germinação e ver se e custoso no tempo e em dinheiro"
|
||||
id="12"/>
|
||||
<topic position="-1026,119" order="5"
|
||||
text="Intensas amostragens de experimentos simples tem maior retorno em acurácia de estimativa e de custo tb."
|
||||
id="13"/>
|
||||
<topic position="-937,165" order="6" id="14">
|
||||
<text><![CDATA[With regard to estimating mean trait values, strategies
|
||||
alternative to BRIDGE were consistently cost-effective. On
|
||||
the other hand, strategies alternative to BRIDGE clearly
|
||||
failed to accurately estimate the variance of trait values. This
|
||||
indicates that in situations where accurate estimation of plotlevel
|
||||
variance is desired, complete censuses are essential.]]></text>
|
||||
<note>
|
||||
<![CDATA[Isso significa que estudos de característica de história de vida compensam? Ver nos m&m.]]></note>
|
||||
</topic>
|
||||
<topic position="-915,219" order="7" id="15">
|
||||
<text><![CDATA[We suggest that, in these studies,
|
||||
the investment in complete sampling may be worthwhile
|
||||
for at least some traits.]]></text>
|
||||
<note>
|
||||
<![CDATA[Falar que isso corrobora nossa sugestão de utilizar poucas medidas, mas que elas sejam confiáveis.]]></note>
|
||||
<topic position="830,0" order="6" shape="line" id="15">
|
||||
<note><![CDATA[[]]></note>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic position="297,0" order="0" text="Chazdon 2010. Biotropica. 42(1): 31–40" shape="rectagle" id="17"
|
||||
fontStyle=";;#000000;;;" bgColor="#cccccc" brColor="#cccccc">
|
||||
<topic position="586,-383" order="1" id="22">
|
||||
<text><![CDATA[Here, we develop a new approach that links functional attributes
|
||||
of tree species with studies of forest recovery and regional
|
||||
land-use transitions (Chazdon et al. 2007). Grouping species according
|
||||
to their functional attributes or demographic rates provides
|
||||
insight into both applied and theoretical questions, such as selecting
|
||||
species for reforestation programs, assessing ecosystem services, and
|
||||
understanding community assembly processes in tropical forests
|
||||
(Diaz et al. 2007, Kraft et al. 2008).]]></text>
|
||||
</topic>
|
||||
<topic position="583,-313" order="2" id="23">
|
||||
<text><![CDATA[Since we have data on leaf
|
||||
and wood functional traits for only a subset of the species in our
|
||||
study sites, we based our functional type classification on information
|
||||
for a large number of tree species obtained through vegetation
|
||||
monitoring studies.]]></text>
|
||||
</topic>
|
||||
<topic position="2883,-437" order="0"
|
||||
text="Falar no artigo que esse trabalho fala que é inadequada a divisão entre pioneira e não pioneira devido a grande variação que há entre elas. Além de terem descoberto que durante a ontogenia a resposta a luminosidade muda dentro de uma mesma espécie. Porém recomendar que essa classificação continue sendo usada em curto prazo enquanto não há informações confiáveis suficiente para esta simples classificação. Outras classificações como esta do artigo são bem vinda, contanto que tenham dados confiáveis. Porém dados estáticos já são difíceis de se obter, dados temporais, como taxa de crescimento em diâmetro ou altura, são mais difíceis ainda. Falar que vários tipos de classificações podem ser utilizadas e quanto mais detalhe melhor, porém os dados é que são mais limitantes. Se focarmos em dados de germinação e crescimento limitantes, como sugerem sainete e whitmore, da uma idéia maismrápida e a curto prazo da classificação destas espécies. Depois com o tempo conseguiremos construir classificações mais detalhadas e com mais dados confiáveis. "
|
||||
id="24"/>
|
||||
<topic position="720,-239" order="3" id="25">
|
||||
<text><![CDATA[Our approach avoided preconceived notions of successional
|
||||
behavior or shade tolerance of tree species by developing an objective
|
||||
and independent classification of functional types based on vegetation
|
||||
monitoring data from permanent sample plots in mature and
|
||||
secondary forests of northeastern Costa Rica (Finegan et al. 1999,
|
||||
Chazdon et al. 2007).We apply an independent, prior classification
|
||||
of 293 tree species from our study region into five functional types, based on two species attributes: canopy strata and diameter growth
|
||||
rates for individuals Z10 cm dbh (Finegan et al. 1999, Salgado-
|
||||
Negret 2007).]]></text>
|
||||
</topic>
|
||||
<topic position="575,-169" order="4" id="26">
|
||||
<text><![CDATA[Our results demonstrate strong linkages between functional
|
||||
types defined by adult height and growth rates of large trees and
|
||||
colonization groups based on the timing of seedling, sapling, and
|
||||
tree recruitment in secondary forests.]]></text>
|
||||
</topic>
|
||||
<topic position="588,-115" order="5" id="27">
|
||||
<text><![CDATA[These results allow us to move beyond earlier conceptual
|
||||
frameworks of tropical forest secondary succession developed
|
||||
by Finegan (1996) and Chazdon (2008) based on subjective groupings,
|
||||
such as pioneers and shade-tolerant species (Swaine &
|
||||
Whitmore 1988).]]></text>
|
||||
</topic>
|
||||
<topic position="582,-37" order="6" id="28">
|
||||
<text><![CDATA[Reproductive traits, such as dispersal mode, pollination mode,
|
||||
and sexual system, were ultimately not useful in delimiting tree
|
||||
functional types for the tree species examined here (Salgado-Negret
|
||||
2007). Thus, although reproductive traits do vary quantitatively in
|
||||
abundance between secondary and mature forests in our landscape
|
||||
(Chazdon et al. 2003), they do not seem to be important drivers of
|
||||
successional dynamics of trees Z10 cm dbh. For seedlings, however,
|
||||
dispersal mode and seed size are likely to play an important
|
||||
role in community dynamics during succession (Dalling&Hubbell
|
||||
2002).]]></text>
|
||||
</topic>
|
||||
<topic position="599,125" order="7" id="29">
|
||||
<text><![CDATA[Our classification of colonization groups defies the traditional
|
||||
dichotomy between ‘late successional’ shade-tolerant and ‘early successional’
|
||||
pioneer species. Many tree species, classified here as
|
||||
regenerating pioneers on the basis of their population structure in
|
||||
secondary forests, are common in both young secondary forest and
|
||||
mature forests in this region (Guariguata et al. 1997), and many are
|
||||
important timber species (Vilchez et al. 2008). These generalists are
|
||||
by far the most abundant species of seedlings and saplings, conferring
|
||||
a high degree of resilience in the wet tropical forests of NE
|
||||
Costa Rica (Norden et al. 2009, Letcher & Chazdon 2009). The
|
||||
high abundance of regenerating pioneers in seedling and sapling
|
||||
size classes clearly shows that species with shade-tolerant seedlings
|
||||
can also recruit as trees early in succession. For these species, early
|
||||
tree colonization enhances seedling and sapling recruitment during
|
||||
the first 20–30 yr of succession, due to local seed rain. Species
|
||||
abundance and size distribution depend strongly on chance colonization
|
||||
events early in succession (Chazdon 2008). Other studies
|
||||
have shown that mature forest species are able to colonize early in
|
||||
succession (Finegan 1996, van Breugel et al. 2007, Franklin & Rey
|
||||
2007, Ochoa-Gaona et al. 2007), emphasizing the importance of
|
||||
initial floristic composition in the determination of successional
|
||||
pathways and rates of forest regrowth. On the other hand, significant
|
||||
numbers of species in our sites (40% overall and the majority
|
||||
of rare species) colonized only after canopy closure, and these species
|
||||
may not occur as mature individuals until decades after agricultural
|
||||
abandonment.]]></text>
|
||||
</topic>
|
||||
<topic position="589,263" order="8" id="30">
|
||||
<text><![CDATA[Classifying functional types
|
||||
based on functional traits with low plasticity, such as wood density
|
||||
and seed size, could potentially serve as robust proxies for demographic
|
||||
variables (Poorter et al. 2008, Zhang et al. 2008).]]></text>
|
||||
</topic>
|
||||
<topic position="612,369" order="9" id="31">
|
||||
<text><![CDATA[CONDIT, R., S. P. HUBBELL, AND R. B. FOSTER. 1996. Assessing the response of
|
||||
plant functional types in tropical forests to climatic change. J. Veg. Sci.
|
||||
7: 405–416.
|
||||
DALLING, J. S., AND S. P. HUBBELL. 2002. Seed size, growth rate and gap microsite
|
||||
conditions as determinants of recruitment success for pioneer species.
|
||||
J. Ecol. 90: 557–568.
|
||||
FINEGAN, B. 1996. Pattern and process in neotropical secondary forests: The first
|
||||
100 years of succession. Trends Ecol. Evol. 11: 119–124.
|
||||
POORTER, L., S. J. WRIGHT, H. PAZ, D. D. ACKERLY, R. CONDIT, G.
|
||||
IBARRA-MANRI´QUEZ, K. E. HARMS, J. C. LICONA, M.MARTI´NEZ-RAMOS,
|
||||
S. J. MAZER, H. C. MULLER-LANDAU, M. PEN˜ A-CLAROS, C. O. WEBB,
|
||||
AND I. J. WRIGHT. 2008. Are functional traits good predictors of demographic
|
||||
rates? Evidence from five Neotropical forests. Ecology 89:
|
||||
1908–1920.
|
||||
ZHANG, Z. D., R. G. ZANG, AND Y. D. QI. 2008. Spatiotemporal patterns and
|
||||
dynamics of species richness and abundance of woody plant functional
|
||||
groups in a tropical forest landscape of Hainan Island, South China.
|
||||
J. Integr. Plant Biol. 50: 547–558.
|
||||
]]></text>
|
||||
</topic>
|
||||
<topic position="-290,-12" order="0" text="Chazdon 2010. Biotropica. 42(1): 31–40" shape="rectagle" id="17" fontStyle=";;;;;;#000000;;;" bgColor="#cccccc">
|
||||
<topic position="290,-137" order="0" shape="line" id="22"/>
|
||||
<topic position="380,-112" order="1" shape="line" id="23"/>
|
||||
<topic position="470,-87" order="2" text="Falar no artigo que esse trabalho fala que é inadequada a divisão entre pioneira e não pioneira devido a grande variação que há entre elas. Além de terem descoberto que durante a ontogenia a resposta a luminosidade muda dentro de uma mesma espécie. Porém recomendar que essa classificação continue sendo usada em curto prazo enquanto não há informações confiáveis suficiente para esta simples classificação. Outras classificações como esta do artigo são bem vinda, contanto que tenham dados confiáveis. Porém dados estáticos já são difíceis de se obter, dados temporais, como taxa de crescimento em diâmetro ou altura, são mais difíceis ainda. Falar que vários tipos de classificações podem ser utilizadas e quanto mais detalhe melhor, porém os dados é que são mais limitantes. Se focarmos em dados de germinação e crescimento limitantes, como sugerem sainete e whitmore, da uma idéia maismrápida e a curto prazo da classificação destas espécies. Depois com o tempo conseguiremos construir classificações mais detalhadas e com mais dados confiáveis. " shape="line" id="24"/>
|
||||
<topic position="560,-62" order="3" shape="line" id="25"/>
|
||||
<topic position="650,-37" order="4" shape="line" id="26"/>
|
||||
<topic position="740,-12" order="5" shape="line" id="27"/>
|
||||
<topic position="830,13" order="6" shape="line" id="28"/>
|
||||
<topic position="920,38" order="7" shape="line" id="29"/>
|
||||
<topic position="1010,63" order="8" shape="line" id="30"/>
|
||||
<topic position="1100,88" order="9" shape="line" id="31"/>
|
||||
</topic>
|
||||
<topic position="-313,-224" order="1" text="Poorter 1999. Functional Ecology. 13:396-410" shape="rectagle"
|
||||
id="2" fontStyle=";;#000000;;;" bgColor="#cccccc" brColor="#cccccc">
|
||||
<topic position="-619,-221" order="0" text="Espécies pioneiras crescem mais rápido do que as não pioneiras"
|
||||
id="3">
|
||||
<topic position="-980,-221" order="0"
|
||||
text="Tolerância a sombra está relacionada com persistência e não com crescimento" id="4"/>
|
||||
<topic position="-380,0" order="1" text="Poorter 1999. Functional Ecology. 13:396-410" shape="rectagle" id="2" fontStyle=";;;;;;#000000;;;" bgColor="#cccccc">
|
||||
<topic position="380,-12" order="0" text="Espécies pioneiras crescem mais rápido do que as não pioneiras" shape="line" id="3">
|
||||
<topic position="-380,-24" order="0" text="Tolerância a sombra está relacionada com persistência e não com crescimento" shape="line" id="4"/>
|
||||
</topic>
|
||||
</topic>
|
||||
</topic>
|
||||
|
@ -1,15 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<map name="basic" version="tango">
|
||||
<topic central="true" id="0" position="0,0" shape="rounded rectagle">
|
||||
<text><![CDATA[i18n]]></text>
|
||||
<topic id="1" order="0" position="200,0" shape="line">
|
||||
<text><![CDATA[Este es un é con acento]]></text>
|
||||
</topic>
|
||||
<topic id="2" order="0" position="-200,0" shape="line">
|
||||
<text><![CDATA[Este es una ñ]]></text>
|
||||
</topic>
|
||||
<topic id="3" order="4" position="200,100" shape="line">
|
||||
<text><![CDATA[這是一個樣本 Japanise。]]></text>
|
||||
</topic>
|
||||
<map name="i18n" version="tango">
|
||||
<topic central="true" text="i18n" id="1">
|
||||
<topic position="200,-50" order="0" text="Este es un é con acento" shape="line" id="1"/>
|
||||
<topic position="-290,-12" order="0" text="Este es una ñ" shape="line" id="2"/>
|
||||
<topic position="-380,0" order="1" text="這是一個樣本 Japanise。" shape="line" id="3"/>
|
||||
</topic>
|
||||
</map>
|
||||
</map>
|
@ -1,14 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<map name="basic" version="tango">
|
||||
<topic central="true" id="0" position="0,0" shape="rounded rectagle">
|
||||
<text><![CDATA[أَبْجَدِيَّة عَرَبِيَّة]]></text>
|
||||
<topic id="1" order="0" position="200,0" shape="line">
|
||||
<text><![CDATA[أَبْجَدِيَّة عَرَبِ]]></text>
|
||||
<note><![CDATA[This is a not in languange أَبْجَدِيَّة عَرَبِ]]></note>
|
||||
</topic>
|
||||
<topic id="2" order="0" position="-200,0" shape="line">
|
||||
<text><![CDATA[Long text node:
|
||||
أَبْجَدِيَّة عَرَب]]></text>
|
||||
<map name="i18n2" version="tango">
|
||||
<topic central="true" text="أَبْجَدِيَّة عَرَبِيَّة" id="1">
|
||||
<topic position="200,0" order="0" text="أَبْجَدِيَّة عَرَبِ" shape="line" id="1">
|
||||
<note><![CDATA[[]]></note>
|
||||
</topic>
|
||||
<topic position="-290,-12" order="0" shape="line" id="2"/>
|
||||
</topic>
|
||||
</map>
|
||||
</map>
|
@ -1,120 +1,36 @@
|
||||
<map name="70866" version="tango">
|
||||
<topic central="true" text="La computadora" shape="rounded rectagle" id="1" fontStyle="Verdana;15;#feffff;bold;;"
|
||||
bgColor="#cc0000" brColor="#660000">
|
||||
<topic position="220,0" order="0" shape="rounded rectagle" id="21" fontStyle=";10;#feffff;bold;;"
|
||||
bgColor="#a64d79" brColor="#4c1130">
|
||||
<text><![CDATA[Hardware
|
||||
(componentes físicos)]]></text>
|
||||
<topic position="386,-29" order="0" shape="rounded rectagle" id="25" fontStyle=";8;#feffff;;;"
|
||||
bgColor="#c27ba0" brColor="#4c1130">
|
||||
<text><![CDATA[Entrada de datos
|
||||
]]></text>
|
||||
<topic position="558,-34" order="0" shape="rounded rectagle" id="28" fontStyle=";8;#000000;;;"
|
||||
bgColor="#ead1dc" brColor="#4c1130">
|
||||
<text><![CDATA[ Ratón, Teclado, Joystick,
|
||||
Cámara digital, Micrófono, Escáner.]]></text>
|
||||
</topic>
|
||||
<map name="issue" version="tango">
|
||||
<topic central="true" text="La computadora" id="1" fontStyle=";;;;;;#feffff;;;" bgColor="#cc0000">
|
||||
<topic position="200,0" order="0" shape="rounded rectagle" id="21" fontStyle=";;;;;8;#feffff;;;" bgColor="#4c1130">
|
||||
<topic position="200,-100" order="0" shape="rounded rectagle" id="25" fontStyle=";;;;;8;#feffff;;;" bgColor="#4c1130">
|
||||
<topic position="200,0" order="0" shape="rounded rectagle" id="28" fontStyle=";;;;;8;#000000;;;" bgColor="#4c1130"/>
|
||||
</topic>
|
||||
<topic position="383,0" order="1" text="Salida de datos" shape="rounded rectagle" id="29"
|
||||
fontStyle=";8;#feffff;;;" bgColor="#c27ba0" brColor="#4c1130">
|
||||
<topic position="554,0" order="0" shape="rounded rectagle" id="30" fontStyle=";8;#000000;;;"
|
||||
bgColor="#ead1dc" brColor="#4c1130">
|
||||
<text><![CDATA[Monitor, Impresora, Bocinas, Plóter.
|
||||
]]></text>
|
||||
</topic>
|
||||
<topic position="-290,-37" order="0" text="Salida de datos" shape="rounded rectagle" id="29" fontStyle=";;;;;8;#feffff;;;" bgColor="#4c1130">
|
||||
<topic position="290,-49" order="0" shape="rounded rectagle" id="30" fontStyle=";;;;;8;#000000;;;" bgColor="#4c1130"/>
|
||||
</topic>
|
||||
<topic position="387,40" order="2" text="Almacenamiento" shape="rounded rectagle" id="31"
|
||||
fontStyle=";8;#feffff;;;" bgColor="#c27ba0" brColor="#4c1130">
|
||||
<topic position="553,35" order="0" shape="rounded rectagle" id="32" fontStyle=";8;#000000;;;"
|
||||
bgColor="#ead1dc" brColor="#4c1130">
|
||||
<text><![CDATA[Disquete, Disco compacto, DVD,
|
||||
BD, Disco duro, Memoria flash.]]></text>
|
||||
</topic>
|
||||
<topic position="-380,-12" order="1" text="Almacenamiento" shape="rounded rectagle" id="31" fontStyle=";;;;;8;#feffff;;;" bgColor="#4c1130">
|
||||
<topic position="380,-24" order="0" shape="rounded rectagle" id="32" fontStyle=";;;;;8;#000000;;;" bgColor="#4c1130"/>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic position="-314,-72" order="1" shape="rectagle" id="59" fontStyle=";8;#000000;bold;;" bgColor="#bf9000"
|
||||
brColor="#7f6000">
|
||||
<text><![CDATA[Software
|
||||
(Programas y datos con los que funciona la computadora)
|
||||
]]></text>
|
||||
<topic position="-664,-145" order="0" shape="rectagle" id="92" fontStyle=";8;#000000;normal;;"
|
||||
bgColor="#f1c232" brColor="#7f6000">
|
||||
<text><![CDATA[Software de Sistema:Permite el entendimiento
|
||||
entre el usuario y la maquina.]]></text>
|
||||
<topic position="-883,-174" order="0" text="Microsoft Windows" shape="rectagle" id="101"
|
||||
fontStyle=";8;#000000;;;" bgColor="#ffd966" brColor="#7f6000"/>
|
||||
<topic position="-864,-145" order="1" text="GNU/LINUX" shape="rectagle" id="106"
|
||||
fontStyle=";8;#000000;;;" bgColor="#ffd966" brColor="#7f6000"/>
|
||||
<topic position="-846,-116" order="2" text="MAC " shape="rectagle" id="107" fontStyle=";8;#000000;;;"
|
||||
bgColor="#ffd966" brColor="#7f6000"/>
|
||||
<topic position="-290,-25" order="0" shape="rectagle" id="59" fontStyle=";;;;;8;#000000;;;" bgColor="#7f6000">
|
||||
<topic position="290,-62" order="0" shape="rectagle" id="92" fontStyle=";;;;;8;#000000;;;" bgColor="#7f6000">
|
||||
<topic position="-290,-99" order="0" text="Microsoft Windows" shape="rectagle" id="101" fontStyle=";;;;;8;#000000;;;" bgColor="#7f6000"/>
|
||||
<topic position="-380,-74" order="1" text="GNU/LINUX" shape="rectagle" id="106" fontStyle=";;;;;8;#000000;;;" bgColor="#7f6000"/>
|
||||
<topic position="-470,-49" order="2" text="MAC " shape="rectagle" id="107" fontStyle=";;;;;8;#000000;;;" bgColor="#7f6000"/>
|
||||
</topic>
|
||||
<topic position="-667,-43" order="1" shape="rectagle" id="93" fontStyle=";8;#000000;;;" bgColor="#f1c232"
|
||||
brColor="#7f6000">
|
||||
<text><![CDATA[Software de Aplicación: Permite hacer hojas de
|
||||
calculo navegar en internet, base de datos, etc.]]></text>
|
||||
<topic position="-855,-87" order="0" text="Office" shape="rectagle" id="108" fontStyle=";8;#000000;;;"
|
||||
bgColor="#ffd966" brColor="#783f04"/>
|
||||
<topic position="-869,-58" order="1" text="Libre Office" shape="rectagle" id="109"
|
||||
fontStyle=";8;#000000;;;" bgColor="#ffd966" brColor="#7f6000"/>
|
||||
<topic position="-873,-29" order="2" text="Navegadores" shape="rectagle" id="110"
|
||||
fontStyle=";8;#000000;;;" bgColor="#ffd966" brColor="#7f6000"/>
|
||||
<topic position="-851,0" order="3" text="Msn" shape="rectagle" id="111" fontStyle=";8;#000000;;;"
|
||||
bgColor="#ffd966" brColor="#783f04"/>
|
||||
</topic>
|
||||
<topic position="-590,29" order="2" shape="rectagle" id="94" fontStyle=";8;#000000;;;" bgColor="#f1c232"
|
||||
brColor="#7f6000">
|
||||
<text><![CDATA[Software de Desarrollo
|
||||
]]></text>
|
||||
<topic position="380,-37" order="1" shape="rectagle" id="93" fontStyle=";;;;;8;#000000;;;" bgColor="#7f6000">
|
||||
<topic position="-380,-87" order="0" text="Office" shape="rectagle" id="108" fontStyle=";;;;;8;#000000;;;" bgColor="#783f04"/>
|
||||
<topic position="-470,-62" order="1" text="Libre Office" shape="rectagle" id="109" fontStyle=";;;;;8;#000000;;;" bgColor="#7f6000"/>
|
||||
<topic position="-560,-37" order="2" text="Navegadores" shape="rectagle" id="110" fontStyle=";;;;;8;#000000;;;" bgColor="#7f6000"/>
|
||||
<topic position="-650,-12" order="3" text="Msn" shape="rectagle" id="111" fontStyle=";;;;;8;#000000;;;" bgColor="#783f04"/>
|
||||
</topic>
|
||||
<topic position="470,-12" order="2" shape="rectagle" id="94" fontStyle=";;;;;8;#000000;;;" bgColor="#7f6000"/>
|
||||
</topic>
|
||||
<topic position="-218,116" order="3" text="Tipos de computadora" shape="elipse" id="3" fontStyle=";10;;bold;;">
|
||||
<topic position="-476,58" order="0" text="Computadora personal de escritorio o Desktop" shape="elipse"
|
||||
id="8" fontStyle=";8;;bold;;"/>
|
||||
<topic position="-352,87" order="1" shape="elipse" id="10" fontStyle=";8;;bold;;">
|
||||
<text><![CDATA[PDA
|
||||
]]></text>
|
||||
</topic>
|
||||
<topic position="-360,116" order="2" text="Laptop" shape="elipse" id="11" fontStyle=";8;;bold;;"/>
|
||||
<topic position="-365,145" order="3" text="Servidor" shape="elipse" id="12" fontStyle=";8;;bold;;"/>
|
||||
<topic position="-368,174" order="4" text="Tablet PC" shape="elipse" id="13" fontStyle=";8;;bold;;"/>
|
||||
<topic position="-380,0" order="1" text="Tipos de computadora" shape="rounded rectagle" id="3" fontStyle=";;;;;8;;;;">
|
||||
<topic position="380,-62" order="0" text="Computadora personal de escritorio o Desktop" shape="rounded rectagle" id="8" fontStyle=";;;;;8;;;;"/>
|
||||
<topic position="470,-37" order="1" shape="rounded rectagle" id="10" fontStyle=";;;;;8;;;;"/>
|
||||
<topic position="560,-12" order="2" text="Laptop" shape="rounded rectagle" id="11" fontStyle=";;;;;8;;;;"/>
|
||||
<topic position="650,13" order="3" text="Servidor" shape="rounded rectagle" id="12" fontStyle=";;;;;8;;;;"/>
|
||||
<topic position="740,38" order="4" text="Tablet PC" shape="rounded rectagle" id="13" fontStyle=";;;;;8;;;;"/>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic position="283,192" text="CPU y sus partes internas" shape="rounded rectagle" id="35"
|
||||
fontStyle=";10;#feffff;;;" bgColor="#c27ba0" brColor="#4c1130">
|
||||
<topic position="493,120" order="0" text="Ranuras de expansión o PCI" shape="rounded rectagle" id="36"
|
||||
fontStyle=";8;#000000;;;" bgColor="#ead1dc" brColor="#4c1130"/>
|
||||
<topic position="458,149" order="1" shape="rounded rectagle" id="38" fontStyle=";8;#000000;;;" bgColor="#ead1dc"
|
||||
brColor="#4c1130">
|
||||
<text><![CDATA[Memoria RAM
|
||||
]]></text>
|
||||
</topic>
|
||||
<topic position="466,178" order="2" shape="rounded rectagle" id="40" fontStyle=";8;#000000;;;" bgColor="#ead1dc"
|
||||
brColor="#4c1130">
|
||||
<text><![CDATA[Unidades ópticas
|
||||
]]></text>
|
||||
</topic>
|
||||
<topic position="457,207" order="3" shape="rounded rectagle" id="41" fontStyle=";8;#000000;;;" bgColor="#ead1dc"
|
||||
brColor="#4c1130">
|
||||
<text><![CDATA[Tarjeta Madre
|
||||
]]></text>
|
||||
</topic>
|
||||
<topic position="465,236" order="4" shape="rounded rectagle" id="42" fontStyle=";8;#000000;;;" bgColor="#ead1dc"
|
||||
brColor="#4c1130">
|
||||
<text><![CDATA[Microprocesador
|
||||
]]></text>
|
||||
</topic>
|
||||
<topic position="450,265" order="5" shape="rounded rectagle" id="43" fontStyle=";8;#000000;;;" bgColor="#ead1dc"
|
||||
brColor="#4c1130">
|
||||
<text><![CDATA[Disco Duro
|
||||
]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic position="80,-215" shape="rounded rectagle" id="118" fontStyle=";10;#feffff;;;" bgColor="#cc0000"
|
||||
brColor="#660000">
|
||||
<text><![CDATA[Máquina electrónica que sirve para: escribir, dibujar, pintar,
|
||||
escuchar música, ver videos, calcular, comunicarnos con otras personas, etc-]]></text>
|
||||
</topic>
|
||||
<relationship srcTopicId="35" destTopicId="21" lineType="3" endArrow="true" startArrow="false"/>
|
||||
<relationship srcTopicId="118" destTopicId="1" lineType="3" endArrow="true" startArrow="false"/>
|
||||
<relationship srcTopicId="118" destTopicId="1" lineType="3" endArrow="true" startArrow="false"/>
|
||||
</map>
|
@ -1,51 +1,3 @@
|
||||
<map name="72597" version="tango">
|
||||
<topic central="-1" text="NIF (NORMAS DE INFORMACIÓN FINANCIERA)" shape="rounded rectagle" id="1"
|
||||
fontStyle=";10;#741b47;bold;;" bgColor="#d5a6bd" brColor="#e69138">
|
||||
<icon id="object_pencil"/>
|
||||
</topic>
|
||||
<topic position="6,-284" text="NIF D" shape="rectagle" id="3" fontStyle="Arial;10;;bold;;" bgColor="#509dc0">
|
||||
<note>
|
||||
<![CDATA[Beneficios a los empleados,impuestos a la utilidad, arrendamientos y capitalización de resultado integral .]]></note>
|
||||
<icon id="funy_glasses"/>
|
||||
<topic position="211,-280" order="0" text=" Normas aplicables a problemas de determinación de resultados "
|
||||
id="19"/>
|
||||
</topic>
|
||||
<topic position="46,221" text=" CIRCULANTES" shape="rounded rectagle" id="7" fontStyle="Arial;10;;bold;;"
|
||||
bgColor="#509dc0">
|
||||
<note>
|
||||
<![CDATA[Tratamiento contable de los gastos de registro, colocación, unidades de inversión, aplicación supletoria etc.]]></note>
|
||||
<icon id="object_phone"/>
|
||||
<topic position="236,225" order="0" text="Adquisición temporal de acciones propias" id="22"/>
|
||||
</topic>
|
||||
<topic position="-143,148" text=" NIF A" shape="rectagle" id="6" fontStyle="Arial;10;;bold;;" bgColor="#509dc0">
|
||||
<link url="http://www.youtube.com/watch?v=7YN-sOlkQp0" urlType="url"/>
|
||||
<icon id="time_hourglass"/>
|
||||
<topic position="-254,152" order="0" text=" Marco conceptual" id="20"/>
|
||||
</topic>
|
||||
<topic position="-150,-129" text=" NIF C" shape="rectagle" id="4" fontStyle="Arial;10;;bold;;" bgColor="#509dc0">
|
||||
<link url="https://sites.google.com/site/contabilidadimcpnif/estructura-de-las-nif" urlType="url"/>
|
||||
<icon id="funy_monkey"/>
|
||||
<topic position="-366,-125" order="0"
|
||||
text="Normas aplicables a conceptos específicos de los estados financieros " shape="line" id="13"/>
|
||||
</topic>
|
||||
<topic position="183,-153" text="NIF E" shape="rectagle" id="2" fontStyle="Arial;10;;bold;;" bgColor="#509dc0">
|
||||
<note><![CDATA[Agricultura y donativos recibidos u otorgados con propósitos no lucrativos.]]></note>
|
||||
<icon id="soft_penguin"/>
|
||||
<topic position="402,-149" order="0"
|
||||
text=" Normas aplicables alas actividades especializadas de distintos sectores" id="18"/>
|
||||
</topic>
|
||||
<topic position="326,127" text=" NIF B" shape="rectagle" id="5" fontStyle="Arial;10;;bold;;" bgColor="#509dc0">
|
||||
<link url="http://www.contaduria.uady.mx/files/cuerpo-acad/caef/aief/resumen_NIF_marco_conceptual.pdf"
|
||||
urlType="url"/>
|
||||
<icon id="object_house"/>
|
||||
<topic position="521,131" order="0" text=" Normas aplicables a los estados financieros en su conjunto" id="21"/>
|
||||
</topic>
|
||||
<relationship srcTopicId="3" destTopicId="1" lineType="3" endArrow="0" startArrow="0"/>
|
||||
<relationship srcTopicId="4" destTopicId="1" lineType="3" endArrow="0" startArrow="0"/>
|
||||
<relationship srcTopicId="1" destTopicId="4" lineType="3" endArrow="0" startArrow="0"/>
|
||||
<relationship srcTopicId="7" destTopicId="1" lineType="3" endArrow="0" startArrow="0"/>
|
||||
<relationship srcTopicId="6" destTopicId="1" lineType="3" endArrow="0" startArrow="0"/>
|
||||
<relationship srcTopicId="5" destTopicId="1" lineType="3" endArrow="0" startArrow="0"/>
|
||||
<relationship srcTopicId="2" destTopicId="1" lineType="3" endArrow="0" startArrow="0"/>
|
||||
<relationship srcTopicId="1" destTopicId="2" lineType="3" endArrow="0" startArrow="0"/>
|
||||
</map>
|
||||
<map name="npe" version="tango">
|
||||
<topic central="true" text="NIF (NORMAS DE INFORMACIÓN FINANCIERA)" id="1" fontStyle=";;;;;;#741b47;;;" bgColor="#d5a6bd"/>
|
||||
</map>
|
@ -1,225 +1,100 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<map name="basic" version="tango">
|
||||
<topic central="true" id="0" position="0,0" shape="rounded rectagle">
|
||||
<text><![CDATA[California]]></text>
|
||||
<topic id="1" order="7" position="-200,-200" shape="line">
|
||||
<text><![CDATA[Northern California]]></text>
|
||||
<topic id="2" order="0" position="-290,-275" shape="line">
|
||||
<text><![CDATA[Oakland/Berkeley]]></text>
|
||||
<map name="process" version="tango">
|
||||
<topic central="true" text="California" id="1">
|
||||
<topic position="-200,-200" order="1" text="Northern California" shape="line" id="1">
|
||||
<topic position="-200,-250" order="1" text="Oakland/Berkeley" shape="line" id="2"/>
|
||||
<topic position="290,-275" order="0" text="San Mateo" shape="line" id="3"/>
|
||||
<topic position="380,-250" order="1" text="Other North" shape="line" id="4"/>
|
||||
<topic position="470,-225" order="2" text="San Francisco" shape="line" id="5"/>
|
||||
<topic position="560,-200" order="3" text="Santa Clara" shape="line" id="6"/>
|
||||
<topic position="650,-175" order="4" text="Marin/Napa/Solano" shape="line" id="7"/>
|
||||
</topic>
|
||||
<topic position="-290,-62" order="0" text="Hawaii" shape="line" id="8"/>
|
||||
<topic position="-380,-37" order="1" text="Southern California" shape="line" id="9">
|
||||
<topic position="380,-87" order="0" text="Los Angeles" shape="line" id="10"/>
|
||||
<topic position="470,-62" order="1" text="Anaheim/Santa Ana" shape="line" id="11"/>
|
||||
<topic position="560,-37" order="2" text="Ventura" shape="line" id="12"/>
|
||||
<topic position="650,-12" order="3" text="Other South" shape="line" id="13"/>
|
||||
</topic>
|
||||
<topic position="-470,-12" order="2" text="Policy Bodies" shape="line" id="14">
|
||||
<topic position="470,-87" order="0" text="Advocacy" shape="line" id="15">
|
||||
<topic position="-470,-124" order="0" text="AAO" shape="line" id="16"/>
|
||||
<topic position="-560,-99" order="1" text="ASCRS" shape="line" id="17"/>
|
||||
<topic position="-650,-74" order="2" text="EBAA" shape="line" id="18"/>
|
||||
</topic>
|
||||
<topic id="3" order="1" position="-290,-250" shape="line">
|
||||
<text><![CDATA[San Mateo]]></text>
|
||||
</topic>
|
||||
<topic id="4" order="2" position="-290,-225" shape="line">
|
||||
<text><![CDATA[Other North]]></text>
|
||||
</topic>
|
||||
<topic id="5" order="3" position="-290,-200" shape="line">
|
||||
<text><![CDATA[San Francisco]]></text>
|
||||
</topic>
|
||||
<topic id="6" order="4" position="-290,-175" shape="line">
|
||||
<text><![CDATA[Santa Clara]]></text>
|
||||
</topic>
|
||||
<topic id="7" order="5" position="-290,-150" shape="line">
|
||||
<text><![CDATA[Marin/Napa/Solano]]></text>
|
||||
<topic position="560,-62" order="1" text="Military" shape="line" id="19"/>
|
||||
<topic position="650,-37" order="2" text="United Network for Organ Sharing" shape="line" id="20"/>
|
||||
<topic position="740,-12" order="3" text="Kaiser Hospital System" shape="line" id="21"/>
|
||||
<topic position="830,13" order="4" text="University of California System" shape="line" id="22"/>
|
||||
<topic position="920,38" order="5" text="CMS" shape="line" id="23">
|
||||
<topic position="-920,13" order="0" text="Medicare Part A" shape="line" id="24"/>
|
||||
<topic position="-1010,38" order="1" text="Medicare Part B" shape="line" id="25"/>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="8" order="3" position="-200,-100" shape="line">
|
||||
<text><![CDATA[Hawaii]]></text>
|
||||
<topic position="-560,25" order="3" text="Corneal Tissue OPS" shape="line" id="26">
|
||||
<topic position="560,-75" order="0" text="Transplant Bank International" shape="line" id="27">
|
||||
<topic position="-560,-112" order="0" text="Orange County Eye and Transplant Bank" shape="line" id="28"/>
|
||||
<topic position="-650,-87" order="1" text="Northern California Transplant Bank" shape="rounded rectagle" id="29" bgColor="#00ffd5">
|
||||
<topic position="650,-99" order="0" text="In 2010, 2,500 referrals forwarded to OneLegacy" shape="line" id="30"/>
|
||||
</topic>
|
||||
<topic position="-740,-62" order="2" text="Doheny Eye and Tissue Transplant Bank" shape="rounded rectagle" id="31" bgColor="#00ffd5">
|
||||
<link url="http://www.dohenyeyebank.org/" urlType="url"/>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic position="650,-50" order="1" text="OneLegacy" shape="rounded rectagle" id="32" bgColor="#00ffd5">
|
||||
<topic position="-650,-62" order="0" text="In 2010, 11,828 referrals" shape="line" id="33"/>
|
||||
</topic>
|
||||
<topic position="740,-25" order="2" text="San Diego Eye Bank" shape="rounded rectagle" id="34" bgColor="#00ffd5">
|
||||
<topic position="-740,-37" order="0" text="In 2010, 2,555 referrals" shape="line" id="35"/>
|
||||
</topic>
|
||||
<topic position="830,0" order="3" text="California Transplant Donor Network" shape="line" id="36"/>
|
||||
<topic position="920,25" order="4" text="California Transplant Services" shape="line" id="37">
|
||||
<topic position="-920,13" order="0" text="In 2010, 0 referrals" shape="line" id="38"/>
|
||||
</topic>
|
||||
<topic position="1010,50" order="5" text="Lifesharing" shape="line" id="39"/>
|
||||
<topic position="1100,75" order="6" text="DCI Donor Services" shape="line" id="40">
|
||||
<topic position="-1100,63" order="0" text="Sierra Eye and Tissue Donor Services" shape="rounded rectagle" id="41" bgColor="#00ffd5">
|
||||
<topic position="1100,51" order="0" text="In 2010, 2.023 referrals" shape="line" id="42"/>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic position="1190,100" order="7" text="SightLife" shape="rounded rectagle" id="43" bgColor="#00ffd5"/>
|
||||
</topic>
|
||||
<topic id="9" order="0" position="-200,0" shape="line">
|
||||
<text><![CDATA[Southern California]]></text>
|
||||
<topic id="10" order="0" position="-290,-50" shape="line">
|
||||
<text><![CDATA[Los Angeles]]></text>
|
||||
</topic>
|
||||
<topic id="11" order="1" position="-290,-25" shape="line">
|
||||
<text><![CDATA[Anaheim/Santa Ana]]></text>
|
||||
</topic>
|
||||
<topic id="12" order="2" position="-290,0" shape="line">
|
||||
<text><![CDATA[Ventura]]></text>
|
||||
</topic>
|
||||
<topic id="13" order="3" position="-290,25" shape="line">
|
||||
<text><![CDATA[Other South]]></text>
|
||||
</topic>
|
||||
<topic position="-650,38" order="4" text="Tools" shape="line" id="44">
|
||||
<topic position="650,13" order="0" text="Darthmouth Atlas of Health" shape="line" id="45"/>
|
||||
<topic position="740,38" order="1" text="HealthLandscape" shape="line" id="46"/>
|
||||
</topic>
|
||||
<topic id="14" order="4" position="-200,100" shape="line">
|
||||
<text><![CDATA[Policy Bodies]]></text>
|
||||
<topic id="15" order="0" position="-290,25" shape="line">
|
||||
<text><![CDATA[Advocacy]]></text>
|
||||
<topic id="16" order="0" position="-380,0" shape="line">
|
||||
<text><![CDATA[AAO]]></text>
|
||||
<topic position="-740,75" order="5" text="QE Medicare" shape="line" id="47"/>
|
||||
<topic position="-830,100" order="6" text="CMS Data" shape="line" id="48"/>
|
||||
<topic position="-920,125" order="7" text="Ambulatory Payment Classification" shape="line" id="49">
|
||||
<topic position="920,63" order="0" text="CPT's which don't allow V2785" shape="line" id="50">
|
||||
<topic position="-920,26" order="0" text="Ocular Reconstruction Transplant" shape="line" id="51">
|
||||
<topic position="920,-11" order="0" text="65780 (amniotic membrane tranplant" shape="line" id="52"/>
|
||||
<topic position="1010,14" order="1" text="65781 (limbal stem cell allograft)" shape="line" id="53"/>
|
||||
<topic position="1100,39" order="2" text="65782 (limbal conjunctiva autograft)" shape="line" id="54"/>
|
||||
</topic>
|
||||
<topic id="17" order="1" position="-380,25" shape="line">
|
||||
<text><![CDATA[ASCRS]]></text>
|
||||
<topic position="-1010,51" order="1" text="Endothelial keratoplasty" shape="line" id="55">
|
||||
<topic position="1010,39" order="0" text="65756" shape="line" id="56"/>
|
||||
</topic>
|
||||
<topic id="18" order="2" position="-380,50" shape="line">
|
||||
<text><![CDATA[EBAA]]></text>
|
||||
<topic position="-1100,76" order="2" text="Epikeratoplasty" shape="line" id="57">
|
||||
<topic position="1100,64" order="0" text="65767" shape="line" id="58"/>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="19" order="1" position="-290,50" shape="line">
|
||||
<text><![CDATA[Military]]></text>
|
||||
<topic position="1010,88" order="1" text="Anterior lamellar keratoplasty" shape="line" id="59">
|
||||
<topic position="-1010,76" order="0" text="65710" shape="line" id="60"/>
|
||||
</topic>
|
||||
<topic id="20" order="2" position="-290,75" shape="line">
|
||||
<text><![CDATA[United Network for Organ Sharing]]></text>
|
||||
</topic>
|
||||
<topic id="21" order="3" position="-290,100" shape="line">
|
||||
<text><![CDATA[Kaiser Hospital System]]></text>
|
||||
</topic>
|
||||
<topic id="22" order="4" position="-290,125" shape="line">
|
||||
<text><![CDATA[University of California System]]></text>
|
||||
</topic>
|
||||
<topic id="23" order="5" position="-290,150" shape="line">
|
||||
<text><![CDATA[CMS]]></text>
|
||||
<topic id="24" order="0" position="-380,125" shape="line">
|
||||
<text><![CDATA[Medicare Part A]]></text>
|
||||
</topic>
|
||||
<topic id="25" order="1" position="-380,150" shape="line">
|
||||
<text><![CDATA[Medicare Part B]]></text>
|
||||
<topic position="1100,113" order="2" text="Processing, preserving, and transporting corneal tissue" shape="line" id="61">
|
||||
<topic position="-1100,88" order="0" text="V2785" shape="line" id="62"/>
|
||||
<topic position="-1190,113" order="1" text="Laser incision in recepient" shape="line" id="63">
|
||||
<topic position="1190,101" order="0" text="0290T" shape="line" id="64"/>
|
||||
</topic>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="26" order="3" position="200,-100" shape="line">
|
||||
<text><![CDATA[Corneal Tissue OPS]]></text>
|
||||
<topic id="27" order="0" position="290,-200" shape="line">
|
||||
<text><![CDATA[Transplant Bank International]]></text>
|
||||
<topic id="28" order="0" position="380,-250" shape="line">
|
||||
<text><![CDATA[Orange County Eye and Transplant Bank]]></text>
|
||||
</topic>
|
||||
<topic bgColor="#00ffd5" id="29" order="1"
|
||||
position="380,-225" shape="rounded rectagle">
|
||||
<text><![CDATA[Northern California Transplant Bank]]></text>
|
||||
<topic id="30" order="0" position="470,-225" shape="line">
|
||||
<text><![CDATA[In 2010, 2,500 referrals forwarded to OneLegacy]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic bgColor="#00ffd5" id="31" order="2"
|
||||
position="380,-200" shape="rounded rectagle">
|
||||
<text><![CDATA[Doheny Eye and Tissue Transplant Bank]]></text>
|
||||
<link url="http://www.dohenyeyebank.org/"/>
|
||||
</topic>
|
||||
<topic position="1190,138" order="3" text="Laser incision in donor" shape="line" id="65">
|
||||
<topic position="-1190,126" order="0" text="0289T" shape="line" id="66"/>
|
||||
</topic>
|
||||
<topic bgColor="#00ffd5" id="32" order="1"
|
||||
position="290,-175" shape="rounded rectagle">
|
||||
<text><![CDATA[OneLegacy]]></text>
|
||||
<topic id="33" order="0" position="380,-200" shape="line">
|
||||
<text><![CDATA[In 2010, 11,828 referrals]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic bgColor="#00ffd5" id="34" order="2"
|
||||
position="290,-150" shape="rounded rectagle">
|
||||
<text><![CDATA[San Diego Eye Bank]]></text>
|
||||
<topic id="35" order="0" position="380,-150" shape="line">
|
||||
<text><![CDATA[In 2010, 2,555 referrals]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="36" order="3" position="290,-125" shape="line">
|
||||
<text><![CDATA[California Transplant Donor Network]]></text>
|
||||
</topic>
|
||||
<topic id="37" order="4" position="290,-100" shape="line">
|
||||
<text><![CDATA[California Transplant Services]]></text>
|
||||
<topic id="38" order="0" position="380,-100" shape="line">
|
||||
<text><![CDATA[In 2010, 0 referrals]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="39" order="5" position="290,-75" shape="line">
|
||||
<text><![CDATA[Lifesharing]]></text>
|
||||
</topic>
|
||||
<topic id="40" order="6" position="290,-50" shape="line">
|
||||
<text><![CDATA[DCI Donor Services]]></text>
|
||||
<topic bgColor="#00ffd5" id="41" order="0"
|
||||
position="380,-50" shape="rounded rectagle">
|
||||
<text><![CDATA[Sierra Eye and Tissue Donor Services]]></text>
|
||||
<topic id="42" order="0" position="470,-75" shape="line">
|
||||
<text><![CDATA[In 2010, 2.023 referrals]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic bgColor="#00ffd5" id="43" order="7"
|
||||
position="290,-25" shape="rounded rectagle">
|
||||
<text><![CDATA[SightLife]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="44" order="8" position="-200,200" shape="line">
|
||||
<text><![CDATA[Tools]]></text>
|
||||
<topic id="45" order="0" position="-290,175" shape="line">
|
||||
<text><![CDATA[Darthmouth Atlas of Health]]></text>
|
||||
</topic>
|
||||
<topic id="46" order="1" position="-290,200" shape="line">
|
||||
<text><![CDATA[HealthLandscape]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="47" order="0" position="200,0" shape="line">
|
||||
<text><![CDATA[QE Medicare]]></text>
|
||||
</topic>
|
||||
<topic id="48" order="4" position="200,100" shape="line">
|
||||
<text><![CDATA[CMS Data]]></text>
|
||||
</topic>
|
||||
<topic id="49" order="8" position="200,200" shape="line">
|
||||
<text><![CDATA[Ambulatory Payment Classification]]></text>
|
||||
<topic id="50" order="0" position="290,150" shape="line">
|
||||
<text><![CDATA[CPT's which don't allow V2785]]></text>
|
||||
<topic id="51" order="0" position="380,125" shape="line">
|
||||
<text><![CDATA[Ocular Reconstruction Transplant]]></text>
|
||||
<topic id="52" order="0" position="470,100" shape="line">
|
||||
<text><![CDATA[65780 (amniotic membrane tranplant]]></text>
|
||||
</topic>
|
||||
<topic id="53" order="1" position="470,125" shape="line">
|
||||
<text><![CDATA[65781 (limbal stem cell allograft)]]></text>
|
||||
</topic>
|
||||
<topic id="54" order="2" position="470,150" shape="line">
|
||||
<text><![CDATA[65782 (limbal conjunctiva autograft)]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="55" order="1" position="380,150" shape="line">
|
||||
<text><![CDATA[Endothelial keratoplasty]]></text>
|
||||
<topic id="56" order="0" position="470,150" shape="line">
|
||||
<text><![CDATA[65756]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="57" order="2" position="380,175" shape="line">
|
||||
<text><![CDATA[Epikeratoplasty]]></text>
|
||||
<topic id="58" order="0" position="470,175" shape="line">
|
||||
<text><![CDATA[65767]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="59" order="1" position="290,175" shape="line">
|
||||
<text><![CDATA[Anterior lamellar keratoplasty]]></text>
|
||||
<topic id="60" order="0" position="380,175" shape="line">
|
||||
<text><![CDATA[65710]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="61" order="2" position="290,200" shape="line">
|
||||
<text><![CDATA[Processing, preserving, and transporting corneal tissue]]></text>
|
||||
<topic id="62" order="0" position="380,175" shape="line">
|
||||
<text><![CDATA[V2785]]></text>
|
||||
</topic>
|
||||
<topic id="63" order="1" position="380,200" shape="line">
|
||||
<text><![CDATA[Laser incision in recepient]]></text>
|
||||
<topic id="64" order="0" position="470,200" shape="line">
|
||||
<text><![CDATA[0290T]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="65" order="3" position="290,225" shape="line">
|
||||
<text><![CDATA[Laser incision in donor]]></text>
|
||||
<topic id="66" order="0" position="380,225" shape="line">
|
||||
<text><![CDATA[0289T]]></text>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic id="67" order="4" position="290,250" shape="line">
|
||||
<text><![CDATA[Penetrating keratoplasty]]></text>
|
||||
<topic id="68" order="0" position="380,225" shape="line">
|
||||
<text><![CDATA[65730 (in other)]]></text>
|
||||
</topic>
|
||||
<topic id="69" order="1" position="380,250" shape="line">
|
||||
<text><![CDATA[65755 (in pseudoaphakia)]]></text>
|
||||
</topic>
|
||||
<topic id="70" order="2" position="380,275" shape="line">
|
||||
<text><![CDATA[65750 (in aphakia)]]></text>
|
||||
</topic>
|
||||
<topic position="1280,163" order="4" text="Penetrating keratoplasty" shape="line" id="67">
|
||||
<topic position="-1280,126" order="0" text="65730 (in other)" shape="line" id="68"/>
|
||||
<topic position="-1370,151" order="1" text="65755 (in pseudoaphakia)" shape="line" id="69"/>
|
||||
<topic position="-1460,176" order="2" text="65750 (in aphakia)" shape="line" id="70"/>
|
||||
</topic>
|
||||
</topic>
|
||||
</topic>
|
||||
<relationship destTopicId="32" endArrow="true" id="71" lineType="3" srcTopicId="27"/>
|
||||
<relationship destTopicId="36" endArrow="true" id="72" lineType="3" srcTopicId="27"/>
|
||||
</map>
|
||||
</map>
|
@ -1,3 +1,3 @@
|
||||
<map name="sample3" version="tango"><topic central="true" text="Welcome To WiseMapping" id="1" fontStyle=";;#ffffff;;;"><icon id="sign_info"/><topic position="199,-112" order="0" id="30"><text><![CDATA[5 min tutorial video ?
|
||||
Follow the link !]]></text><link url="https://www.youtube.com/tv?vq=medium#/watch?v=rKxZwNKs9cE" urlType="url"/><icon id="hard_computer"/></topic><topic position="-167,-112" order="1" text="Try it Now!" id="11" fontStyle=";;#525c61;;;" bgColor="#250be3" brColor="#080559"><icon id="face_surprise"/><topic position="-260,-141" order="0" text="Double Click" id="12" fontStyle=";;#525c61;;italic;"/><topic position="-278,-112" order="1" id="13"><text><![CDATA[Press "enter" to add a
|
||||
Sibling]]></text></topic><topic position="-271,-83" order="2" text="Drag map to move" id="14" fontStyle=";;#525c61;;italic;"/></topic><topic position="155,-18" order="2" text="Features" id="15" fontStyle=";;#525c61;;;"><topic position="244,-80" order="0" text="Links to Sites" id="16" fontStyle=";6;#525c61;;;"><link url="http://www.digg.com" urlType="url"/></topic><topic position="224,-30" order="1" text="Styles" id="31"><topic position="285,-55" order="0" text="Fonts" id="17" fontStyle=";;#525c61;;;"/><topic position="299,-30" order="1" text="Topic Shapes" shape="line" id="19" fontStyle=";;#525c61;;;"/><topic position="295,-5" order="2" text="Topic Color" id="18" fontStyle=";;#525c61;;;"/></topic><topic position="229,20" order="2" text="Icons" id="20" fontStyle=";;#525c61;;;"><icon id="object_rainbow"/></topic><topic position="249,45" order="3" text="History Changes" id="21" fontStyle=";;#525c61;;;"><icon id="arrowc_turn_left"/></topic></topic><topic position="-176,-21" order="3" text="Mind Mapping" id="6" fontStyle=";;#525c61;;;" bgColor="#edabff"><icon id="thumb_thumb_up"/><topic position="-293,-58" order="0" text="Share with Collegues" id="7" fontStyle=";;#525c61;;;"/><topic position="-266,-33" order="1" text="Online" id="8" fontStyle=";;#525c61;;;"/><topic position="-288,-8" order="2" text="Anyplace, Anytime" id="9" fontStyle=";;#525c61;;;"/><topic position="-266,17" order="3" text="Free!!!" id="10" fontStyle=";;#525c61;;;"/></topic><topic position="171,95" order="4" text="Productivity" id="2" fontStyle=";;#525c61;;;" bgColor="#d9b518"><icon id="chart_bar"/><topic position="281,70" order="0" text="Share your ideas" id="3" fontStyle=";;#525c61;;;"><icon id="bulb_light_on"/></topic><topic position="270,95" order="1" text="Brainstorming" id="4" fontStyle=";;#525c61;;;"/><topic position="256,120" order="2" text="Visual " id="5" fontStyle=";;#525c61;;;"/></topic><topic position="-191,54" order="5" text="Install In Your Server" id="27" fontStyle=";;#525c61;;;"><icon id="hard_computer"/><topic position="-319,42" order="0" text="Open Source" id="29" fontStyle=";;#525c61;;;"><icon id="soft_penguin"/><link url="http://www.wisemapping.org/" urlType="url"/></topic><topic position="-310,67" order="1" text="Download" id="28" fontStyle=";;#525c61;;;"><link url="http://www.wisemapping.com/inyourserver.html" urlType="url"/></topic></topic><topic position="-169,117" order="7" text="Collaborate" id="32"><icon id="people_group"/><topic position="-253,92" order="0" text="Embed" id="33"/><topic position="-254,117" order="1" text="Publish" id="34"/><topic position="-277,142" order="2" text="Share for Edition" id="35"><icon id="mail_envelop"/></topic></topic></topic><relationship srcTopicId="30" destTopicId="11" lineType="3" srcCtrlPoint="-80,-56" destCtrlPoint="110,-116" endArrow="false" startArrow="true"/></map>
|
||||
<map name="sample3" version="tango">
|
||||
<topic central="true" text="Clickview Overview" id="1"/>
|
||||
</map>
|
@ -1,3 +1,3 @@
|
||||
<map name="sample4" version="tango"><topic central="true" text="Welcome To WiseMapping" id="1" fontStyle=";;#ffffff;;;"><icon id="sign_info"/><topic position="199,-112" order="0" id="30"><text><![CDATA[5 min tutorial video ?
|
||||
Follow the link !]]></text><link url="https://www.youtube.com/tv?vq=medium#/watch?v=rKxZwNKs9cE" urlType="url"/><icon id="hard_computer"/></topic><topic position="-167,-112" order="1" text="Try it Now!" id="11" fontStyle=";;#525c61;;;" bgColor="#250be3" brColor="#080559"><icon id="face_surprise"/><topic position="-260,-141" order="0" text="Double Click" id="12" fontStyle=";;#525c61;;italic;"/><topic position="-278,-112" order="1" id="13"><text><![CDATA[Press "enter" to add a
|
||||
Sibling]]></text></topic><topic position="-271,-83" order="2" text="Drag map to move" id="14" fontStyle=";;#525c61;;italic;"/></topic><topic position="155,-18" order="2" text="Features" id="15" fontStyle=";;#525c61;;;"><topic position="244,-80" order="0" text="Links to Sites" id="16" fontStyle=";6;#525c61;;;"><link url="http://www.digg.com" urlType="url"/></topic><topic position="224,-30" order="1" text="Styles" id="31"><topic position="285,-55" order="0" text="Fonts" id="17" fontStyle=";;#525c61;;;"/><topic position="299,-30" order="1" text="Topic Shapes" shape="line" id="19" fontStyle=";;#525c61;;;"/><topic position="295,-5" order="2" text="Topic Color" id="18" fontStyle=";;#525c61;;;"/></topic><topic position="229,20" order="2" text="Icons" id="20" fontStyle=";;#525c61;;;"><icon id="object_rainbow"/></topic><topic position="249,45" order="3" text="History Changes" id="21" fontStyle=";;#525c61;;;"><icon id="arrowc_turn_left"/></topic></topic><topic position="-176,-21" order="3" text="Mind Mapping" id="6" fontStyle=";;#525c61;;;" bgColor="#edabff"><icon id="thumb_thumb_up"/><topic position="-293,-58" order="0" text="Share with Collegues" id="7" fontStyle=";;#525c61;;;"/><topic position="-266,-33" order="1" text="Online" id="8" fontStyle=";;#525c61;;;"/><topic position="-288,-8" order="2" text="Anyplace, Anytime" id="9" fontStyle=";;#525c61;;;"/><topic position="-266,17" order="3" text="Free!!!" id="10" fontStyle=";;#525c61;;;"/></topic><topic position="171,95" order="4" text="Productivity" id="2" fontStyle=";;#525c61;;;" bgColor="#d9b518"><icon id="chart_bar"/><topic position="281,70" order="0" text="Share your ideas" id="3" fontStyle=";;#525c61;;;"><icon id="bulb_light_on"/></topic><topic position="270,95" order="1" text="Brainstorming" id="4" fontStyle=";;#525c61;;;"/><topic position="256,120" order="2" text="Visual " id="5" fontStyle=";;#525c61;;;"/></topic><topic position="-191,54" order="5" text="Install In Your Server" id="27" fontStyle=";;#525c61;;;"><icon id="hard_computer"/><topic position="-319,42" order="0" text="Open Source" id="29" fontStyle=";;#525c61;;;"><icon id="soft_penguin"/><link url="http://www.wisemapping.org/" urlType="url"/></topic><topic position="-310,67" order="1" text="Download" id="28" fontStyle=";;#525c61;;;"><link url="http://www.wisemapping.com/inyourserver.html" urlType="url"/></topic></topic><topic position="-169,117" order="7" text="Collaborate" id="32"><icon id="people_group"/><topic position="-253,92" order="0" text="Embed" id="33"/><topic position="-254,117" order="1" text="Publish" id="34"/><topic position="-277,142" order="2" text="Share for Edition" id="35"><icon id="mail_envelop"/></topic></topic></topic><relationship srcTopicId="30" destTopicId="11" lineType="3" srcCtrlPoint="-80,-56" destCtrlPoint="110,-116" endArrow="false" startArrow="true"/></map>
|
||||
<map name="sample4" version="tango">
|
||||
<topic central="true" text="Clickview Overview" id="1"/>
|
||||
</map>
|
@ -1,70 +1,48 @@
|
||||
<map name="3" version="tango">
|
||||
<topic central="true" text="Welcome To WiseMapping" id="1" fontStyle=";;#ffffff;;;">
|
||||
<icon id="sign_info"/>
|
||||
<topic position="199,-112" order="0" id="30">
|
||||
<text><![CDATA[5 min tutorial video ?
|
||||
Follow the link !]]></text>
|
||||
<map name="welcome" version="tango">
|
||||
<topic central="true" text="Welcome To WiseMapping" id="1" fontStyle=";;;;;;#ffffff;;;">
|
||||
<topic position="200,-100" order="0" shape="line" id="30">
|
||||
<link url="https://www.youtube.com/tv?vq=medium#/watch?v=rKxZwNKs9cE" urlType="url"/>
|
||||
<icon id="hard_computer"/>
|
||||
</topic>
|
||||
<topic position="-167,-112" order="1" text="Try it Now!" id="11" fontStyle=";;#525c61;;;" bgColor="#250be3" brColor="#080559">
|
||||
<icon id="face_surprise"/>
|
||||
<topic position="-260,-141" order="0" text="Double Click" id="12" fontStyle=";;#525c61;;italic;"/>
|
||||
<topic position="-278,-112" order="1" id="13">
|
||||
<text><![CDATA[Press "enter" to add a
|
||||
Sibling]]></text>
|
||||
</topic>
|
||||
<topic position="-271,-83" order="2" text="Drag map to move" id="14" fontStyle=";;#525c61;;italic;"/>
|
||||
<topic position="-290,-50" order="0" text="Try it Now!" shape="line" id="11" fontStyle=";;;;;;#525c61;;;" bgColor="#080559">
|
||||
<topic position="290,-87" order="0" text="Double Click" shape="line" id="12" fontStyle=";;;;;;#525c61;;;"/>
|
||||
<topic position="380,-62" order="1" shape="line" id="13"/>
|
||||
<topic position="470,-37" order="2" text="Drag map to move" shape="line" id="14" fontStyle=";;;;;;#525c61;;;"/>
|
||||
</topic>
|
||||
<topic position="155,-18" order="2" text="Features" id="15" fontStyle=";;#525c61;;;">
|
||||
<topic position="244,-80" order="0" text="Links to Sites" id="16" fontStyle=";6;#525c61;;;">
|
||||
<topic position="-380,-12" order="1" text="Features" shape="line" id="15" fontStyle=";;;;;;#525c61;;;">
|
||||
<topic position="380,-62" order="0" text="Links to Sites" shape="line" id="16" fontStyle=";;;;;8;#525c61;;;">
|
||||
<link url="http://www.digg.com" urlType="url"/>
|
||||
</topic>
|
||||
<topic position="224,-30" order="1" text="Styles" id="31">
|
||||
<topic position="285,-55" order="0" text="Fonts" id="17" fontStyle=";;#525c61;;;"/>
|
||||
<topic position="299,-30" order="1" text="Topic Shapes" shape="line" id="19" fontStyle=";;#525c61;;;"/>
|
||||
<topic position="295,-5" order="2" text="Topic Color" id="18" fontStyle=";;#525c61;;;"/>
|
||||
</topic>
|
||||
<topic position="229,20" order="2" text="Icons" id="20" fontStyle=";;#525c61;;;">
|
||||
<icon id="object_rainbow"/>
|
||||
</topic>
|
||||
<topic position="249,45" order="3" text="History Changes" id="21" fontStyle=";;#525c61;;;">
|
||||
<icon id="arrowc_turn_left"/>
|
||||
<topic position="470,-37" order="1" text="Styles" shape="line" id="31">
|
||||
<topic position="-470,-74" order="0" text="Fonts" shape="line" id="17" fontStyle=";;;;;;#525c61;;;"/>
|
||||
<topic position="-560,-49" order="1" text="Topic Shapes" shape="line" id="19" fontStyle=";;;;;;#525c61;;;"/>
|
||||
<topic position="-650,-24" order="2" text="Topic Color" shape="line" id="18" fontStyle=";;;;;;#525c61;;;"/>
|
||||
</topic>
|
||||
<topic position="560,-12" order="2" text="Icons" shape="line" id="20" fontStyle=";;;;;;#525c61;;;"/>
|
||||
<topic position="650,13" order="3" text="History Changes" shape="line" id="21" fontStyle=";;;;;;#525c61;;;"/>
|
||||
</topic>
|
||||
<topic position="-176,-21" order="3" text="Mind Mapping" id="6" fontStyle=";;#525c61;;;" bgColor="#edabff">
|
||||
<icon id="thumb_thumb_up"/>
|
||||
<topic position="-293,-58" order="0" text="Share with Collegues" id="7" fontStyle=";;#525c61;;;"/>
|
||||
<topic position="-266,-33" order="1" text="Online" id="8" fontStyle=";;#525c61;;;"/>
|
||||
<topic position="-288,-8" order="2" text="Anyplace, Anytime" id="9" fontStyle=";;#525c61;;;"/>
|
||||
<topic position="-266,17" order="3" text="Free!!!" id="10" fontStyle=";;#525c61;;;"/>
|
||||
<topic position="-470,0" order="2" text="Mind Mapping" shape="line" id="6" fontStyle=";;;;;;#525c61;;;">
|
||||
<topic position="470,-50" order="0" text="Share with Collegues" shape="line" id="7" fontStyle=";;;;;;#525c61;;;"/>
|
||||
<topic position="560,-25" order="1" text="Online" shape="line" id="8" fontStyle=";;;;;;#525c61;;;"/>
|
||||
<topic position="650,0" order="2" text="Anyplace, Anytime" shape="line" id="9" fontStyle=";;;;;;#525c61;;;"/>
|
||||
<topic position="740,25" order="3" text="Free!!!" shape="line" id="10" fontStyle=";;;;;;#525c61;;;"/>
|
||||
</topic>
|
||||
<topic position="171,95" order="4" text="Productivity" id="2" fontStyle=";;#525c61;;;" bgColor="#d9b518">
|
||||
<icon id="chart_bar"/>
|
||||
<topic position="281,70" order="0" text="Share your ideas" id="3" fontStyle=";;#525c61;;;">
|
||||
<icon id="bulb_light_on"/>
|
||||
</topic>
|
||||
<topic position="270,95" order="1" text="Brainstorming" id="4" fontStyle=";;#525c61;;;"/>
|
||||
<topic position="256,120" order="2" text="Visual " id="5" fontStyle=";;#525c61;;;"/>
|
||||
<topic position="-560,38" order="3" text="Productivity" shape="line" id="2" fontStyle=";;;;;;#525c61;;;">
|
||||
<topic position="560,1" order="0" text="Share your ideas" shape="line" id="3" fontStyle=";;;;;;#525c61;;;"/>
|
||||
<topic position="650,26" order="1" text="Brainstorming" shape="line" id="4" fontStyle=";;;;;;#525c61;;;"/>
|
||||
<topic position="740,51" order="2" text="Visual " shape="line" id="5" fontStyle=";;;;;;#525c61;;;"/>
|
||||
</topic>
|
||||
<topic position="-191,54" order="5" text="Install In Your Server" id="27" fontStyle=";;#525c61;;;">
|
||||
<icon id="hard_computer"/>
|
||||
<topic position="-319,42" order="0" text="Open Source" id="29" fontStyle=";;#525c61;;;">
|
||||
<icon id="soft_penguin"/>
|
||||
<topic position="-650,50" order="4" text="Install In Your Server" shape="line" id="27" fontStyle=";;;;;;#525c61;;;">
|
||||
<topic position="650,25" order="0" text="Open Source" shape="line" id="29" fontStyle=";;;;;;#525c61;;;">
|
||||
<link url="http://www.wisemapping.org/" urlType="url"/>
|
||||
</topic>
|
||||
<topic position="-310,67" order="1" text="Download" id="28" fontStyle=";;#525c61;;;">
|
||||
<topic position="740,50" order="1" text="Download" shape="line" id="28" fontStyle=";;;;;;#525c61;;;">
|
||||
<link url="http://www.wisemapping.com/inyourserver.html" urlType="url"/>
|
||||
</topic>
|
||||
</topic>
|
||||
<topic position="-169,117" order="7" text="Collaborate" id="32">
|
||||
<icon id="people_group"/>
|
||||
<topic position="-253,92" order="0" text="Embed" id="33"/>
|
||||
<topic position="-254,117" order="1" text="Publish" id="34"/>
|
||||
<topic position="-277,142" order="2" text="Share for Edition" id="35">
|
||||
<icon id="mail_envelop"/>
|
||||
</topic>
|
||||
<topic position="-740,75" order="5" text="Collaborate" shape="line" id="32">
|
||||
<topic position="740,38" order="0" text="Embed" shape="line" id="33"/>
|
||||
<topic position="830,63" order="1" text="Publish" shape="line" id="34"/>
|
||||
<topic position="920,88" order="2" text="Share for Edition" shape="line" id="35"/>
|
||||
</topic>
|
||||
</topic>
|
||||
<relationship srcTopicId="30" destTopicId="11" lineType="3" srcCtrlPoint="-80,-56" destCtrlPoint="110,-116" endArrow="false" startArrow="true"/>
|
||||
</map>
|
Loading…
Reference in New Issue
Block a user