NEURO_MATRIX.xsd 127 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:gml="http://www.opengis.net/gml/3.2"
  3. xmlns:vc="http://www.w3.org/2007/XMLSchema-versioning" xmlns:p5="https://biuro.biall-net.pl/wfs"
  4. xmlns:ogc="http://www.opengis.net/ogc"
  5. xmlns:system_cache__appinfo="http://biuro.biall-net.pl/xmlschema_procesy5/default_db_xml_cache/appinfo.xsd"
  6. targetNamespace="https://biuro.biall-net.pl/wfs/default_db/table/NEURO_MATRIX.xsd"
  7. vc:minVersion="1.1"
  8. xmlns:default_db__x3A__NEURO_MATRIX="https://biuro.biall-net.pl/wfs/default_db/table/NEURO_MATRIX.xsd"
  9. xmlns:default_db__x3A__NEURO_MIND="https://biuro.biall-net.pl/wfs/default_db/table/NEURO_MIND.xsd">
  10. <xs:annotation>
  11. <xs:documentation>Matryca wielowymiarowa dla mechanizmów neuronowych 2019 - wspolrzedne dla elementow</xs:documentation>
  12. </xs:annotation>
  13. <xs:import namespace="https://biuro.biall-net.pl/wfs/default_db/table/NEURO_MIND.xsd"
  14. schemaLocation="../../default_db.NEURO_MIND/NEURO_MIND/NEURO_MIND.xsd">
  15. <xs:annotation>
  16. <xs:documentation>Backref kontrolkny</xs:documentation>
  17. </xs:annotation>
  18. </xs:import>
  19. <xs:complexType name="NEURO_MATRIX">
  20. <xs:annotation>
  21. <xs:documentation>Wspolrzedna neurona</xs:documentation>
  22. </xs:annotation>
  23. <xs:sequence>
  24. <xs:element name="ID" type="xs:int"/>
  25. <xs:element name="altitude" type="xs:float">
  26. <xs:annotation>
  27. <xs:documentation>Umiejscowanie w danym wymiarze na wysokości</xs:documentation>
  28. </xs:annotation>
  29. </xs:element>
  30. <xs:element minOccurs="0" name="offset" type="xs:float"/>
  31. <xs:element minOccurs="0" name="tolerance" type="xs:int"/>
  32. <xs:element ref="default_db__x3A__NEURO_MIND:NEURO_MIND">
  33. <xs:annotation>
  34. <xs:appinfo>
  35. <system_cache__appinfo:flat_relation_cache>
  36. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view" system_cache__appinfo:xpath="default_db__x3A__NEURO_MIND:NEURO_MIND/ID_NEURO_MATRIX"/>
  37. </system_cache__appinfo:flat_relation_cache>
  38. </xs:appinfo>
  39. <xs:documentation>Przynależność do jakiegoś MIND</xs:documentation>
  40. </xs:annotation>
  41. </xs:element>
  42. <xs:element minOccurs="0" name="ID_NEURO_MIND_LAYER_RECEPTOR" type="xs:int">
  43. <xs:annotation>
  44. <xs:documentation>Opcjonalny ref do receptora</xs:documentation>
  45. </xs:annotation>
  46. </xs:element>
  47. <xs:element name="ID_NEURO_LAYER_COVERAGE" type="xs:int">
  48. <xs:annotation>
  49. <xs:documentation>Ref konfiguracji specjalnych cech warstwy </xs:documentation>
  50. </xs:annotation>
  51. </xs:element>
  52. <xs:element name="ID_NEURO_MIND_STATE" type="xs:int">
  53. <xs:annotation>
  54. <xs:documentation>zaleznosc do State</xs:documentation>
  55. </xs:annotation>
  56. </xs:element>
  57. </xs:sequence>
  58. </xs:complexType>
  59. <xs:element name="NEURO_MATRIX" type="default_db__x3A__NEURO_MATRIX:NEURO_MATRIX"/>
  60. <xs:complexType name="X1">
  61. <xs:complexContent>
  62. <xs:restriction base="default_db__x3A__NEURO_MATRIX:NEURO_MATRIX">
  63. <xs:sequence>
  64. <xs:element name="ID" type="xs:int"/>
  65. <xs:element name="altitude" type="xs:float">
  66. <xs:annotation>
  67. <xs:documentation>Umiejscowanie w danym wymiarze na wysokości</xs:documentation>
  68. </xs:annotation>
  69. </xs:element>
  70. <xs:element minOccurs="0" name="offset" type="xs:float"/>
  71. <xs:element minOccurs="0" name="tolerance" type="xs:int"/>
  72. <xs:element ref="default_db__x3A__NEURO_MIND:NEURO_MIND">
  73. <xs:annotation>
  74. <xs:appinfo>
  75. <system_cache__appinfo:flat_relation_cache>
  76. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view" system_cache__appinfo:xpath="default_db__x3A__NEURO_MIND:NEURO_MIND/ID_NEURO_MATRIX"/>
  77. </system_cache__appinfo:flat_relation_cache>
  78. </xs:appinfo>
  79. <xs:documentation>Przynależność do jakiegoś MIND</xs:documentation>
  80. </xs:annotation>
  81. </xs:element>
  82. <xs:element minOccurs="0" name="ID_NEURO_MIND_LAYER_RECEPTOR" type="xs:int">
  83. <xs:annotation>
  84. <xs:documentation>Opcjonalny ref do receptora</xs:documentation>
  85. </xs:annotation>
  86. </xs:element>
  87. <xs:element name="ID_NEURO_LAYER_COVERAGE" type="xs:int">
  88. <xs:annotation>
  89. <xs:documentation>Ref konfiguracji specjalnych cech warstwy </xs:documentation>
  90. </xs:annotation>
  91. </xs:element>
  92. <xs:element name="ID_NEURO_MIND_STATE" type="xs:int">
  93. <xs:annotation>
  94. <xs:documentation>zaleznosc do State</xs:documentation>
  95. </xs:annotation>
  96. </xs:element>
  97. </xs:sequence>
  98. </xs:restriction>
  99. </xs:complexContent>
  100. </xs:complexType>
  101. <xs:complexType name="X1-MergeCoverage-MinAlt">
  102. <xs:complexContent>
  103. <xs:restriction base="default_db__x3A__NEURO_MATRIX:X1">
  104. <xs:sequence>
  105. <xs:element name="ID" type="xs:int"/>
  106. <xs:element name="altitude" type="xs:float">
  107. <xs:annotation>
  108. <xs:documentation>Umiejscowanie w danym wymiarze na wysokości</xs:documentation>
  109. </xs:annotation>
  110. </xs:element>
  111. <xs:element minOccurs="0" name="offset" type="xs:float"/>
  112. <xs:element minOccurs="0" name="tolerance" type="xs:int"/>
  113. <xs:element ref="default_db__x3A__NEURO_MIND:NEURO_MIND">
  114. <xs:annotation>
  115. <xs:appinfo>
  116. <system_cache__appinfo:flat_relation_cache>
  117. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view" system_cache__appinfo:xpath="default_db__x3A__NEURO_MIND:NEURO_MIND/ID_NEURO_MATRIX"/>
  118. </system_cache__appinfo:flat_relation_cache>
  119. </xs:appinfo>
  120. <xs:documentation>Przynależność do jakiegoś MIND</xs:documentation>
  121. </xs:annotation>
  122. </xs:element>
  123. <xs:element minOccurs="0" name="ID_NEURO_MIND_LAYER_RECEPTOR" type="xs:int">
  124. <xs:annotation>
  125. <xs:documentation>Opcjonalny ref do receptora</xs:documentation>
  126. </xs:annotation>
  127. </xs:element>
  128. <xs:element name="ID_NEURO_LAYER_COVERAGE" type="xs:int">
  129. <xs:annotation>
  130. <xs:documentation>Ref konfiguracji specjalnych cech warstwy </xs:documentation>
  131. </xs:annotation>
  132. </xs:element>
  133. <xs:element name="ID_NEURO_MIND_STATE" type="xs:int">
  134. <xs:annotation>
  135. <xs:documentation>zaleznosc do State</xs:documentation>
  136. </xs:annotation>
  137. </xs:element>
  138. </xs:sequence>
  139. </xs:restriction>
  140. </xs:complexContent>
  141. </xs:complexType>
  142. <xs:element name="X1-MergeCoverage-MinAlt"
  143. type="default_db__x3A__NEURO_MATRIX:X1-MergeCoverage-MinAlt"/>
  144. <xs:complexType name="X1-MergeCoverage-MaxAlt">
  145. <xs:complexContent>
  146. <xs:restriction base="default_db__x3A__NEURO_MATRIX:X1">
  147. <xs:sequence>
  148. <xs:element name="ID" type="xs:int"/>
  149. <xs:element name="altitude" type="xs:float">
  150. <xs:annotation>
  151. <xs:documentation>Umiejscowanie w danym wymiarze na wysokości</xs:documentation>
  152. </xs:annotation>
  153. </xs:element>
  154. <xs:element minOccurs="0" name="offset" type="xs:float"/>
  155. <xs:element minOccurs="0" name="tolerance" type="xs:int"/>
  156. <xs:element ref="default_db__x3A__NEURO_MIND:NEURO_MIND">
  157. <xs:annotation>
  158. <xs:appinfo>
  159. <system_cache__appinfo:flat_relation_cache>
  160. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view" system_cache__appinfo:xpath="default_db__x3A__NEURO_MIND:NEURO_MIND/ID_NEURO_MATRIX"/>
  161. </system_cache__appinfo:flat_relation_cache>
  162. </xs:appinfo>
  163. <xs:documentation>Przynależność do jakiegoś MIND</xs:documentation>
  164. </xs:annotation>
  165. </xs:element>
  166. <xs:element minOccurs="0" name="ID_NEURO_MIND_LAYER_RECEPTOR" type="xs:int">
  167. <xs:annotation>
  168. <xs:documentation>Opcjonalny ref do receptora</xs:documentation>
  169. </xs:annotation>
  170. </xs:element>
  171. <xs:element name="ID_NEURO_LAYER_COVERAGE" type="xs:int">
  172. <xs:annotation>
  173. <xs:documentation>Ref konfiguracji specjalnych cech warstwy </xs:documentation>
  174. </xs:annotation>
  175. </xs:element>
  176. <xs:element name="ID_NEURO_MIND_STATE" type="xs:int">
  177. <xs:annotation>
  178. <xs:documentation>zaleznosc do State</xs:documentation>
  179. </xs:annotation>
  180. </xs:element>
  181. </xs:sequence>
  182. </xs:restriction>
  183. </xs:complexContent>
  184. </xs:complexType>
  185. <xs:element name="X1-MergeCoverage-MaxAlt"
  186. type="default_db__x3A__NEURO_MATRIX:X1-MergeCoverage-MaxAlt"/>
  187. <xs:element name="X1" type="default_db__x3A__NEURO_MATRIX:X1"/>
  188. <xs:complexType name="X2">
  189. <xs:complexContent>
  190. <xs:restriction base="default_db__x3A__NEURO_MATRIX:NEURO_MATRIX">
  191. <xs:sequence>
  192. <xs:element name="ID" type="xs:int"/>
  193. <xs:element name="altitude" type="xs:float">
  194. <xs:annotation>
  195. <xs:documentation>Umiejscowanie w danym wymiarze na wysokości</xs:documentation>
  196. </xs:annotation>
  197. </xs:element>
  198. <xs:element minOccurs="0" name="offset" type="xs:float"/>
  199. <xs:element minOccurs="0" name="tolerance" type="xs:int"/>
  200. <xs:element ref="default_db__x3A__NEURO_MIND:NEURO_MIND">
  201. <xs:annotation>
  202. <xs:appinfo>
  203. <system_cache__appinfo:flat_relation_cache>
  204. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view" system_cache__appinfo:xpath="default_db__x3A__NEURO_MIND:NEURO_MIND/ID_NEURO_MATRIX"/>
  205. </system_cache__appinfo:flat_relation_cache>
  206. </xs:appinfo>
  207. <xs:documentation>Przynależność do jakiegoś MIND</xs:documentation>
  208. </xs:annotation>
  209. </xs:element>
  210. <xs:element minOccurs="0" name="ID_NEURO_MIND_LAYER_RECEPTOR" type="xs:int">
  211. <xs:annotation>
  212. <xs:documentation>Opcjonalny ref do receptora</xs:documentation>
  213. </xs:annotation>
  214. </xs:element>
  215. <xs:element name="ID_NEURO_LAYER_COVERAGE" type="xs:int">
  216. <xs:annotation>
  217. <xs:documentation>Ref konfiguracji specjalnych cech warstwy </xs:documentation>
  218. </xs:annotation>
  219. </xs:element>
  220. <xs:element name="ID_NEURO_MIND_STATE" type="xs:int">
  221. <xs:annotation>
  222. <xs:documentation>zaleznosc do State</xs:documentation>
  223. </xs:annotation>
  224. </xs:element>
  225. </xs:sequence>
  226. </xs:restriction>
  227. </xs:complexContent>
  228. </xs:complexType>
  229. <xs:element name="X2" type="default_db__x3A__NEURO_MATRIX:X2"/>
  230. <xs:complexType name="X2-MergeCoverage-MinAlt">
  231. <xs:complexContent>
  232. <xs:restriction base="default_db__x3A__NEURO_MATRIX:X2">
  233. <xs:sequence>
  234. <xs:element name="ID" type="xs:int"/>
  235. <xs:element name="altitude" type="xs:float">
  236. <xs:annotation>
  237. <xs:documentation>Umiejscowanie w danym wymiarze na wysokości</xs:documentation>
  238. </xs:annotation>
  239. </xs:element>
  240. <xs:element minOccurs="0" name="offset" type="xs:float"/>
  241. <xs:element minOccurs="0" name="tolerance" type="xs:int"/>
  242. <xs:element ref="default_db__x3A__NEURO_MIND:NEURO_MIND">
  243. <xs:annotation>
  244. <xs:appinfo>
  245. <system_cache__appinfo:flat_relation_cache>
  246. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view" system_cache__appinfo:xpath="default_db__x3A__NEURO_MIND:NEURO_MIND/ID_NEURO_MATRIX"/>
  247. </system_cache__appinfo:flat_relation_cache>
  248. </xs:appinfo>
  249. <xs:documentation>Przynależność do jakiegoś MIND</xs:documentation>
  250. </xs:annotation>
  251. </xs:element>
  252. <xs:element minOccurs="0" name="ID_NEURO_MIND_LAYER_RECEPTOR" type="xs:int">
  253. <xs:annotation>
  254. <xs:documentation>Opcjonalny ref do receptora</xs:documentation>
  255. </xs:annotation>
  256. </xs:element>
  257. <xs:element name="ID_NEURO_LAYER_COVERAGE" type="xs:int">
  258. <xs:annotation>
  259. <xs:documentation>Ref konfiguracji specjalnych cech warstwy </xs:documentation>
  260. </xs:annotation>
  261. </xs:element>
  262. <xs:element name="ID_NEURO_MIND_STATE" type="xs:int">
  263. <xs:annotation>
  264. <xs:documentation>zaleznosc do State</xs:documentation>
  265. </xs:annotation>
  266. </xs:element>
  267. </xs:sequence>
  268. </xs:restriction>
  269. </xs:complexContent>
  270. </xs:complexType>
  271. <xs:element name="X2-MergeCoverage-MinAlt"
  272. type="default_db__x3A__NEURO_MATRIX:X2-MergeCoverage-MinAlt"/>
  273. <xs:complexType name="X2-MergeCoverage-MaxAlt">
  274. <xs:complexContent>
  275. <xs:restriction base="default_db__x3A__NEURO_MATRIX:X2-MergeCoverage-MinAlt">
  276. <xs:sequence>
  277. <xs:element name="ID" type="xs:int"/>
  278. <xs:element name="altitude" type="xs:float">
  279. <xs:annotation>
  280. <xs:documentation>Umiejscowanie w danym wymiarze na wysokości</xs:documentation>
  281. </xs:annotation>
  282. </xs:element>
  283. <xs:element minOccurs="0" name="offset" type="xs:float"/>
  284. <xs:element minOccurs="0" name="tolerance" type="xs:int"/>
  285. <xs:element ref="default_db__x3A__NEURO_MIND:NEURO_MIND">
  286. <xs:annotation>
  287. <xs:appinfo>
  288. <system_cache__appinfo:flat_relation_cache>
  289. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view" system_cache__appinfo:xpath="default_db__x3A__NEURO_MIND:NEURO_MIND/ID_NEURO_MATRIX"/>
  290. </system_cache__appinfo:flat_relation_cache>
  291. </xs:appinfo>
  292. <xs:documentation>Przynależność do jakiegoś MIND</xs:documentation>
  293. </xs:annotation>
  294. </xs:element>
  295. <xs:element minOccurs="0" name="ID_NEURO_MIND_LAYER_RECEPTOR" type="xs:int">
  296. <xs:annotation>
  297. <xs:documentation>Opcjonalny ref do receptora</xs:documentation>
  298. </xs:annotation>
  299. </xs:element>
  300. <xs:element name="ID_NEURO_LAYER_COVERAGE" type="xs:int">
  301. <xs:annotation>
  302. <xs:documentation>Ref konfiguracji specjalnych cech warstwy </xs:documentation>
  303. </xs:annotation>
  304. </xs:element>
  305. <xs:element name="ID_NEURO_MIND_STATE" type="xs:int">
  306. <xs:annotation>
  307. <xs:documentation>zaleznosc do State</xs:documentation>
  308. </xs:annotation>
  309. </xs:element>
  310. </xs:sequence>
  311. </xs:restriction>
  312. </xs:complexContent>
  313. </xs:complexType>
  314. <xs:element name="X2-MergeCoverage-MaxAlt"
  315. type="default_db__x3A__NEURO_MATRIX:X2-MergeCoverage-MaxAlt"/>
  316. <xs:complexType name="X3">
  317. <xs:complexContent>
  318. <xs:restriction base="default_db__x3A__NEURO_MATRIX:NEURO_MATRIX">
  319. <xs:sequence>
  320. <xs:element name="ID" type="xs:int"/>
  321. <xs:element name="altitude" type="xs:float">
  322. <xs:annotation>
  323. <xs:documentation>Umiejscowanie w danym wymiarze na wysokości</xs:documentation>
  324. </xs:annotation>
  325. </xs:element>
  326. <xs:element minOccurs="0" name="offset" type="xs:float"/>
  327. <xs:element minOccurs="0" name="tolerance" type="xs:int"/>
  328. <xs:element ref="default_db__x3A__NEURO_MIND:NEURO_MIND">
  329. <xs:annotation>
  330. <xs:appinfo>
  331. <system_cache__appinfo:flat_relation_cache>
  332. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view" system_cache__appinfo:xpath="default_db__x3A__NEURO_MIND:NEURO_MIND/ID_NEURO_MATRIX"/>
  333. </system_cache__appinfo:flat_relation_cache>
  334. </xs:appinfo>
  335. <xs:documentation>Przynależność do jakiegoś MIND</xs:documentation>
  336. </xs:annotation>
  337. </xs:element>
  338. <xs:element minOccurs="0" name="ID_NEURO_MIND_LAYER_RECEPTOR" type="xs:int">
  339. <xs:annotation>
  340. <xs:documentation>Opcjonalny ref do receptora</xs:documentation>
  341. </xs:annotation>
  342. </xs:element>
  343. <xs:element name="ID_NEURO_LAYER_COVERAGE" type="xs:int">
  344. <xs:annotation>
  345. <xs:documentation>Ref konfiguracji specjalnych cech warstwy </xs:documentation>
  346. </xs:annotation>
  347. </xs:element>
  348. <xs:element name="ID_NEURO_MIND_STATE" type="xs:int">
  349. <xs:annotation>
  350. <xs:documentation>zaleznosc do State</xs:documentation>
  351. </xs:annotation>
  352. </xs:element>
  353. </xs:sequence>
  354. </xs:restriction>
  355. </xs:complexContent>
  356. </xs:complexType>
  357. <xs:element name="X3" type="default_db__x3A__NEURO_MATRIX:NEURO_MATRIX"/>
  358. <xs:complexType name="X3-MergeCoverage-MinAlt">
  359. <xs:complexContent>
  360. <xs:restriction base="default_db__x3A__NEURO_MATRIX:X3">
  361. <xs:sequence>
  362. <xs:element name="ID" type="xs:int"/>
  363. <xs:element name="altitude" type="xs:float">
  364. <xs:annotation>
  365. <xs:documentation>Umiejscowanie w danym wymiarze na wysokości</xs:documentation>
  366. </xs:annotation>
  367. </xs:element>
  368. <xs:element minOccurs="0" name="offset" type="xs:float"/>
  369. <xs:element minOccurs="0" name="tolerance" type="xs:int"/>
  370. <xs:element ref="default_db__x3A__NEURO_MIND:NEURO_MIND">
  371. <xs:annotation>
  372. <xs:appinfo>
  373. <system_cache__appinfo:flat_relation_cache>
  374. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view" system_cache__appinfo:xpath="default_db__x3A__NEURO_MIND:NEURO_MIND/ID_NEURO_MATRIX"/>
  375. </system_cache__appinfo:flat_relation_cache>
  376. </xs:appinfo>
  377. <xs:documentation>Przynależność do jakiegoś MIND</xs:documentation>
  378. </xs:annotation>
  379. </xs:element>
  380. <xs:element minOccurs="0" name="ID_NEURO_MIND_LAYER_RECEPTOR" type="xs:int">
  381. <xs:annotation>
  382. <xs:documentation>Opcjonalny ref do receptora</xs:documentation>
  383. </xs:annotation>
  384. </xs:element>
  385. <xs:element name="ID_NEURO_LAYER_COVERAGE" type="xs:int">
  386. <xs:annotation>
  387. <xs:documentation>Ref konfiguracji specjalnych cech warstwy </xs:documentation>
  388. </xs:annotation>
  389. </xs:element>
  390. <xs:element name="ID_NEURO_MIND_STATE" type="xs:int">
  391. <xs:annotation>
  392. <xs:documentation>zaleznosc do State</xs:documentation>
  393. </xs:annotation>
  394. </xs:element>
  395. </xs:sequence>
  396. </xs:restriction>
  397. </xs:complexContent>
  398. </xs:complexType>
  399. <xs:element name="X3-MergeCoverage-MinAlt"
  400. type="default_db__x3A__NEURO_MATRIX:X3-MergeCoverage-MinAlt"/>
  401. <xs:complexType name="X3-MergeCoverage-MaxAlt">
  402. <xs:complexContent>
  403. <xs:restriction base="default_db__x3A__NEURO_MATRIX:X3">
  404. <xs:sequence>
  405. <xs:element name="ID" type="xs:int"/>
  406. <xs:element name="altitude" type="xs:float">
  407. <xs:annotation>
  408. <xs:documentation>Umiejscowanie w danym wymiarze na wysokości</xs:documentation>
  409. </xs:annotation>
  410. </xs:element>
  411. <xs:element minOccurs="0" name="offset" type="xs:float"/>
  412. <xs:element minOccurs="0" name="tolerance" type="xs:int"/>
  413. <xs:element ref="default_db__x3A__NEURO_MIND:NEURO_MIND">
  414. <xs:annotation>
  415. <xs:appinfo>
  416. <system_cache__appinfo:flat_relation_cache>
  417. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view" system_cache__appinfo:xpath="default_db__x3A__NEURO_MIND:NEURO_MIND/ID_NEURO_MATRIX"/>
  418. </system_cache__appinfo:flat_relation_cache>
  419. </xs:appinfo>
  420. <xs:documentation>Przynależność do jakiegoś MIND</xs:documentation>
  421. </xs:annotation>
  422. </xs:element>
  423. <xs:element minOccurs="0" name="ID_NEURO_MIND_LAYER_RECEPTOR" type="xs:int">
  424. <xs:annotation>
  425. <xs:documentation>Opcjonalny ref do receptora</xs:documentation>
  426. </xs:annotation>
  427. </xs:element>
  428. <xs:element name="ID_NEURO_LAYER_COVERAGE" type="xs:int">
  429. <xs:annotation>
  430. <xs:documentation>Ref konfiguracji specjalnych cech warstwy </xs:documentation>
  431. </xs:annotation>
  432. </xs:element>
  433. <xs:element name="ID_NEURO_MIND_STATE" type="xs:int">
  434. <xs:annotation>
  435. <xs:documentation>zaleznosc do State</xs:documentation>
  436. </xs:annotation>
  437. </xs:element>
  438. </xs:sequence>
  439. </xs:restriction>
  440. </xs:complexContent>
  441. </xs:complexType>
  442. <xs:element name="X3-MergeCoverage-MaxAlt"
  443. type="default_db__x3A__NEURO_MATRIX:X3-MergeCoverage-MaxAlt"/>
  444. <xs:complexType name="Y1">
  445. <xs:complexContent>
  446. <xs:restriction base="default_db__x3A__NEURO_MATRIX:NEURO_MATRIX">
  447. <xs:sequence>
  448. <xs:element name="ID" type="xs:int"/>
  449. <xs:element name="altitude" type="xs:float">
  450. <xs:annotation>
  451. <xs:documentation>Umiejscowanie w danym wymiarze na wysokości</xs:documentation>
  452. </xs:annotation>
  453. </xs:element>
  454. <xs:element minOccurs="0" name="offset" type="xs:float"/>
  455. <xs:element minOccurs="0" name="tolerance" type="xs:int"/>
  456. <xs:element ref="default_db__x3A__NEURO_MIND:NEURO_MIND">
  457. <xs:annotation>
  458. <xs:appinfo>
  459. <system_cache__appinfo:flat_relation_cache>
  460. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view" system_cache__appinfo:xpath="default_db__x3A__NEURO_MIND:NEURO_MIND/ID_NEURO_MATRIX"/>
  461. </system_cache__appinfo:flat_relation_cache>
  462. </xs:appinfo>
  463. <xs:documentation>Przynależność do jakiegoś MIND</xs:documentation>
  464. </xs:annotation>
  465. </xs:element>
  466. <xs:element minOccurs="0" name="ID_NEURO_MIND_LAYER_RECEPTOR" type="xs:int">
  467. <xs:annotation>
  468. <xs:documentation>Opcjonalny ref do receptora</xs:documentation>
  469. </xs:annotation>
  470. </xs:element>
  471. <xs:element name="ID_NEURO_LAYER_COVERAGE" type="xs:int">
  472. <xs:annotation>
  473. <xs:documentation>Ref konfiguracji specjalnych cech warstwy </xs:documentation>
  474. </xs:annotation>
  475. </xs:element>
  476. <xs:element name="ID_NEURO_MIND_STATE" type="xs:int">
  477. <xs:annotation>
  478. <xs:documentation>zaleznosc do State</xs:documentation>
  479. </xs:annotation>
  480. </xs:element>
  481. </xs:sequence>
  482. </xs:restriction>
  483. </xs:complexContent>
  484. </xs:complexType>
  485. <xs:element name="Y1" type="default_db__x3A__NEURO_MATRIX:NEURO_MATRIX"/>
  486. <xs:complexType name="Y2">
  487. <xs:complexContent>
  488. <xs:restriction base="default_db__x3A__NEURO_MATRIX:NEURO_MATRIX">
  489. <xs:sequence>
  490. <xs:element name="ID" type="xs:int"/>
  491. <xs:element name="altitude" type="xs:float">
  492. <xs:annotation>
  493. <xs:documentation>Umiejscowanie w danym wymiarze na wysokości</xs:documentation>
  494. </xs:annotation>
  495. </xs:element>
  496. <xs:element minOccurs="0" name="offset" type="xs:float"/>
  497. <xs:element minOccurs="0" name="tolerance" type="xs:int"/>
  498. <xs:element ref="default_db__x3A__NEURO_MIND:NEURO_MIND">
  499. <xs:annotation>
  500. <xs:appinfo>
  501. <system_cache__appinfo:flat_relation_cache>
  502. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view" system_cache__appinfo:xpath="default_db__x3A__NEURO_MIND:NEURO_MIND/ID_NEURO_MATRIX"/>
  503. </system_cache__appinfo:flat_relation_cache>
  504. </xs:appinfo>
  505. <xs:documentation>Przynależność do jakiegoś MIND</xs:documentation>
  506. </xs:annotation>
  507. </xs:element>
  508. <xs:element minOccurs="0" name="ID_NEURO_MIND_LAYER_RECEPTOR" type="xs:int">
  509. <xs:annotation>
  510. <xs:documentation>Opcjonalny ref do receptora</xs:documentation>
  511. </xs:annotation>
  512. </xs:element>
  513. <xs:element name="ID_NEURO_LAYER_COVERAGE" type="xs:int">
  514. <xs:annotation>
  515. <xs:documentation>Ref konfiguracji specjalnych cech warstwy </xs:documentation>
  516. </xs:annotation>
  517. </xs:element>
  518. <xs:element name="ID_NEURO_MIND_STATE" type="xs:int">
  519. <xs:annotation>
  520. <xs:documentation>zaleznosc do State</xs:documentation>
  521. </xs:annotation>
  522. </xs:element>
  523. </xs:sequence>
  524. </xs:restriction>
  525. </xs:complexContent>
  526. </xs:complexType>
  527. <xs:element name="Y2" type="default_db__x3A__NEURO_MATRIX:NEURO_MATRIX"/>
  528. <xs:complexType name="Y3">
  529. <xs:complexContent>
  530. <xs:restriction base="default_db__x3A__NEURO_MATRIX:NEURO_MATRIX">
  531. <xs:sequence>
  532. <xs:element name="ID" type="xs:int"/>
  533. <xs:element name="altitude" type="xs:float">
  534. <xs:annotation>
  535. <xs:documentation>Umiejscowanie w danym wymiarze na wysokości</xs:documentation>
  536. </xs:annotation>
  537. </xs:element>
  538. <xs:element minOccurs="0" name="offset" type="xs:float"/>
  539. <xs:element minOccurs="0" name="tolerance" type="xs:int"/>
  540. <xs:element ref="default_db__x3A__NEURO_MIND:NEURO_MIND">
  541. <xs:annotation>
  542. <xs:appinfo>
  543. <system_cache__appinfo:flat_relation_cache>
  544. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view" system_cache__appinfo:xpath="default_db__x3A__NEURO_MIND:NEURO_MIND/ID_NEURO_MATRIX"/>
  545. </system_cache__appinfo:flat_relation_cache>
  546. </xs:appinfo>
  547. <xs:documentation>Przynależność do jakiegoś MIND</xs:documentation>
  548. </xs:annotation>
  549. </xs:element>
  550. <xs:element minOccurs="0" name="ID_NEURO_MIND_LAYER_RECEPTOR" type="xs:int">
  551. <xs:annotation>
  552. <xs:documentation>Opcjonalny ref do receptora</xs:documentation>
  553. </xs:annotation>
  554. </xs:element>
  555. <xs:element name="ID_NEURO_LAYER_COVERAGE" type="xs:int">
  556. <xs:annotation>
  557. <xs:documentation>Ref konfiguracji specjalnych cech warstwy </xs:documentation>
  558. </xs:annotation>
  559. </xs:element>
  560. <xs:element name="ID_NEURO_MIND_STATE" type="xs:int">
  561. <xs:annotation>
  562. <xs:documentation>zaleznosc do State</xs:documentation>
  563. </xs:annotation>
  564. </xs:element>
  565. </xs:sequence>
  566. </xs:restriction>
  567. </xs:complexContent>
  568. </xs:complexType>
  569. <xs:element name="Y3" type="default_db__x3A__NEURO_MATRIX:NEURO_MATRIX"/>
  570. <xs:element name="Z1" type="default_db__x3A__NEURO_MATRIX:NEURO_MATRIX"/>
  571. <xs:complexType name="Z1">
  572. <xs:complexContent>
  573. <xs:restriction base="default_db__x3A__NEURO_MATRIX:NEURO_MATRIX">
  574. <xs:sequence>
  575. <xs:element name="ID" type="xs:int"/>
  576. <xs:element name="altitude" type="xs:float">
  577. <xs:annotation>
  578. <xs:documentation>Umiejscowanie w danym wymiarze na wysokości</xs:documentation>
  579. </xs:annotation>
  580. </xs:element>
  581. <xs:element minOccurs="0" name="offset" type="xs:float"/>
  582. <xs:element minOccurs="0" name="tolerance" type="xs:int"/>
  583. <xs:element ref="default_db__x3A__NEURO_MIND:NEURO_MIND">
  584. <xs:annotation>
  585. <xs:appinfo>
  586. <system_cache__appinfo:flat_relation_cache>
  587. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view" system_cache__appinfo:xpath="default_db__x3A__NEURO_MIND:NEURO_MIND/ID_NEURO_MATRIX"/>
  588. </system_cache__appinfo:flat_relation_cache>
  589. </xs:appinfo>
  590. <xs:documentation>Przynależność do jakiegoś MIND</xs:documentation>
  591. </xs:annotation>
  592. </xs:element>
  593. <xs:element minOccurs="0" name="ID_NEURO_MIND_LAYER_RECEPTOR" type="xs:int">
  594. <xs:annotation>
  595. <xs:documentation>Opcjonalny ref do receptora</xs:documentation>
  596. </xs:annotation>
  597. </xs:element>
  598. <xs:element name="ID_NEURO_LAYER_COVERAGE" type="xs:int">
  599. <xs:annotation>
  600. <xs:documentation>Ref konfiguracji specjalnych cech warstwy </xs:documentation>
  601. </xs:annotation>
  602. </xs:element>
  603. <xs:element name="ID_NEURO_MIND_STATE" type="xs:int">
  604. <xs:annotation>
  605. <xs:documentation>zaleznosc do State</xs:documentation>
  606. </xs:annotation>
  607. </xs:element>
  608. </xs:sequence>
  609. </xs:restriction>
  610. </xs:complexContent>
  611. </xs:complexType>
  612. <xs:element name="Z2" type="default_db__x3A__NEURO_MATRIX:NEURO_MATRIX"/>
  613. <xs:complexType name="Z2">
  614. <xs:complexContent>
  615. <xs:restriction base="default_db__x3A__NEURO_MATRIX:NEURO_MATRIX">
  616. <xs:sequence>
  617. <xs:element name="ID" type="xs:int"/>
  618. <xs:element name="altitude" type="xs:float">
  619. <xs:annotation>
  620. <xs:documentation>Umiejscowanie w danym wymiarze na wysokości</xs:documentation>
  621. </xs:annotation>
  622. </xs:element>
  623. <xs:element minOccurs="0" name="offset" type="xs:float"/>
  624. <xs:element minOccurs="0" name="tolerance" type="xs:int"/>
  625. <xs:element ref="default_db__x3A__NEURO_MIND:NEURO_MIND">
  626. <xs:annotation>
  627. <xs:appinfo>
  628. <system_cache__appinfo:flat_relation_cache>
  629. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view" system_cache__appinfo:xpath="default_db__x3A__NEURO_MIND:NEURO_MIND/ID_NEURO_MATRIX"/>
  630. </system_cache__appinfo:flat_relation_cache>
  631. </xs:appinfo>
  632. <xs:documentation>Przynależność do jakiegoś MIND</xs:documentation>
  633. </xs:annotation>
  634. </xs:element>
  635. <xs:element minOccurs="0" name="ID_NEURO_MIND_LAYER_RECEPTOR" type="xs:int">
  636. <xs:annotation>
  637. <xs:documentation>Opcjonalny ref do receptora</xs:documentation>
  638. </xs:annotation>
  639. </xs:element>
  640. <xs:element name="ID_NEURO_LAYER_COVERAGE" type="xs:int">
  641. <xs:annotation>
  642. <xs:documentation>Ref konfiguracji specjalnych cech warstwy </xs:documentation>
  643. </xs:annotation>
  644. </xs:element>
  645. <xs:element name="ID_NEURO_MIND_STATE" type="xs:int">
  646. <xs:annotation>
  647. <xs:documentation>zaleznosc do State</xs:documentation>
  648. </xs:annotation>
  649. </xs:element>
  650. </xs:sequence>
  651. </xs:restriction>
  652. </xs:complexContent>
  653. </xs:complexType>
  654. <xs:element name="Z3" type="default_db__x3A__NEURO_MATRIX:NEURO_MATRIX"/>
  655. <xs:complexType name="Z3">
  656. <xs:complexContent>
  657. <xs:restriction base="default_db__x3A__NEURO_MATRIX:NEURO_MATRIX">
  658. <xs:sequence>
  659. <xs:element name="ID" type="xs:int"/>
  660. <xs:element name="altitude" type="xs:float">
  661. <xs:annotation>
  662. <xs:documentation>Umiejscowanie w danym wymiarze na wysokości</xs:documentation>
  663. </xs:annotation>
  664. </xs:element>
  665. <xs:element minOccurs="0" name="offset" type="xs:float"/>
  666. <xs:element minOccurs="0" name="tolerance" type="xs:int"/>
  667. <xs:element ref="default_db__x3A__NEURO_MIND:NEURO_MIND">
  668. <xs:annotation>
  669. <xs:appinfo>
  670. <system_cache__appinfo:flat_relation_cache>
  671. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view" system_cache__appinfo:xpath="default_db__x3A__NEURO_MIND:NEURO_MIND/ID_NEURO_MATRIX"/>
  672. </system_cache__appinfo:flat_relation_cache>
  673. </xs:appinfo>
  674. <xs:documentation>Przynależność do jakiegoś MIND</xs:documentation>
  675. </xs:annotation>
  676. </xs:element>
  677. <xs:element minOccurs="0" name="ID_NEURO_MIND_LAYER_RECEPTOR" type="xs:int">
  678. <xs:annotation>
  679. <xs:documentation>Opcjonalny ref do receptora</xs:documentation>
  680. </xs:annotation>
  681. </xs:element>
  682. <xs:element name="ID_NEURO_LAYER_COVERAGE" type="xs:int">
  683. <xs:annotation>
  684. <xs:documentation>Ref konfiguracji specjalnych cech warstwy </xs:documentation>
  685. </xs:annotation>
  686. </xs:element>
  687. <xs:element name="ID_NEURO_MIND_STATE" type="xs:int">
  688. <xs:annotation>
  689. <xs:documentation>zaleznosc do State</xs:documentation>
  690. </xs:annotation>
  691. </xs:element>
  692. </xs:sequence>
  693. </xs:restriction>
  694. </xs:complexContent>
  695. </xs:complexType>
  696. <xs:element name="Ascend1" type="default_db__x3A__NEURO_MATRIX:NEURO_MATRIX"/>
  697. <xs:complexType name="Ascend1">
  698. <xs:complexContent>
  699. <xs:restriction base="default_db__x3A__NEURO_MATRIX:NEURO_MATRIX">
  700. <xs:sequence>
  701. <xs:element name="ID" type="xs:int"/>
  702. <xs:element name="altitude" type="xs:float">
  703. <xs:annotation>
  704. <xs:documentation>Umiejscowanie w danym wymiarze na wysokości</xs:documentation>
  705. </xs:annotation>
  706. </xs:element>
  707. <xs:element minOccurs="0" name="offset" type="xs:float"/>
  708. <xs:element minOccurs="0" name="tolerance" type="xs:int"/>
  709. <xs:element ref="default_db__x3A__NEURO_MIND:NEURO_MIND">
  710. <xs:annotation>
  711. <xs:appinfo>
  712. <system_cache__appinfo:flat_relation_cache>
  713. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view" system_cache__appinfo:xpath="default_db__x3A__NEURO_MIND:NEURO_MIND/ID_NEURO_MATRIX"/>
  714. </system_cache__appinfo:flat_relation_cache>
  715. </xs:appinfo>
  716. <xs:documentation>Przynależność do jakiegoś MIND</xs:documentation>
  717. </xs:annotation>
  718. </xs:element>
  719. <xs:element minOccurs="0" name="ID_NEURO_MIND_LAYER_RECEPTOR" type="xs:int">
  720. <xs:annotation>
  721. <xs:documentation>Opcjonalny ref do receptora</xs:documentation>
  722. </xs:annotation>
  723. </xs:element>
  724. <xs:element name="ID_NEURO_LAYER_COVERAGE" type="xs:int">
  725. <xs:annotation>
  726. <xs:documentation>Ref konfiguracji specjalnych cech warstwy </xs:documentation>
  727. </xs:annotation>
  728. </xs:element>
  729. <xs:element name="ID_NEURO_MIND_STATE" type="xs:int">
  730. <xs:annotation>
  731. <xs:documentation>zaleznosc do State</xs:documentation>
  732. </xs:annotation>
  733. </xs:element>
  734. </xs:sequence>
  735. </xs:restriction>
  736. </xs:complexContent>
  737. </xs:complexType>
  738. <xs:element name="Ascend2" type="default_db__x3A__NEURO_MATRIX:NEURO_MATRIX"/>
  739. <xs:complexType name="Ascend2">
  740. <xs:complexContent>
  741. <xs:restriction base="default_db__x3A__NEURO_MATRIX:NEURO_MATRIX">
  742. <xs:sequence>
  743. <xs:element name="ID" type="xs:int"/>
  744. <xs:element name="altitude" type="xs:float">
  745. <xs:annotation>
  746. <xs:documentation>Umiejscowanie w danym wymiarze na wysokości</xs:documentation>
  747. </xs:annotation>
  748. </xs:element>
  749. <xs:element minOccurs="0" name="offset" type="xs:float"/>
  750. <xs:element minOccurs="0" name="tolerance" type="xs:int"/>
  751. <xs:element ref="default_db__x3A__NEURO_MIND:NEURO_MIND">
  752. <xs:annotation>
  753. <xs:appinfo>
  754. <system_cache__appinfo:flat_relation_cache>
  755. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view" system_cache__appinfo:xpath="default_db__x3A__NEURO_MIND:NEURO_MIND/ID_NEURO_MATRIX"/>
  756. </system_cache__appinfo:flat_relation_cache>
  757. </xs:appinfo>
  758. <xs:documentation>Przynależność do jakiegoś MIND</xs:documentation>
  759. </xs:annotation>
  760. </xs:element>
  761. <xs:element minOccurs="0" name="ID_NEURO_MIND_LAYER_RECEPTOR" type="xs:int">
  762. <xs:annotation>
  763. <xs:documentation>Opcjonalny ref do receptora</xs:documentation>
  764. </xs:annotation>
  765. </xs:element>
  766. <xs:element name="ID_NEURO_LAYER_COVERAGE" type="xs:int">
  767. <xs:annotation>
  768. <xs:documentation>Ref konfiguracji specjalnych cech warstwy </xs:documentation>
  769. </xs:annotation>
  770. </xs:element>
  771. <xs:element name="ID_NEURO_MIND_STATE" type="xs:int">
  772. <xs:annotation>
  773. <xs:documentation>zaleznosc do State</xs:documentation>
  774. </xs:annotation>
  775. </xs:element>
  776. </xs:sequence>
  777. </xs:restriction>
  778. </xs:complexContent>
  779. </xs:complexType>
  780. <xs:element name="Ascend3" type="default_db__x3A__NEURO_MATRIX:NEURO_MATRIX"/>
  781. <xs:complexType name="Ascend3">
  782. <xs:complexContent>
  783. <xs:restriction base="default_db__x3A__NEURO_MATRIX:NEURO_MATRIX">
  784. <xs:sequence>
  785. <xs:element name="ID" type="xs:int"/>
  786. <xs:element name="altitude" type="xs:float">
  787. <xs:annotation>
  788. <xs:documentation>Umiejscowanie w danym wymiarze na wysokości</xs:documentation>
  789. </xs:annotation>
  790. </xs:element>
  791. <xs:element minOccurs="0" name="offset" type="xs:float"/>
  792. <xs:element minOccurs="0" name="tolerance" type="xs:int"/>
  793. <xs:element ref="default_db__x3A__NEURO_MIND:NEURO_MIND">
  794. <xs:annotation>
  795. <xs:appinfo>
  796. <system_cache__appinfo:flat_relation_cache>
  797. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view" system_cache__appinfo:xpath="default_db__x3A__NEURO_MIND:NEURO_MIND/ID_NEURO_MATRIX"/>
  798. </system_cache__appinfo:flat_relation_cache>
  799. </xs:appinfo>
  800. <xs:documentation>Przynależność do jakiegoś MIND</xs:documentation>
  801. </xs:annotation>
  802. </xs:element>
  803. <xs:element minOccurs="0" name="ID_NEURO_MIND_LAYER_RECEPTOR" type="xs:int">
  804. <xs:annotation>
  805. <xs:documentation>Opcjonalny ref do receptora</xs:documentation>
  806. </xs:annotation>
  807. </xs:element>
  808. <xs:element name="ID_NEURO_LAYER_COVERAGE" type="xs:int">
  809. <xs:annotation>
  810. <xs:documentation>Ref konfiguracji specjalnych cech warstwy </xs:documentation>
  811. </xs:annotation>
  812. </xs:element>
  813. <xs:element name="ID_NEURO_MIND_STATE" type="xs:int">
  814. <xs:annotation>
  815. <xs:documentation>zaleznosc do State</xs:documentation>
  816. </xs:annotation>
  817. </xs:element>
  818. </xs:sequence>
  819. </xs:restriction>
  820. </xs:complexContent>
  821. </xs:complexType>
  822. <xs:element name="Descend1" type="default_db__x3A__NEURO_MATRIX:NEURO_MATRIX"/>
  823. <xs:complexType name="Descend1">
  824. <xs:complexContent>
  825. <xs:restriction base="default_db__x3A__NEURO_MATRIX:NEURO_MATRIX">
  826. <xs:sequence>
  827. <xs:element name="ID" type="xs:int"/>
  828. <xs:element name="altitude" type="xs:float">
  829. <xs:annotation>
  830. <xs:documentation>Umiejscowanie w danym wymiarze na wysokości</xs:documentation>
  831. </xs:annotation>
  832. </xs:element>
  833. <xs:element minOccurs="0" name="offset" type="xs:float"/>
  834. <xs:element minOccurs="0" name="tolerance" type="xs:int"/>
  835. <xs:element ref="default_db__x3A__NEURO_MIND:NEURO_MIND">
  836. <xs:annotation>
  837. <xs:appinfo>
  838. <system_cache__appinfo:flat_relation_cache>
  839. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view" system_cache__appinfo:xpath="default_db__x3A__NEURO_MIND:NEURO_MIND/ID_NEURO_MATRIX"/>
  840. </system_cache__appinfo:flat_relation_cache>
  841. </xs:appinfo>
  842. <xs:documentation>Przynależność do jakiegoś MIND</xs:documentation>
  843. </xs:annotation>
  844. </xs:element>
  845. <xs:element minOccurs="0" name="ID_NEURO_MIND_LAYER_RECEPTOR" type="xs:int">
  846. <xs:annotation>
  847. <xs:documentation>Opcjonalny ref do receptora</xs:documentation>
  848. </xs:annotation>
  849. </xs:element>
  850. <xs:element name="ID_NEURO_LAYER_COVERAGE" type="xs:int">
  851. <xs:annotation>
  852. <xs:documentation>Ref konfiguracji specjalnych cech warstwy </xs:documentation>
  853. </xs:annotation>
  854. </xs:element>
  855. <xs:element name="ID_NEURO_MIND_STATE" type="xs:int">
  856. <xs:annotation>
  857. <xs:documentation>zaleznosc do State</xs:documentation>
  858. </xs:annotation>
  859. </xs:element>
  860. </xs:sequence>
  861. </xs:restriction>
  862. </xs:complexContent>
  863. </xs:complexType>
  864. <xs:element name="Descend2" type="default_db__x3A__NEURO_MATRIX:NEURO_MATRIX"/>
  865. <xs:complexType name="Descend2">
  866. <xs:complexContent>
  867. <xs:restriction base="default_db__x3A__NEURO_MATRIX:NEURO_MATRIX">
  868. <xs:sequence>
  869. <xs:element name="ID" type="xs:int"/>
  870. <xs:element name="altitude" type="xs:float">
  871. <xs:annotation>
  872. <xs:documentation>Umiejscowanie w danym wymiarze na wysokości</xs:documentation>
  873. </xs:annotation>
  874. </xs:element>
  875. <xs:element minOccurs="0" name="offset" type="xs:float"/>
  876. <xs:element minOccurs="0" name="tolerance" type="xs:int"/>
  877. <xs:element ref="default_db__x3A__NEURO_MIND:NEURO_MIND">
  878. <xs:annotation>
  879. <xs:appinfo>
  880. <system_cache__appinfo:flat_relation_cache>
  881. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view" system_cache__appinfo:xpath="default_db__x3A__NEURO_MIND:NEURO_MIND/ID_NEURO_MATRIX"/>
  882. </system_cache__appinfo:flat_relation_cache>
  883. </xs:appinfo>
  884. <xs:documentation>Przynależność do jakiegoś MIND</xs:documentation>
  885. </xs:annotation>
  886. </xs:element>
  887. <xs:element minOccurs="0" name="ID_NEURO_MIND_LAYER_RECEPTOR" type="xs:int">
  888. <xs:annotation>
  889. <xs:documentation>Opcjonalny ref do receptora</xs:documentation>
  890. </xs:annotation>
  891. </xs:element>
  892. <xs:element name="ID_NEURO_LAYER_COVERAGE" type="xs:int">
  893. <xs:annotation>
  894. <xs:documentation>Ref konfiguracji specjalnych cech warstwy </xs:documentation>
  895. </xs:annotation>
  896. </xs:element>
  897. <xs:element name="ID_NEURO_MIND_STATE" type="xs:int">
  898. <xs:annotation>
  899. <xs:documentation>zaleznosc do State</xs:documentation>
  900. </xs:annotation>
  901. </xs:element>
  902. </xs:sequence>
  903. </xs:restriction>
  904. </xs:complexContent>
  905. </xs:complexType>
  906. <xs:element name="Descend3" type="default_db__x3A__NEURO_MATRIX:NEURO_MATRIX"/>
  907. <xs:complexType name="Descend3">
  908. <xs:complexContent>
  909. <xs:restriction base="default_db__x3A__NEURO_MATRIX:NEURO_MATRIX">
  910. <xs:sequence>
  911. <xs:element name="ID" type="xs:int"/>
  912. <xs:element name="altitude" type="xs:float">
  913. <xs:annotation>
  914. <xs:documentation>Umiejscowanie w danym wymiarze na wysokości</xs:documentation>
  915. </xs:annotation>
  916. </xs:element>
  917. <xs:element minOccurs="0" name="offset" type="xs:float"/>
  918. <xs:element minOccurs="0" name="tolerance" type="xs:int"/>
  919. <xs:element ref="default_db__x3A__NEURO_MIND:NEURO_MIND">
  920. <xs:annotation>
  921. <xs:appinfo>
  922. <system_cache__appinfo:flat_relation_cache>
  923. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view" system_cache__appinfo:xpath="default_db__x3A__NEURO_MIND:NEURO_MIND/ID_NEURO_MATRIX"/>
  924. </system_cache__appinfo:flat_relation_cache>
  925. </xs:appinfo>
  926. <xs:documentation>Przynależność do jakiegoś MIND</xs:documentation>
  927. </xs:annotation>
  928. </xs:element>
  929. <xs:element minOccurs="0" name="ID_NEURO_MIND_LAYER_RECEPTOR" type="xs:int">
  930. <xs:annotation>
  931. <xs:documentation>Opcjonalny ref do receptora</xs:documentation>
  932. </xs:annotation>
  933. </xs:element>
  934. <xs:element name="ID_NEURO_LAYER_COVERAGE" type="xs:int">
  935. <xs:annotation>
  936. <xs:documentation>Ref konfiguracji specjalnych cech warstwy </xs:documentation>
  937. </xs:annotation>
  938. </xs:element>
  939. <xs:element name="ID_NEURO_MIND_STATE" type="xs:int">
  940. <xs:annotation>
  941. <xs:documentation>zaleznosc do State</xs:documentation>
  942. </xs:annotation>
  943. </xs:element>
  944. </xs:sequence>
  945. </xs:restriction>
  946. </xs:complexContent>
  947. </xs:complexType>
  948. <xs:element name="Preceed1" type="default_db__x3A__NEURO_MATRIX:NEURO_MATRIX"/>
  949. <xs:complexType name="Preceed1">
  950. <xs:complexContent>
  951. <xs:restriction base="default_db__x3A__NEURO_MATRIX:NEURO_MATRIX">
  952. <xs:sequence>
  953. <xs:element name="ID" type="xs:int"/>
  954. <xs:element name="altitude" type="xs:float">
  955. <xs:annotation>
  956. <xs:documentation>Umiejscowanie w danym wymiarze na wysokości</xs:documentation>
  957. </xs:annotation>
  958. </xs:element>
  959. <xs:element minOccurs="0" name="offset" type="xs:float"/>
  960. <xs:element minOccurs="0" name="tolerance" type="xs:int"/>
  961. <xs:element ref="default_db__x3A__NEURO_MIND:NEURO_MIND">
  962. <xs:annotation>
  963. <xs:appinfo>
  964. <system_cache__appinfo:flat_relation_cache>
  965. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view" system_cache__appinfo:xpath="default_db__x3A__NEURO_MIND:NEURO_MIND/ID_NEURO_MATRIX"/>
  966. </system_cache__appinfo:flat_relation_cache>
  967. </xs:appinfo>
  968. <xs:documentation>Przynależność do jakiegoś MIND</xs:documentation>
  969. </xs:annotation>
  970. </xs:element>
  971. <xs:element minOccurs="0" name="ID_NEURO_MIND_LAYER_RECEPTOR" type="xs:int">
  972. <xs:annotation>
  973. <xs:documentation>Opcjonalny ref do receptora</xs:documentation>
  974. </xs:annotation>
  975. </xs:element>
  976. <xs:element name="ID_NEURO_LAYER_COVERAGE" type="xs:int">
  977. <xs:annotation>
  978. <xs:documentation>Ref konfiguracji specjalnych cech warstwy </xs:documentation>
  979. </xs:annotation>
  980. </xs:element>
  981. <xs:element name="ID_NEURO_MIND_STATE" type="xs:int">
  982. <xs:annotation>
  983. <xs:documentation>zaleznosc do State</xs:documentation>
  984. </xs:annotation>
  985. </xs:element>
  986. </xs:sequence>
  987. </xs:restriction>
  988. </xs:complexContent>
  989. </xs:complexType>
  990. <xs:element name="Preceed2" type="default_db__x3A__NEURO_MATRIX:NEURO_MATRIX"/>
  991. <xs:complexType name="Preceed2">
  992. <xs:complexContent>
  993. <xs:restriction base="default_db__x3A__NEURO_MATRIX:NEURO_MATRIX">
  994. <xs:sequence>
  995. <xs:element name="ID" type="xs:int"/>
  996. <xs:element name="altitude" type="xs:float">
  997. <xs:annotation>
  998. <xs:documentation>Umiejscowanie w danym wymiarze na wysokości</xs:documentation>
  999. </xs:annotation>
  1000. </xs:element>
  1001. <xs:element minOccurs="0" name="offset" type="xs:float"/>
  1002. <xs:element minOccurs="0" name="tolerance" type="xs:int"/>
  1003. <xs:element ref="default_db__x3A__NEURO_MIND:NEURO_MIND">
  1004. <xs:annotation>
  1005. <xs:appinfo>
  1006. <system_cache__appinfo:flat_relation_cache>
  1007. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view" system_cache__appinfo:xpath="default_db__x3A__NEURO_MIND:NEURO_MIND/ID_NEURO_MATRIX"/>
  1008. </system_cache__appinfo:flat_relation_cache>
  1009. </xs:appinfo>
  1010. <xs:documentation>Przynależność do jakiegoś MIND</xs:documentation>
  1011. </xs:annotation>
  1012. </xs:element>
  1013. <xs:element minOccurs="0" name="ID_NEURO_MIND_LAYER_RECEPTOR" type="xs:int">
  1014. <xs:annotation>
  1015. <xs:documentation>Opcjonalny ref do receptora</xs:documentation>
  1016. </xs:annotation>
  1017. </xs:element>
  1018. <xs:element name="ID_NEURO_LAYER_COVERAGE" type="xs:int">
  1019. <xs:annotation>
  1020. <xs:documentation>Ref konfiguracji specjalnych cech warstwy </xs:documentation>
  1021. </xs:annotation>
  1022. </xs:element>
  1023. <xs:element name="ID_NEURO_MIND_STATE" type="xs:int">
  1024. <xs:annotation>
  1025. <xs:documentation>zaleznosc do State</xs:documentation>
  1026. </xs:annotation>
  1027. </xs:element>
  1028. </xs:sequence>
  1029. </xs:restriction>
  1030. </xs:complexContent>
  1031. </xs:complexType>
  1032. <xs:element name="Preceed3" type="default_db__x3A__NEURO_MATRIX:NEURO_MATRIX"/>
  1033. <xs:complexType name="Preceed3">
  1034. <xs:complexContent>
  1035. <xs:restriction base="default_db__x3A__NEURO_MATRIX:NEURO_MATRIX">
  1036. <xs:sequence>
  1037. <xs:element name="ID" type="xs:int"/>
  1038. <xs:element name="altitude" type="xs:float">
  1039. <xs:annotation>
  1040. <xs:documentation>Umiejscowanie w danym wymiarze na wysokości</xs:documentation>
  1041. </xs:annotation>
  1042. </xs:element>
  1043. <xs:element minOccurs="0" name="offset" type="xs:float"/>
  1044. <xs:element minOccurs="0" name="tolerance" type="xs:int"/>
  1045. <xs:element ref="default_db__x3A__NEURO_MIND:NEURO_MIND">
  1046. <xs:annotation>
  1047. <xs:appinfo>
  1048. <system_cache__appinfo:flat_relation_cache>
  1049. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view" system_cache__appinfo:xpath="default_db__x3A__NEURO_MIND:NEURO_MIND/ID_NEURO_MATRIX"/>
  1050. </system_cache__appinfo:flat_relation_cache>
  1051. </xs:appinfo>
  1052. <xs:documentation>Przynależność do jakiegoś MIND</xs:documentation>
  1053. </xs:annotation>
  1054. </xs:element>
  1055. <xs:element minOccurs="0" name="ID_NEURO_MIND_LAYER_RECEPTOR" type="xs:int">
  1056. <xs:annotation>
  1057. <xs:documentation>Opcjonalny ref do receptora</xs:documentation>
  1058. </xs:annotation>
  1059. </xs:element>
  1060. <xs:element name="ID_NEURO_LAYER_COVERAGE" type="xs:int">
  1061. <xs:annotation>
  1062. <xs:documentation>Ref konfiguracji specjalnych cech warstwy </xs:documentation>
  1063. </xs:annotation>
  1064. </xs:element>
  1065. <xs:element name="ID_NEURO_MIND_STATE" type="xs:int">
  1066. <xs:annotation>
  1067. <xs:documentation>zaleznosc do State</xs:documentation>
  1068. </xs:annotation>
  1069. </xs:element>
  1070. </xs:sequence>
  1071. </xs:restriction>
  1072. </xs:complexContent>
  1073. </xs:complexType>
  1074. <xs:element name="Follow1" type="default_db__x3A__NEURO_MATRIX:NEURO_MATRIX"/>
  1075. <xs:complexType name="Follow1">
  1076. <xs:complexContent>
  1077. <xs:restriction base="default_db__x3A__NEURO_MATRIX:NEURO_MATRIX">
  1078. <xs:sequence>
  1079. <xs:element name="ID" type="xs:int"/>
  1080. <xs:element name="altitude" type="xs:float">
  1081. <xs:annotation>
  1082. <xs:documentation>Umiejscowanie w danym wymiarze na wysokości</xs:documentation>
  1083. </xs:annotation>
  1084. </xs:element>
  1085. <xs:element minOccurs="0" name="offset" type="xs:float"/>
  1086. <xs:element minOccurs="0" name="tolerance" type="xs:int"/>
  1087. <xs:element ref="default_db__x3A__NEURO_MIND:NEURO_MIND">
  1088. <xs:annotation>
  1089. <xs:appinfo>
  1090. <system_cache__appinfo:flat_relation_cache>
  1091. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view" system_cache__appinfo:xpath="default_db__x3A__NEURO_MIND:NEURO_MIND/ID_NEURO_MATRIX"/>
  1092. </system_cache__appinfo:flat_relation_cache>
  1093. </xs:appinfo>
  1094. <xs:documentation>Przynależność do jakiegoś MIND</xs:documentation>
  1095. </xs:annotation>
  1096. </xs:element>
  1097. <xs:element minOccurs="0" name="ID_NEURO_MIND_LAYER_RECEPTOR" type="xs:int">
  1098. <xs:annotation>
  1099. <xs:documentation>Opcjonalny ref do receptora</xs:documentation>
  1100. </xs:annotation>
  1101. </xs:element>
  1102. <xs:element name="ID_NEURO_LAYER_COVERAGE" type="xs:int">
  1103. <xs:annotation>
  1104. <xs:documentation>Ref konfiguracji specjalnych cech warstwy </xs:documentation>
  1105. </xs:annotation>
  1106. </xs:element>
  1107. <xs:element name="ID_NEURO_MIND_STATE" type="xs:int">
  1108. <xs:annotation>
  1109. <xs:documentation>zaleznosc do State</xs:documentation>
  1110. </xs:annotation>
  1111. </xs:element>
  1112. </xs:sequence>
  1113. </xs:restriction>
  1114. </xs:complexContent>
  1115. </xs:complexType>
  1116. <xs:element name="Follow2" type="default_db__x3A__NEURO_MATRIX:NEURO_MATRIX"/>
  1117. <xs:complexType name="Follow2">
  1118. <xs:complexContent>
  1119. <xs:restriction base="default_db__x3A__NEURO_MATRIX:NEURO_MATRIX">
  1120. <xs:sequence>
  1121. <xs:element name="ID" type="xs:int"/>
  1122. <xs:element name="altitude" type="xs:float">
  1123. <xs:annotation>
  1124. <xs:documentation>Umiejscowanie w danym wymiarze na wysokości</xs:documentation>
  1125. </xs:annotation>
  1126. </xs:element>
  1127. <xs:element minOccurs="0" name="offset" type="xs:float"/>
  1128. <xs:element minOccurs="0" name="tolerance" type="xs:int"/>
  1129. <xs:element ref="default_db__x3A__NEURO_MIND:NEURO_MIND">
  1130. <xs:annotation>
  1131. <xs:appinfo>
  1132. <system_cache__appinfo:flat_relation_cache>
  1133. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view" system_cache__appinfo:xpath="default_db__x3A__NEURO_MIND:NEURO_MIND/ID_NEURO_MATRIX"/>
  1134. </system_cache__appinfo:flat_relation_cache>
  1135. </xs:appinfo>
  1136. <xs:documentation>Przynależność do jakiegoś MIND</xs:documentation>
  1137. </xs:annotation>
  1138. </xs:element>
  1139. <xs:element minOccurs="0" name="ID_NEURO_MIND_LAYER_RECEPTOR" type="xs:int">
  1140. <xs:annotation>
  1141. <xs:documentation>Opcjonalny ref do receptora</xs:documentation>
  1142. </xs:annotation>
  1143. </xs:element>
  1144. <xs:element name="ID_NEURO_LAYER_COVERAGE" type="xs:int">
  1145. <xs:annotation>
  1146. <xs:documentation>Ref konfiguracji specjalnych cech warstwy </xs:documentation>
  1147. </xs:annotation>
  1148. </xs:element>
  1149. <xs:element name="ID_NEURO_MIND_STATE" type="xs:int">
  1150. <xs:annotation>
  1151. <xs:documentation>zaleznosc do State</xs:documentation>
  1152. </xs:annotation>
  1153. </xs:element>
  1154. </xs:sequence>
  1155. </xs:restriction>
  1156. </xs:complexContent>
  1157. </xs:complexType>
  1158. <xs:element name="Follow3" type="default_db__x3A__NEURO_MATRIX:NEURO_MATRIX"/>
  1159. <xs:complexType name="Follow3">
  1160. <xs:complexContent>
  1161. <xs:restriction base="default_db__x3A__NEURO_MATRIX:NEURO_MATRIX">
  1162. <xs:sequence>
  1163. <xs:element name="ID" type="xs:int"/>
  1164. <xs:element name="altitude" type="xs:float">
  1165. <xs:annotation>
  1166. <xs:documentation>Umiejscowanie w danym wymiarze na wysokości</xs:documentation>
  1167. </xs:annotation>
  1168. </xs:element>
  1169. <xs:element minOccurs="0" name="offset" type="xs:float"/>
  1170. <xs:element minOccurs="0" name="tolerance" type="xs:int"/>
  1171. <xs:element ref="default_db__x3A__NEURO_MIND:NEURO_MIND">
  1172. <xs:annotation>
  1173. <xs:appinfo>
  1174. <system_cache__appinfo:flat_relation_cache>
  1175. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view" system_cache__appinfo:xpath="default_db__x3A__NEURO_MIND:NEURO_MIND/ID_NEURO_MATRIX"/>
  1176. </system_cache__appinfo:flat_relation_cache>
  1177. </xs:appinfo>
  1178. <xs:documentation>Przynależność do jakiegoś MIND</xs:documentation>
  1179. </xs:annotation>
  1180. </xs:element>
  1181. <xs:element minOccurs="0" name="ID_NEURO_MIND_LAYER_RECEPTOR" type="xs:int">
  1182. <xs:annotation>
  1183. <xs:documentation>Opcjonalny ref do receptora</xs:documentation>
  1184. </xs:annotation>
  1185. </xs:element>
  1186. <xs:element name="ID_NEURO_LAYER_COVERAGE" type="xs:int">
  1187. <xs:annotation>
  1188. <xs:documentation>Ref konfiguracji specjalnych cech warstwy </xs:documentation>
  1189. </xs:annotation>
  1190. </xs:element>
  1191. <xs:element name="ID_NEURO_MIND_STATE" type="xs:int">
  1192. <xs:annotation>
  1193. <xs:documentation>zaleznosc do State</xs:documentation>
  1194. </xs:annotation>
  1195. </xs:element>
  1196. </xs:sequence>
  1197. </xs:restriction>
  1198. </xs:complexContent>
  1199. </xs:complexType>
  1200. <xs:complexType name="Pain">
  1201. <xs:complexContent>
  1202. <xs:restriction base="default_db__x3A__NEURO_MATRIX:NEURO_MATRIX">
  1203. <xs:sequence>
  1204. <xs:element name="ID" type="xs:int"/>
  1205. <xs:element name="altitude" type="xs:float">
  1206. <xs:annotation>
  1207. <xs:documentation>Umiejscowanie w danym wymiarze na wysokości</xs:documentation>
  1208. </xs:annotation>
  1209. </xs:element>
  1210. <xs:element minOccurs="0" name="offset" type="xs:float"/>
  1211. <xs:element minOccurs="0" name="tolerance" type="xs:int"/>
  1212. <xs:element ref="default_db__x3A__NEURO_MIND:NEURO_MIND">
  1213. <xs:annotation>
  1214. <xs:appinfo>
  1215. <system_cache__appinfo:flat_relation_cache>
  1216. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view" system_cache__appinfo:xpath="default_db__x3A__NEURO_MIND:NEURO_MIND/ID_NEURO_MATRIX"/>
  1217. </system_cache__appinfo:flat_relation_cache>
  1218. </xs:appinfo>
  1219. <xs:documentation>Przynależność do jakiegoś MIND</xs:documentation>
  1220. </xs:annotation>
  1221. </xs:element>
  1222. <xs:element minOccurs="0" name="ID_NEURO_MIND_LAYER_RECEPTOR" type="xs:int">
  1223. <xs:annotation>
  1224. <xs:documentation>Opcjonalny ref do receptora</xs:documentation>
  1225. </xs:annotation>
  1226. </xs:element>
  1227. <xs:element name="ID_NEURO_LAYER_COVERAGE" type="xs:int">
  1228. <xs:annotation>
  1229. <xs:documentation>Ref konfiguracji specjalnych cech warstwy </xs:documentation>
  1230. </xs:annotation>
  1231. </xs:element>
  1232. <xs:element name="ID_NEURO_MIND_STATE" type="xs:int">
  1233. <xs:annotation>
  1234. <xs:documentation>zaleznosc do State</xs:documentation>
  1235. </xs:annotation>
  1236. </xs:element>
  1237. </xs:sequence>
  1238. </xs:restriction>
  1239. </xs:complexContent>
  1240. </xs:complexType>
  1241. <xs:complexType name="Pain1">
  1242. <xs:complexContent>
  1243. <xs:restriction base="default_db__x3A__NEURO_MATRIX:Pain">
  1244. <xs:sequence>
  1245. <xs:element name="ID" type="xs:int"/>
  1246. <xs:element name="altitude" type="xs:float">
  1247. <xs:annotation>
  1248. <xs:documentation>Umiejscowanie w danym wymiarze na wysokości</xs:documentation>
  1249. </xs:annotation>
  1250. </xs:element>
  1251. <xs:element minOccurs="0" name="offset" type="xs:float"/>
  1252. <xs:element minOccurs="0" name="tolerance" type="xs:int"/>
  1253. <xs:element ref="default_db__x3A__NEURO_MIND:NEURO_MIND">
  1254. <xs:annotation>
  1255. <xs:appinfo>
  1256. <system_cache__appinfo:flat_relation_cache>
  1257. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view" system_cache__appinfo:xpath="default_db__x3A__NEURO_MIND:NEURO_MIND/ID_NEURO_MATRIX"/>
  1258. </system_cache__appinfo:flat_relation_cache>
  1259. </xs:appinfo>
  1260. <xs:documentation>Przynależność do jakiegoś MIND</xs:documentation>
  1261. </xs:annotation>
  1262. </xs:element>
  1263. <xs:element minOccurs="0" name="ID_NEURO_MIND_LAYER_RECEPTOR" type="xs:int">
  1264. <xs:annotation>
  1265. <xs:documentation>Opcjonalny ref do receptora</xs:documentation>
  1266. </xs:annotation>
  1267. </xs:element>
  1268. <xs:element name="ID_NEURO_LAYER_COVERAGE" type="xs:int">
  1269. <xs:annotation>
  1270. <xs:documentation>Ref konfiguracji specjalnych cech warstwy </xs:documentation>
  1271. </xs:annotation>
  1272. </xs:element>
  1273. <xs:element name="ID_NEURO_MIND_STATE" type="xs:int">
  1274. <xs:annotation>
  1275. <xs:documentation>zaleznosc do State</xs:documentation>
  1276. </xs:annotation>
  1277. </xs:element>
  1278. </xs:sequence>
  1279. </xs:restriction>
  1280. </xs:complexContent>
  1281. </xs:complexType>
  1282. <xs:element name="Pain1" type="default_db__x3A__NEURO_MATRIX:Pain1"/>
  1283. <xs:complexType name="Pain1-MergeCoverage-MinAlt">
  1284. <xs:complexContent>
  1285. <xs:restriction base="default_db__x3A__NEURO_MATRIX:Pain1">
  1286. <xs:sequence>
  1287. <xs:element name="ID" type="xs:int"/>
  1288. <xs:element name="altitude" type="xs:float">
  1289. <xs:annotation>
  1290. <xs:documentation>Umiejscowanie w danym wymiarze na wysokości</xs:documentation>
  1291. </xs:annotation>
  1292. </xs:element>
  1293. <xs:element minOccurs="0" name="offset" type="xs:float"/>
  1294. <xs:element minOccurs="0" name="tolerance" type="xs:int"/>
  1295. <xs:element ref="default_db__x3A__NEURO_MIND:NEURO_MIND">
  1296. <xs:annotation>
  1297. <xs:appinfo>
  1298. <system_cache__appinfo:flat_relation_cache>
  1299. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view" system_cache__appinfo:xpath="default_db__x3A__NEURO_MIND:NEURO_MIND/ID_NEURO_MATRIX"/>
  1300. </system_cache__appinfo:flat_relation_cache>
  1301. </xs:appinfo>
  1302. <xs:documentation>Przynależność do jakiegoś MIND</xs:documentation>
  1303. </xs:annotation>
  1304. </xs:element>
  1305. <xs:element minOccurs="0" name="ID_NEURO_MIND_LAYER_RECEPTOR" type="xs:int">
  1306. <xs:annotation>
  1307. <xs:documentation>Opcjonalny ref do receptora</xs:documentation>
  1308. </xs:annotation>
  1309. </xs:element>
  1310. <xs:element name="ID_NEURO_LAYER_COVERAGE" type="xs:int">
  1311. <xs:annotation>
  1312. <xs:documentation>Ref konfiguracji specjalnych cech warstwy </xs:documentation>
  1313. </xs:annotation>
  1314. </xs:element>
  1315. <xs:element name="ID_NEURO_MIND_STATE" type="xs:int">
  1316. <xs:annotation>
  1317. <xs:documentation>zaleznosc do State</xs:documentation>
  1318. </xs:annotation>
  1319. </xs:element>
  1320. </xs:sequence>
  1321. </xs:restriction>
  1322. </xs:complexContent>
  1323. </xs:complexType>
  1324. <xs:element name="Pain1-MergeCoverage-MinAlt"
  1325. type="default_db__x3A__NEURO_MATRIX:Pain1-MergeCoverage-MinAlt"/>
  1326. <xs:element name="Pain1-MergeCoverage-MaxAlt"
  1327. type="default_db__x3A__NEURO_MATRIX:Pain1-MergeCoverage-MaxAlt"/>
  1328. <xs:complexType name="Pain1-MergeCoverage-MaxAlt">
  1329. <xs:complexContent>
  1330. <xs:restriction base="default_db__x3A__NEURO_MATRIX:Pain1">
  1331. <xs:sequence>
  1332. <xs:element name="ID" type="xs:int"/>
  1333. <xs:element name="altitude" type="xs:float">
  1334. <xs:annotation>
  1335. <xs:documentation>Umiejscowanie w danym wymiarze na wysokości</xs:documentation>
  1336. </xs:annotation>
  1337. </xs:element>
  1338. <xs:element minOccurs="0" name="offset" type="xs:float"/>
  1339. <xs:element minOccurs="0" name="tolerance" type="xs:int"/>
  1340. <xs:element ref="default_db__x3A__NEURO_MIND:NEURO_MIND">
  1341. <xs:annotation>
  1342. <xs:appinfo>
  1343. <system_cache__appinfo:flat_relation_cache>
  1344. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view" system_cache__appinfo:xpath="default_db__x3A__NEURO_MIND:NEURO_MIND/ID_NEURO_MATRIX"/>
  1345. </system_cache__appinfo:flat_relation_cache>
  1346. </xs:appinfo>
  1347. <xs:documentation>Przynależność do jakiegoś MIND</xs:documentation>
  1348. </xs:annotation>
  1349. </xs:element>
  1350. <xs:element minOccurs="0" name="ID_NEURO_MIND_LAYER_RECEPTOR" type="xs:int">
  1351. <xs:annotation>
  1352. <xs:documentation>Opcjonalny ref do receptora</xs:documentation>
  1353. </xs:annotation>
  1354. </xs:element>
  1355. <xs:element name="ID_NEURO_LAYER_COVERAGE" type="xs:int">
  1356. <xs:annotation>
  1357. <xs:documentation>Ref konfiguracji specjalnych cech warstwy </xs:documentation>
  1358. </xs:annotation>
  1359. </xs:element>
  1360. <xs:element name="ID_NEURO_MIND_STATE" type="xs:int">
  1361. <xs:annotation>
  1362. <xs:documentation>zaleznosc do State</xs:documentation>
  1363. </xs:annotation>
  1364. </xs:element>
  1365. </xs:sequence>
  1366. </xs:restriction>
  1367. </xs:complexContent>
  1368. </xs:complexType>
  1369. <xs:complexType name="Pain2">
  1370. <xs:complexContent>
  1371. <xs:restriction base="default_db__x3A__NEURO_MATRIX:Pain">
  1372. <xs:sequence>
  1373. <xs:element name="ID" type="xs:int"/>
  1374. <xs:element name="altitude" type="xs:float">
  1375. <xs:annotation>
  1376. <xs:documentation>Umiejscowanie w danym wymiarze na wysokości</xs:documentation>
  1377. </xs:annotation>
  1378. </xs:element>
  1379. <xs:element minOccurs="0" name="offset" type="xs:float"/>
  1380. <xs:element minOccurs="0" name="tolerance" type="xs:int"/>
  1381. <xs:element ref="default_db__x3A__NEURO_MIND:NEURO_MIND">
  1382. <xs:annotation>
  1383. <xs:appinfo>
  1384. <system_cache__appinfo:flat_relation_cache>
  1385. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view" system_cache__appinfo:xpath="default_db__x3A__NEURO_MIND:NEURO_MIND/ID_NEURO_MATRIX"/>
  1386. </system_cache__appinfo:flat_relation_cache>
  1387. </xs:appinfo>
  1388. <xs:documentation>Przynależność do jakiegoś MIND</xs:documentation>
  1389. </xs:annotation>
  1390. </xs:element>
  1391. <xs:element minOccurs="0" name="ID_NEURO_MIND_LAYER_RECEPTOR" type="xs:int">
  1392. <xs:annotation>
  1393. <xs:documentation>Opcjonalny ref do receptora</xs:documentation>
  1394. </xs:annotation>
  1395. </xs:element>
  1396. <xs:element name="ID_NEURO_LAYER_COVERAGE" type="xs:int">
  1397. <xs:annotation>
  1398. <xs:documentation>Ref konfiguracji specjalnych cech warstwy </xs:documentation>
  1399. </xs:annotation>
  1400. </xs:element>
  1401. <xs:element name="ID_NEURO_MIND_STATE" type="xs:int">
  1402. <xs:annotation>
  1403. <xs:documentation>zaleznosc do State</xs:documentation>
  1404. </xs:annotation>
  1405. </xs:element>
  1406. </xs:sequence>
  1407. </xs:restriction>
  1408. </xs:complexContent>
  1409. </xs:complexType>
  1410. <xs:element name="Pain2" type="default_db__x3A__NEURO_MATRIX:Pain2"/>
  1411. <xs:complexType name="Pain2-MergeCoverage-MinAlt">
  1412. <xs:complexContent>
  1413. <xs:extension base="default_db__x3A__NEURO_MATRIX:Pain2"> </xs:extension>
  1414. </xs:complexContent>
  1415. </xs:complexType>
  1416. <xs:element name="Pain2-MergeCoverage-MinAlt"
  1417. type="default_db__x3A__NEURO_MATRIX:Pain2-MergeCoverage-MinAlt"/>
  1418. <xs:complexType name="Pain2-MergeCoverage-MaxAlt">
  1419. <xs:complexContent>
  1420. <xs:extension base="default_db__x3A__NEURO_MATRIX:Pain2"> </xs:extension>
  1421. </xs:complexContent>
  1422. </xs:complexType>
  1423. <xs:element name="Pain2-MergeCoverage-MaxAlt"
  1424. type="default_db__x3A__NEURO_MATRIX:Pain2-MergeCoverage-MaxAlt"/>
  1425. <xs:complexType name="Pain3">
  1426. <xs:complexContent>
  1427. <xs:restriction base="default_db__x3A__NEURO_MATRIX:Pain">
  1428. <xs:sequence>
  1429. <xs:element name="ID" type="xs:int"/>
  1430. <xs:element name="altitude" type="xs:float">
  1431. <xs:annotation>
  1432. <xs:documentation>Umiejscowanie w danym wymiarze na wysokości</xs:documentation>
  1433. </xs:annotation>
  1434. </xs:element>
  1435. <xs:element minOccurs="0" name="offset" type="xs:float"/>
  1436. <xs:element minOccurs="0" name="tolerance" type="xs:int"/>
  1437. <xs:element ref="default_db__x3A__NEURO_MIND:NEURO_MIND">
  1438. <xs:annotation>
  1439. <xs:appinfo>
  1440. <system_cache__appinfo:flat_relation_cache>
  1441. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view" system_cache__appinfo:xpath="default_db__x3A__NEURO_MIND:NEURO_MIND/ID_NEURO_MATRIX"/>
  1442. </system_cache__appinfo:flat_relation_cache>
  1443. </xs:appinfo>
  1444. <xs:documentation>Przynależność do jakiegoś MIND</xs:documentation>
  1445. </xs:annotation>
  1446. </xs:element>
  1447. <xs:element minOccurs="0" name="ID_NEURO_MIND_LAYER_RECEPTOR" type="xs:int">
  1448. <xs:annotation>
  1449. <xs:documentation>Opcjonalny ref do receptora</xs:documentation>
  1450. </xs:annotation>
  1451. </xs:element>
  1452. <xs:element name="ID_NEURO_LAYER_COVERAGE" type="xs:int">
  1453. <xs:annotation>
  1454. <xs:documentation>Ref konfiguracji specjalnych cech warstwy </xs:documentation>
  1455. </xs:annotation>
  1456. </xs:element>
  1457. <xs:element name="ID_NEURO_MIND_STATE" type="xs:int">
  1458. <xs:annotation>
  1459. <xs:documentation>zaleznosc do State</xs:documentation>
  1460. </xs:annotation>
  1461. </xs:element>
  1462. </xs:sequence>
  1463. </xs:restriction>
  1464. </xs:complexContent>
  1465. </xs:complexType>
  1466. <xs:element name="Pain3" type="default_db__x3A__NEURO_MATRIX:Pain3"/>
  1467. <xs:complexType name="Pain3-MergeCoverage-MaxAlt">
  1468. <xs:complexContent>
  1469. <xs:restriction base="default_db__x3A__NEURO_MATRIX:Pain3">
  1470. <xs:sequence>
  1471. <xs:element name="ID" type="xs:int"/>
  1472. <xs:element name="altitude" type="xs:float">
  1473. <xs:annotation>
  1474. <xs:documentation>Umiejscowanie w danym wymiarze na wysokości</xs:documentation>
  1475. </xs:annotation>
  1476. </xs:element>
  1477. <xs:element minOccurs="0" name="offset" type="xs:float"/>
  1478. <xs:element minOccurs="0" name="tolerance" type="xs:int"/>
  1479. <xs:element ref="default_db__x3A__NEURO_MIND:NEURO_MIND">
  1480. <xs:annotation>
  1481. <xs:appinfo>
  1482. <system_cache__appinfo:flat_relation_cache>
  1483. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view" system_cache__appinfo:xpath="default_db__x3A__NEURO_MIND:NEURO_MIND/ID_NEURO_MATRIX"/>
  1484. </system_cache__appinfo:flat_relation_cache>
  1485. </xs:appinfo>
  1486. <xs:documentation>Przynależność do jakiegoś MIND</xs:documentation>
  1487. </xs:annotation>
  1488. </xs:element>
  1489. <xs:element minOccurs="0" name="ID_NEURO_MIND_LAYER_RECEPTOR" type="xs:int">
  1490. <xs:annotation>
  1491. <xs:documentation>Opcjonalny ref do receptora</xs:documentation>
  1492. </xs:annotation>
  1493. </xs:element>
  1494. <xs:element name="ID_NEURO_LAYER_COVERAGE" type="xs:int">
  1495. <xs:annotation>
  1496. <xs:documentation>Ref konfiguracji specjalnych cech warstwy </xs:documentation>
  1497. </xs:annotation>
  1498. </xs:element>
  1499. <xs:element name="ID_NEURO_MIND_STATE" type="xs:int">
  1500. <xs:annotation>
  1501. <xs:documentation>zaleznosc do State</xs:documentation>
  1502. </xs:annotation>
  1503. </xs:element>
  1504. </xs:sequence>
  1505. </xs:restriction>
  1506. </xs:complexContent>
  1507. </xs:complexType>
  1508. <xs:element name="Pain3-MergeCoverage-MaxAlt"
  1509. type="default_db__x3A__NEURO_MATRIX:Pain3-MergeCoverage-MaxAlt"/>
  1510. <xs:complexType name="Pain3-MergeCoverage-MinAlt">
  1511. <xs:complexContent>
  1512. <xs:restriction base="default_db__x3A__NEURO_MATRIX:Pain3-MergeCoverage-MaxAlt">
  1513. <xs:sequence>
  1514. <xs:element name="ID" type="xs:int"/>
  1515. <xs:element name="altitude" type="xs:float">
  1516. <xs:annotation>
  1517. <xs:documentation>Umiejscowanie w danym wymiarze na wysokości</xs:documentation>
  1518. </xs:annotation>
  1519. </xs:element>
  1520. <xs:element minOccurs="0" name="offset" type="xs:float"/>
  1521. <xs:element minOccurs="0" name="tolerance" type="xs:int"/>
  1522. <xs:element ref="default_db__x3A__NEURO_MIND:NEURO_MIND">
  1523. <xs:annotation>
  1524. <xs:appinfo>
  1525. <system_cache__appinfo:flat_relation_cache>
  1526. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view" system_cache__appinfo:xpath="default_db__x3A__NEURO_MIND:NEURO_MIND/ID_NEURO_MATRIX"/>
  1527. </system_cache__appinfo:flat_relation_cache>
  1528. </xs:appinfo>
  1529. <xs:documentation>Przynależność do jakiegoś MIND</xs:documentation>
  1530. </xs:annotation>
  1531. </xs:element>
  1532. <xs:element minOccurs="0" name="ID_NEURO_MIND_LAYER_RECEPTOR" type="xs:int">
  1533. <xs:annotation>
  1534. <xs:documentation>Opcjonalny ref do receptora</xs:documentation>
  1535. </xs:annotation>
  1536. </xs:element>
  1537. <xs:element name="ID_NEURO_LAYER_COVERAGE" type="xs:int">
  1538. <xs:annotation>
  1539. <xs:documentation>Ref konfiguracji specjalnych cech warstwy </xs:documentation>
  1540. </xs:annotation>
  1541. </xs:element>
  1542. <xs:element name="ID_NEURO_MIND_STATE" type="xs:int">
  1543. <xs:annotation>
  1544. <xs:documentation>zaleznosc do State</xs:documentation>
  1545. </xs:annotation>
  1546. </xs:element>
  1547. </xs:sequence>
  1548. </xs:restriction>
  1549. </xs:complexContent>
  1550. </xs:complexType>
  1551. <xs:element name="Pain3-MergeCoverage-MinAlt"
  1552. type="default_db__x3A__NEURO_MATRIX:Pain3-MergeCoverage-MinAlt"/>
  1553. <xs:complexType name="Out">
  1554. <xs:complexContent>
  1555. <xs:restriction base="default_db__x3A__NEURO_MATRIX:NEURO_MATRIX">
  1556. <xs:sequence>
  1557. <xs:element name="ID" type="xs:int"/>
  1558. <xs:element name="altitude" type="xs:float">
  1559. <xs:annotation>
  1560. <xs:documentation>Umiejscowanie w danym wymiarze na wysokości</xs:documentation>
  1561. </xs:annotation>
  1562. </xs:element>
  1563. <xs:element minOccurs="0" name="offset" type="xs:float"/>
  1564. <xs:element minOccurs="0" name="tolerance" type="xs:int"/>
  1565. <xs:element ref="default_db__x3A__NEURO_MIND:NEURO_MIND">
  1566. <xs:annotation>
  1567. <xs:appinfo>
  1568. <system_cache__appinfo:flat_relation_cache>
  1569. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view" system_cache__appinfo:xpath="default_db__x3A__NEURO_MIND:NEURO_MIND/ID_NEURO_MATRIX"/>
  1570. </system_cache__appinfo:flat_relation_cache>
  1571. </xs:appinfo>
  1572. <xs:documentation>Przynależność do jakiegoś MIND</xs:documentation>
  1573. </xs:annotation>
  1574. </xs:element>
  1575. <xs:element minOccurs="0" name="ID_NEURO_MIND_LAYER_RECEPTOR" type="xs:int">
  1576. <xs:annotation>
  1577. <xs:documentation>Opcjonalny ref do receptora</xs:documentation>
  1578. </xs:annotation>
  1579. </xs:element>
  1580. <xs:element name="ID_NEURO_LAYER_COVERAGE" type="xs:int">
  1581. <xs:annotation>
  1582. <xs:documentation>Ref konfiguracji specjalnych cech warstwy </xs:documentation>
  1583. </xs:annotation>
  1584. </xs:element>
  1585. <xs:element name="ID_NEURO_MIND_STATE" type="xs:int">
  1586. <xs:annotation>
  1587. <xs:documentation>zaleznosc do State</xs:documentation>
  1588. </xs:annotation>
  1589. </xs:element>
  1590. </xs:sequence>
  1591. </xs:restriction>
  1592. </xs:complexContent>
  1593. </xs:complexType>
  1594. <xs:element name="Out1" type="default_db__x3A__NEURO_MATRIX:Out1"/>
  1595. <xs:complexType name="Out1">
  1596. <xs:complexContent>
  1597. <xs:restriction base="default_db__x3A__NEURO_MATRIX:Out">
  1598. <xs:sequence>
  1599. <xs:element name="ID" type="xs:int"/>
  1600. <xs:element name="altitude" type="xs:float">
  1601. <xs:annotation>
  1602. <xs:documentation>Umiejscowanie w danym wymiarze na wysokości</xs:documentation>
  1603. </xs:annotation>
  1604. </xs:element>
  1605. <xs:element minOccurs="0" name="offset" type="xs:float"/>
  1606. <xs:element minOccurs="0" name="tolerance" type="xs:int"/>
  1607. <xs:element ref="default_db__x3A__NEURO_MIND:NEURO_MIND">
  1608. <xs:annotation>
  1609. <xs:appinfo>
  1610. <system_cache__appinfo:flat_relation_cache>
  1611. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view" system_cache__appinfo:xpath="default_db__x3A__NEURO_MIND:NEURO_MIND/ID_NEURO_MATRIX"/>
  1612. </system_cache__appinfo:flat_relation_cache>
  1613. </xs:appinfo>
  1614. <xs:documentation>Przynależność do jakiegoś MIND</xs:documentation>
  1615. </xs:annotation>
  1616. </xs:element>
  1617. <xs:element minOccurs="0" name="ID_NEURO_MIND_LAYER_RECEPTOR" type="xs:int">
  1618. <xs:annotation>
  1619. <xs:documentation>Opcjonalny ref do receptora</xs:documentation>
  1620. </xs:annotation>
  1621. </xs:element>
  1622. <xs:element name="ID_NEURO_LAYER_COVERAGE" type="xs:int">
  1623. <xs:annotation>
  1624. <xs:documentation>Ref konfiguracji specjalnych cech warstwy </xs:documentation>
  1625. </xs:annotation>
  1626. </xs:element>
  1627. <xs:element name="ID_NEURO_MIND_STATE" type="xs:int">
  1628. <xs:annotation>
  1629. <xs:documentation>zaleznosc do State</xs:documentation>
  1630. </xs:annotation>
  1631. </xs:element>
  1632. </xs:sequence>
  1633. </xs:restriction>
  1634. </xs:complexContent>
  1635. </xs:complexType>
  1636. <xs:element name="Out1-MergeCoverage-MinAlt"
  1637. type="default_db__x3A__NEURO_MATRIX:Out1-MergeCoverage-MinAlt"/>
  1638. <xs:complexType name="Out1-MergeCoverage-MinAlt">
  1639. <xs:complexContent>
  1640. <xs:restriction base="default_db__x3A__NEURO_MATRIX:Out1">
  1641. <xs:sequence>
  1642. <xs:element name="ID" type="xs:int"/>
  1643. <xs:element name="altitude" type="xs:float">
  1644. <xs:annotation>
  1645. <xs:documentation>Umiejscowanie w danym wymiarze na wysokości</xs:documentation>
  1646. </xs:annotation>
  1647. </xs:element>
  1648. <xs:element minOccurs="0" name="offset" type="xs:float"/>
  1649. <xs:element minOccurs="0" name="tolerance" type="xs:int"/>
  1650. <xs:element ref="default_db__x3A__NEURO_MIND:NEURO_MIND">
  1651. <xs:annotation>
  1652. <xs:appinfo>
  1653. <system_cache__appinfo:flat_relation_cache>
  1654. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view" system_cache__appinfo:xpath="default_db__x3A__NEURO_MIND:NEURO_MIND/ID_NEURO_MATRIX"/>
  1655. </system_cache__appinfo:flat_relation_cache>
  1656. </xs:appinfo>
  1657. <xs:documentation>Przynależność do jakiegoś MIND</xs:documentation>
  1658. </xs:annotation>
  1659. </xs:element>
  1660. <xs:element minOccurs="0" name="ID_NEURO_MIND_LAYER_RECEPTOR" type="xs:int">
  1661. <xs:annotation>
  1662. <xs:documentation>Opcjonalny ref do receptora</xs:documentation>
  1663. </xs:annotation>
  1664. </xs:element>
  1665. <xs:element name="ID_NEURO_LAYER_COVERAGE" type="xs:int">
  1666. <xs:annotation>
  1667. <xs:documentation>Ref konfiguracji specjalnych cech warstwy </xs:documentation>
  1668. </xs:annotation>
  1669. </xs:element>
  1670. <xs:element name="ID_NEURO_MIND_STATE" type="xs:int">
  1671. <xs:annotation>
  1672. <xs:documentation>zaleznosc do State</xs:documentation>
  1673. </xs:annotation>
  1674. </xs:element>
  1675. </xs:sequence>
  1676. </xs:restriction>
  1677. </xs:complexContent>
  1678. </xs:complexType>
  1679. <xs:element name="Out1-MergeCoverage-MaxAlt"
  1680. type="default_db__x3A__NEURO_MATRIX:Out1-MergeCoverage-MaxAlt"/>
  1681. <xs:complexType name="Out1-MergeCoverage-MaxAlt">
  1682. <xs:complexContent>
  1683. <xs:restriction base="default_db__x3A__NEURO_MATRIX:Out1-MergeCoverage-MinAlt">
  1684. <xs:sequence>
  1685. <xs:element name="ID" type="xs:int"/>
  1686. <xs:element name="altitude" type="xs:float">
  1687. <xs:annotation>
  1688. <xs:documentation>Umiejscowanie w danym wymiarze na wysokości</xs:documentation>
  1689. </xs:annotation>
  1690. </xs:element>
  1691. <xs:element minOccurs="0" name="offset" type="xs:float"/>
  1692. <xs:element minOccurs="0" name="tolerance" type="xs:int"/>
  1693. <xs:element ref="default_db__x3A__NEURO_MIND:NEURO_MIND">
  1694. <xs:annotation>
  1695. <xs:appinfo>
  1696. <system_cache__appinfo:flat_relation_cache>
  1697. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view" system_cache__appinfo:xpath="default_db__x3A__NEURO_MIND:NEURO_MIND/ID_NEURO_MATRIX"/>
  1698. </system_cache__appinfo:flat_relation_cache>
  1699. </xs:appinfo>
  1700. <xs:documentation>Przynależność do jakiegoś MIND</xs:documentation>
  1701. </xs:annotation>
  1702. </xs:element>
  1703. <xs:element minOccurs="0" name="ID_NEURO_MIND_LAYER_RECEPTOR" type="xs:int">
  1704. <xs:annotation>
  1705. <xs:documentation>Opcjonalny ref do receptora</xs:documentation>
  1706. </xs:annotation>
  1707. </xs:element>
  1708. <xs:element name="ID_NEURO_LAYER_COVERAGE" type="xs:int">
  1709. <xs:annotation>
  1710. <xs:documentation>Ref konfiguracji specjalnych cech warstwy </xs:documentation>
  1711. </xs:annotation>
  1712. </xs:element>
  1713. <xs:element name="ID_NEURO_MIND_STATE" type="xs:int">
  1714. <xs:annotation>
  1715. <xs:documentation>zaleznosc do State</xs:documentation>
  1716. </xs:annotation>
  1717. </xs:element>
  1718. </xs:sequence>
  1719. </xs:restriction>
  1720. </xs:complexContent>
  1721. </xs:complexType>
  1722. <xs:element name="Out2" type="default_db__x3A__NEURO_MATRIX:NEURO_MATRIX"/>
  1723. <xs:complexType name="Out2">
  1724. <xs:complexContent>
  1725. <xs:restriction base="default_db__x3A__NEURO_MATRIX:Out">
  1726. <xs:sequence>
  1727. <xs:element name="ID" type="xs:int"/>
  1728. <xs:element name="altitude" type="xs:float">
  1729. <xs:annotation>
  1730. <xs:documentation>Umiejscowanie w danym wymiarze na wysokości</xs:documentation>
  1731. </xs:annotation>
  1732. </xs:element>
  1733. <xs:element minOccurs="0" name="offset" type="xs:float"/>
  1734. <xs:element minOccurs="0" name="tolerance" type="xs:int"/>
  1735. <xs:element ref="default_db__x3A__NEURO_MIND:NEURO_MIND">
  1736. <xs:annotation>
  1737. <xs:appinfo>
  1738. <system_cache__appinfo:flat_relation_cache>
  1739. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view" system_cache__appinfo:xpath="default_db__x3A__NEURO_MIND:NEURO_MIND/ID_NEURO_MATRIX"/>
  1740. </system_cache__appinfo:flat_relation_cache>
  1741. </xs:appinfo>
  1742. <xs:documentation>Przynależność do jakiegoś MIND</xs:documentation>
  1743. </xs:annotation>
  1744. </xs:element>
  1745. <xs:element minOccurs="0" name="ID_NEURO_MIND_LAYER_RECEPTOR" type="xs:int">
  1746. <xs:annotation>
  1747. <xs:documentation>Opcjonalny ref do receptora</xs:documentation>
  1748. </xs:annotation>
  1749. </xs:element>
  1750. <xs:element name="ID_NEURO_LAYER_COVERAGE" type="xs:int">
  1751. <xs:annotation>
  1752. <xs:documentation>Ref konfiguracji specjalnych cech warstwy </xs:documentation>
  1753. </xs:annotation>
  1754. </xs:element>
  1755. <xs:element name="ID_NEURO_MIND_STATE" type="xs:int">
  1756. <xs:annotation>
  1757. <xs:documentation>zaleznosc do State</xs:documentation>
  1758. </xs:annotation>
  1759. </xs:element>
  1760. </xs:sequence>
  1761. </xs:restriction>
  1762. </xs:complexContent>
  1763. </xs:complexType>
  1764. <xs:element name="Out2-MergeCoverage-MinAlt"
  1765. type="default_db__x3A__NEURO_MATRIX:Out2-MergeCoverage-MinAlt"/>
  1766. <xs:complexType name="Out2-MergeCoverage-MinAlt">
  1767. <xs:complexContent>
  1768. <xs:restriction base="default_db__x3A__NEURO_MATRIX:Out">
  1769. <xs:sequence>
  1770. <xs:element name="ID" type="xs:int"/>
  1771. <xs:element name="altitude" type="xs:float">
  1772. <xs:annotation>
  1773. <xs:documentation>Umiejscowanie w danym wymiarze na wysokości</xs:documentation>
  1774. </xs:annotation>
  1775. </xs:element>
  1776. <xs:element minOccurs="0" name="offset" type="xs:float"/>
  1777. <xs:element minOccurs="0" name="tolerance" type="xs:int"/>
  1778. <xs:element ref="default_db__x3A__NEURO_MIND:NEURO_MIND">
  1779. <xs:annotation>
  1780. <xs:appinfo>
  1781. <system_cache__appinfo:flat_relation_cache>
  1782. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view" system_cache__appinfo:xpath="default_db__x3A__NEURO_MIND:NEURO_MIND/ID_NEURO_MATRIX"/>
  1783. </system_cache__appinfo:flat_relation_cache>
  1784. </xs:appinfo>
  1785. <xs:documentation>Przynależność do jakiegoś MIND</xs:documentation>
  1786. </xs:annotation>
  1787. </xs:element>
  1788. <xs:element minOccurs="0" name="ID_NEURO_MIND_LAYER_RECEPTOR" type="xs:int">
  1789. <xs:annotation>
  1790. <xs:documentation>Opcjonalny ref do receptora</xs:documentation>
  1791. </xs:annotation>
  1792. </xs:element>
  1793. <xs:element name="ID_NEURO_LAYER_COVERAGE" type="xs:int">
  1794. <xs:annotation>
  1795. <xs:documentation>Ref konfiguracji specjalnych cech warstwy </xs:documentation>
  1796. </xs:annotation>
  1797. </xs:element>
  1798. <xs:element name="ID_NEURO_MIND_STATE" type="xs:int">
  1799. <xs:annotation>
  1800. <xs:documentation>zaleznosc do State</xs:documentation>
  1801. </xs:annotation>
  1802. </xs:element>
  1803. </xs:sequence>
  1804. </xs:restriction>
  1805. </xs:complexContent>
  1806. </xs:complexType>
  1807. <xs:element name="Out2-MergeCoverage-MaxAlt"
  1808. type="default_db__x3A__NEURO_MATRIX:Out2-MergeCoverage-MaxAlt"/>
  1809. <xs:complexType name="Out2-MergeCoverage-MaxAlt">
  1810. <xs:complexContent>
  1811. <xs:restriction base="default_db__x3A__NEURO_MATRIX:Out2">
  1812. <xs:sequence>
  1813. <xs:element name="ID" type="xs:int"/>
  1814. <xs:element name="altitude" type="xs:float">
  1815. <xs:annotation>
  1816. <xs:documentation>Umiejscowanie w danym wymiarze na wysokości</xs:documentation>
  1817. </xs:annotation>
  1818. </xs:element>
  1819. <xs:element minOccurs="0" name="offset" type="xs:float"/>
  1820. <xs:element minOccurs="0" name="tolerance" type="xs:int"/>
  1821. <xs:element ref="default_db__x3A__NEURO_MIND:NEURO_MIND">
  1822. <xs:annotation>
  1823. <xs:appinfo>
  1824. <system_cache__appinfo:flat_relation_cache>
  1825. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view" system_cache__appinfo:xpath="default_db__x3A__NEURO_MIND:NEURO_MIND/ID_NEURO_MATRIX"/>
  1826. </system_cache__appinfo:flat_relation_cache>
  1827. </xs:appinfo>
  1828. <xs:documentation>Przynależność do jakiegoś MIND</xs:documentation>
  1829. </xs:annotation>
  1830. </xs:element>
  1831. <xs:element minOccurs="0" name="ID_NEURO_MIND_LAYER_RECEPTOR" type="xs:int">
  1832. <xs:annotation>
  1833. <xs:documentation>Opcjonalny ref do receptora</xs:documentation>
  1834. </xs:annotation>
  1835. </xs:element>
  1836. <xs:element name="ID_NEURO_LAYER_COVERAGE" type="xs:int">
  1837. <xs:annotation>
  1838. <xs:documentation>Ref konfiguracji specjalnych cech warstwy </xs:documentation>
  1839. </xs:annotation>
  1840. </xs:element>
  1841. <xs:element name="ID_NEURO_MIND_STATE" type="xs:int">
  1842. <xs:annotation>
  1843. <xs:documentation>zaleznosc do State</xs:documentation>
  1844. </xs:annotation>
  1845. </xs:element>
  1846. </xs:sequence>
  1847. </xs:restriction>
  1848. </xs:complexContent>
  1849. </xs:complexType>
  1850. <xs:element name="Out3" type="default_db__x3A__NEURO_MATRIX:NEURO_MATRIX"/>
  1851. <xs:complexType name="Out3">
  1852. <xs:complexContent>
  1853. <xs:restriction base="default_db__x3A__NEURO_MATRIX:NEURO_MATRIX">
  1854. <xs:sequence>
  1855. <xs:element name="ID" type="xs:int"/>
  1856. <xs:element name="altitude" type="xs:float">
  1857. <xs:annotation>
  1858. <xs:documentation>Umiejscowanie w danym wymiarze na wysokości</xs:documentation>
  1859. </xs:annotation>
  1860. </xs:element>
  1861. <xs:element minOccurs="0" name="offset" type="xs:float"/>
  1862. <xs:element minOccurs="0" name="tolerance" type="xs:int"/>
  1863. <xs:element ref="default_db__x3A__NEURO_MIND:NEURO_MIND">
  1864. <xs:annotation>
  1865. <xs:appinfo>
  1866. <system_cache__appinfo:flat_relation_cache>
  1867. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view" system_cache__appinfo:xpath="default_db__x3A__NEURO_MIND:NEURO_MIND/ID_NEURO_MATRIX"/>
  1868. </system_cache__appinfo:flat_relation_cache>
  1869. </xs:appinfo>
  1870. <xs:documentation>Przynależność do jakiegoś MIND</xs:documentation>
  1871. </xs:annotation>
  1872. </xs:element>
  1873. <xs:element minOccurs="0" name="ID_NEURO_MIND_LAYER_RECEPTOR" type="xs:int">
  1874. <xs:annotation>
  1875. <xs:documentation>Opcjonalny ref do receptora</xs:documentation>
  1876. </xs:annotation>
  1877. </xs:element>
  1878. <xs:element name="ID_NEURO_LAYER_COVERAGE" type="xs:int">
  1879. <xs:annotation>
  1880. <xs:documentation>Ref konfiguracji specjalnych cech warstwy </xs:documentation>
  1881. </xs:annotation>
  1882. </xs:element>
  1883. <xs:element name="ID_NEURO_MIND_STATE" type="xs:int">
  1884. <xs:annotation>
  1885. <xs:documentation>zaleznosc do State</xs:documentation>
  1886. </xs:annotation>
  1887. </xs:element>
  1888. </xs:sequence>
  1889. </xs:restriction>
  1890. </xs:complexContent>
  1891. </xs:complexType>
  1892. <xs:complexType name="Out3-MergeCoverage-MaxAlt">
  1893. <xs:complexContent>
  1894. <xs:restriction base="default_db__x3A__NEURO_MATRIX:Out3">
  1895. <xs:sequence>
  1896. <xs:element name="ID" type="xs:int"/>
  1897. <xs:element name="altitude" type="xs:float">
  1898. <xs:annotation>
  1899. <xs:documentation>Umiejscowanie w danym wymiarze na wysokości</xs:documentation>
  1900. </xs:annotation>
  1901. </xs:element>
  1902. <xs:element minOccurs="0" name="offset" type="xs:float"/>
  1903. <xs:element minOccurs="0" name="tolerance" type="xs:int"/>
  1904. <xs:element ref="default_db__x3A__NEURO_MIND:NEURO_MIND">
  1905. <xs:annotation>
  1906. <xs:appinfo>
  1907. <system_cache__appinfo:flat_relation_cache>
  1908. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view" system_cache__appinfo:xpath="default_db__x3A__NEURO_MIND:NEURO_MIND/ID_NEURO_MATRIX"/>
  1909. </system_cache__appinfo:flat_relation_cache>
  1910. </xs:appinfo>
  1911. <xs:documentation>Przynależność do jakiegoś MIND</xs:documentation>
  1912. </xs:annotation>
  1913. </xs:element>
  1914. <xs:element minOccurs="0" name="ID_NEURO_MIND_LAYER_RECEPTOR" type="xs:int">
  1915. <xs:annotation>
  1916. <xs:documentation>Opcjonalny ref do receptora</xs:documentation>
  1917. </xs:annotation>
  1918. </xs:element>
  1919. <xs:element name="ID_NEURO_LAYER_COVERAGE" type="xs:int">
  1920. <xs:annotation>
  1921. <xs:documentation>Ref konfiguracji specjalnych cech warstwy </xs:documentation>
  1922. </xs:annotation>
  1923. </xs:element>
  1924. <xs:element name="ID_NEURO_MIND_STATE" type="xs:int">
  1925. <xs:annotation>
  1926. <xs:documentation>zaleznosc do State</xs:documentation>
  1927. </xs:annotation>
  1928. </xs:element>
  1929. </xs:sequence>
  1930. </xs:restriction>
  1931. </xs:complexContent>
  1932. </xs:complexType>
  1933. <xs:element name="Out3-MergeCoverage-MaxAlt"
  1934. type="default_db__x3A__NEURO_MATRIX:Out3-MergeCoverage-MaxAlt"/>
  1935. <xs:complexType name="Out3-MergeCoverage-MinAlt">
  1936. <xs:complexContent>
  1937. <xs:restriction base="default_db__x3A__NEURO_MATRIX:Out3">
  1938. <xs:sequence>
  1939. <xs:element name="ID" type="xs:int"/>
  1940. <xs:element name="altitude" type="xs:float">
  1941. <xs:annotation>
  1942. <xs:documentation>Umiejscowanie w danym wymiarze na wysokości</xs:documentation>
  1943. </xs:annotation>
  1944. </xs:element>
  1945. <xs:element minOccurs="0" name="offset" type="xs:float"/>
  1946. <xs:element minOccurs="0" name="tolerance" type="xs:int"/>
  1947. <xs:element ref="default_db__x3A__NEURO_MIND:NEURO_MIND">
  1948. <xs:annotation>
  1949. <xs:appinfo>
  1950. <system_cache__appinfo:flat_relation_cache>
  1951. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view" system_cache__appinfo:xpath="default_db__x3A__NEURO_MIND:NEURO_MIND/ID_NEURO_MATRIX"/>
  1952. </system_cache__appinfo:flat_relation_cache>
  1953. </xs:appinfo>
  1954. <xs:documentation>Przynależność do jakiegoś MIND</xs:documentation>
  1955. </xs:annotation>
  1956. </xs:element>
  1957. <xs:element minOccurs="0" name="ID_NEURO_MIND_LAYER_RECEPTOR" type="xs:int">
  1958. <xs:annotation>
  1959. <xs:documentation>Opcjonalny ref do receptora</xs:documentation>
  1960. </xs:annotation>
  1961. </xs:element>
  1962. <xs:element name="ID_NEURO_LAYER_COVERAGE" type="xs:int">
  1963. <xs:annotation>
  1964. <xs:documentation>Ref konfiguracji specjalnych cech warstwy </xs:documentation>
  1965. </xs:annotation>
  1966. </xs:element>
  1967. <xs:element name="ID_NEURO_MIND_STATE" type="xs:int">
  1968. <xs:annotation>
  1969. <xs:documentation>zaleznosc do State</xs:documentation>
  1970. </xs:annotation>
  1971. </xs:element>
  1972. </xs:sequence>
  1973. </xs:restriction>
  1974. </xs:complexContent>
  1975. </xs:complexType>
  1976. <xs:element name="Out3-MergeCoverage-MinAlt"
  1977. type="default_db__x3A__NEURO_MATRIX:Out3-MergeCoverage-MinAlt"/>
  1978. <xs:complexType name="Satisfy">
  1979. <xs:complexContent>
  1980. <xs:restriction base="default_db__x3A__NEURO_MATRIX:NEURO_MATRIX">
  1981. <xs:sequence>
  1982. <xs:element name="ID" type="xs:int"/>
  1983. <xs:element name="altitude" type="xs:float">
  1984. <xs:annotation>
  1985. <xs:documentation>Umiejscowanie w danym wymiarze na wysokości</xs:documentation>
  1986. </xs:annotation>
  1987. </xs:element>
  1988. <xs:element minOccurs="0" name="offset" type="xs:float"/>
  1989. <xs:element minOccurs="0" name="tolerance" type="xs:int"/>
  1990. <xs:element ref="default_db__x3A__NEURO_MIND:NEURO_MIND">
  1991. <xs:annotation>
  1992. <xs:appinfo>
  1993. <system_cache__appinfo:flat_relation_cache>
  1994. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view" system_cache__appinfo:xpath="default_db__x3A__NEURO_MIND:NEURO_MIND/ID_NEURO_MATRIX"/>
  1995. </system_cache__appinfo:flat_relation_cache>
  1996. </xs:appinfo>
  1997. <xs:documentation>Przynależność do jakiegoś MIND</xs:documentation>
  1998. </xs:annotation>
  1999. </xs:element>
  2000. <xs:element minOccurs="0" name="ID_NEURO_MIND_LAYER_RECEPTOR" type="xs:int">
  2001. <xs:annotation>
  2002. <xs:documentation>Opcjonalny ref do receptora</xs:documentation>
  2003. </xs:annotation>
  2004. </xs:element>
  2005. <xs:element name="ID_NEURO_LAYER_COVERAGE" type="xs:int">
  2006. <xs:annotation>
  2007. <xs:documentation>Ref konfiguracji specjalnych cech warstwy </xs:documentation>
  2008. </xs:annotation>
  2009. </xs:element>
  2010. <xs:element name="ID_NEURO_MIND_STATE" type="xs:int">
  2011. <xs:annotation>
  2012. <xs:documentation>zaleznosc do State</xs:documentation>
  2013. </xs:annotation>
  2014. </xs:element>
  2015. </xs:sequence>
  2016. </xs:restriction>
  2017. </xs:complexContent>
  2018. </xs:complexType>
  2019. <xs:element name="Satisfy1" type="default_db__x3A__NEURO_MATRIX:Satisfy"/>
  2020. <xs:complexType name="Satisfy1">
  2021. <xs:complexContent>
  2022. <xs:restriction base="default_db__x3A__NEURO_MATRIX:Satisfy">
  2023. <xs:sequence>
  2024. <xs:element name="ID" type="xs:int"/>
  2025. <xs:element name="altitude" type="xs:float">
  2026. <xs:annotation>
  2027. <xs:documentation>Umiejscowanie w danym wymiarze na wysokości</xs:documentation>
  2028. </xs:annotation>
  2029. </xs:element>
  2030. <xs:element minOccurs="0" name="offset" type="xs:float"/>
  2031. <xs:element minOccurs="0" name="tolerance" type="xs:int"/>
  2032. <xs:element ref="default_db__x3A__NEURO_MIND:NEURO_MIND">
  2033. <xs:annotation>
  2034. <xs:appinfo>
  2035. <system_cache__appinfo:flat_relation_cache>
  2036. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view" system_cache__appinfo:xpath="default_db__x3A__NEURO_MIND:NEURO_MIND/ID_NEURO_MATRIX"/>
  2037. </system_cache__appinfo:flat_relation_cache>
  2038. </xs:appinfo>
  2039. <xs:documentation>Przynależność do jakiegoś MIND</xs:documentation>
  2040. </xs:annotation>
  2041. </xs:element>
  2042. <xs:element minOccurs="0" name="ID_NEURO_MIND_LAYER_RECEPTOR" type="xs:int">
  2043. <xs:annotation>
  2044. <xs:documentation>Opcjonalny ref do receptora</xs:documentation>
  2045. </xs:annotation>
  2046. </xs:element>
  2047. <xs:element name="ID_NEURO_LAYER_COVERAGE" type="xs:int">
  2048. <xs:annotation>
  2049. <xs:documentation>Ref konfiguracji specjalnych cech warstwy </xs:documentation>
  2050. </xs:annotation>
  2051. </xs:element>
  2052. <xs:element name="ID_NEURO_MIND_STATE" type="xs:int">
  2053. <xs:annotation>
  2054. <xs:documentation>zaleznosc do State</xs:documentation>
  2055. </xs:annotation>
  2056. </xs:element>
  2057. </xs:sequence>
  2058. </xs:restriction>
  2059. </xs:complexContent>
  2060. </xs:complexType>
  2061. <xs:complexType name="Satisfy1-MergeCoverage-MinAlt">
  2062. <xs:complexContent>
  2063. <xs:restriction base="default_db__x3A__NEURO_MATRIX:Satisfy1">
  2064. <xs:sequence>
  2065. <xs:element name="ID" type="xs:int"/>
  2066. <xs:element name="altitude" type="xs:float">
  2067. <xs:annotation>
  2068. <xs:documentation>Umiejscowanie w danym wymiarze na wysokości</xs:documentation>
  2069. </xs:annotation>
  2070. </xs:element>
  2071. <xs:element minOccurs="0" name="offset" type="xs:float"/>
  2072. <xs:element minOccurs="0" name="tolerance" type="xs:int"/>
  2073. <xs:element ref="default_db__x3A__NEURO_MIND:NEURO_MIND">
  2074. <xs:annotation>
  2075. <xs:appinfo>
  2076. <system_cache__appinfo:flat_relation_cache>
  2077. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view" system_cache__appinfo:xpath="default_db__x3A__NEURO_MIND:NEURO_MIND/ID_NEURO_MATRIX"/>
  2078. </system_cache__appinfo:flat_relation_cache>
  2079. </xs:appinfo>
  2080. <xs:documentation>Przynależność do jakiegoś MIND</xs:documentation>
  2081. </xs:annotation>
  2082. </xs:element>
  2083. <xs:element minOccurs="0" name="ID_NEURO_MIND_LAYER_RECEPTOR" type="xs:int">
  2084. <xs:annotation>
  2085. <xs:documentation>Opcjonalny ref do receptora</xs:documentation>
  2086. </xs:annotation>
  2087. </xs:element>
  2088. <xs:element name="ID_NEURO_LAYER_COVERAGE" type="xs:int">
  2089. <xs:annotation>
  2090. <xs:documentation>Ref konfiguracji specjalnych cech warstwy </xs:documentation>
  2091. </xs:annotation>
  2092. </xs:element>
  2093. <xs:element name="ID_NEURO_MIND_STATE" type="xs:int">
  2094. <xs:annotation>
  2095. <xs:documentation>zaleznosc do State</xs:documentation>
  2096. </xs:annotation>
  2097. </xs:element>
  2098. </xs:sequence>
  2099. </xs:restriction>
  2100. </xs:complexContent>
  2101. </xs:complexType>
  2102. <xs:element name="Satisfy1-MergeCoverage-MinAlt"
  2103. type="default_db__x3A__NEURO_MATRIX:Satisfy1-MergeCoverage-MinAlt"/>
  2104. <xs:complexType name="Satisfy1-MergeCoverage-MaxAlt">
  2105. <xs:complexContent>
  2106. <xs:restriction base="default_db__x3A__NEURO_MATRIX:Satisfy1">
  2107. <xs:sequence>
  2108. <xs:element name="ID" type="xs:int"/>
  2109. <xs:element name="altitude" type="xs:float">
  2110. <xs:annotation>
  2111. <xs:documentation>Umiejscowanie w danym wymiarze na wysokości</xs:documentation>
  2112. </xs:annotation>
  2113. </xs:element>
  2114. <xs:element minOccurs="0" name="offset" type="xs:float"/>
  2115. <xs:element minOccurs="0" name="tolerance" type="xs:int"/>
  2116. <xs:element ref="default_db__x3A__NEURO_MIND:NEURO_MIND">
  2117. <xs:annotation>
  2118. <xs:appinfo>
  2119. <system_cache__appinfo:flat_relation_cache>
  2120. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view" system_cache__appinfo:xpath="default_db__x3A__NEURO_MIND:NEURO_MIND/ID_NEURO_MATRIX"/>
  2121. </system_cache__appinfo:flat_relation_cache>
  2122. </xs:appinfo>
  2123. <xs:documentation>Przynależność do jakiegoś MIND</xs:documentation>
  2124. </xs:annotation>
  2125. </xs:element>
  2126. <xs:element minOccurs="0" name="ID_NEURO_MIND_LAYER_RECEPTOR" type="xs:int">
  2127. <xs:annotation>
  2128. <xs:documentation>Opcjonalny ref do receptora</xs:documentation>
  2129. </xs:annotation>
  2130. </xs:element>
  2131. <xs:element name="ID_NEURO_LAYER_COVERAGE" type="xs:int">
  2132. <xs:annotation>
  2133. <xs:documentation>Ref konfiguracji specjalnych cech warstwy </xs:documentation>
  2134. </xs:annotation>
  2135. </xs:element>
  2136. <xs:element name="ID_NEURO_MIND_STATE" type="xs:int">
  2137. <xs:annotation>
  2138. <xs:documentation>zaleznosc do State</xs:documentation>
  2139. </xs:annotation>
  2140. </xs:element>
  2141. </xs:sequence>
  2142. </xs:restriction>
  2143. </xs:complexContent>
  2144. </xs:complexType>
  2145. <xs:element name="Satisfy1-MergeCoverage-MaxAlt"
  2146. type="default_db__x3A__NEURO_MATRIX:Satisfy1-MergeCoverage-MaxAlt"/>
  2147. <xs:complexType name="Satisfy2">
  2148. <xs:complexContent>
  2149. <xs:restriction base="default_db__x3A__NEURO_MATRIX:NEURO_MATRIX">
  2150. <xs:sequence>
  2151. <xs:element name="ID" type="xs:int"/>
  2152. <xs:element name="altitude" type="xs:float">
  2153. <xs:annotation>
  2154. <xs:documentation>Umiejscowanie w danym wymiarze na wysokości</xs:documentation>
  2155. </xs:annotation>
  2156. </xs:element>
  2157. <xs:element minOccurs="0" name="offset" type="xs:float"/>
  2158. <xs:element minOccurs="0" name="tolerance" type="xs:int"/>
  2159. <xs:element ref="default_db__x3A__NEURO_MIND:NEURO_MIND">
  2160. <xs:annotation>
  2161. <xs:appinfo>
  2162. <system_cache__appinfo:flat_relation_cache>
  2163. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view" system_cache__appinfo:xpath="default_db__x3A__NEURO_MIND:NEURO_MIND/ID_NEURO_MATRIX"/>
  2164. </system_cache__appinfo:flat_relation_cache>
  2165. </xs:appinfo>
  2166. <xs:documentation>Przynależność do jakiegoś MIND</xs:documentation>
  2167. </xs:annotation>
  2168. </xs:element>
  2169. <xs:element minOccurs="0" name="ID_NEURO_MIND_LAYER_RECEPTOR" type="xs:int">
  2170. <xs:annotation>
  2171. <xs:documentation>Opcjonalny ref do receptora</xs:documentation>
  2172. </xs:annotation>
  2173. </xs:element>
  2174. <xs:element name="ID_NEURO_LAYER_COVERAGE" type="xs:int">
  2175. <xs:annotation>
  2176. <xs:documentation>Ref konfiguracji specjalnych cech warstwy </xs:documentation>
  2177. </xs:annotation>
  2178. </xs:element>
  2179. <xs:element name="ID_NEURO_MIND_STATE" type="xs:int">
  2180. <xs:annotation>
  2181. <xs:documentation>zaleznosc do State</xs:documentation>
  2182. </xs:annotation>
  2183. </xs:element>
  2184. </xs:sequence>
  2185. </xs:restriction>
  2186. </xs:complexContent>
  2187. </xs:complexType>
  2188. <xs:element name="Satisfy2" type="default_db__x3A__NEURO_MATRIX:NEURO_MATRIX"/>
  2189. <xs:complexType name="Satisfy2-MergeCoverage-MaxAlt">
  2190. <xs:complexContent>
  2191. <xs:restriction base="default_db__x3A__NEURO_MATRIX:Satisfy">
  2192. <xs:sequence>
  2193. <xs:element name="ID" type="xs:int"/>
  2194. <xs:element name="altitude" type="xs:float">
  2195. <xs:annotation>
  2196. <xs:documentation>Umiejscowanie w danym wymiarze na wysokości</xs:documentation>
  2197. </xs:annotation>
  2198. </xs:element>
  2199. <xs:element minOccurs="0" name="offset" type="xs:float"/>
  2200. <xs:element minOccurs="0" name="tolerance" type="xs:int"/>
  2201. <xs:element ref="default_db__x3A__NEURO_MIND:NEURO_MIND">
  2202. <xs:annotation>
  2203. <xs:appinfo>
  2204. <system_cache__appinfo:flat_relation_cache>
  2205. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view" system_cache__appinfo:xpath="default_db__x3A__NEURO_MIND:NEURO_MIND/ID_NEURO_MATRIX"/>
  2206. </system_cache__appinfo:flat_relation_cache>
  2207. </xs:appinfo>
  2208. <xs:documentation>Przynależność do jakiegoś MIND</xs:documentation>
  2209. </xs:annotation>
  2210. </xs:element>
  2211. <xs:element minOccurs="0" name="ID_NEURO_MIND_LAYER_RECEPTOR" type="xs:int">
  2212. <xs:annotation>
  2213. <xs:documentation>Opcjonalny ref do receptora</xs:documentation>
  2214. </xs:annotation>
  2215. </xs:element>
  2216. <xs:element name="ID_NEURO_LAYER_COVERAGE" type="xs:int">
  2217. <xs:annotation>
  2218. <xs:documentation>Ref konfiguracji specjalnych cech warstwy </xs:documentation>
  2219. </xs:annotation>
  2220. </xs:element>
  2221. <xs:element name="ID_NEURO_MIND_STATE" type="xs:int">
  2222. <xs:annotation>
  2223. <xs:documentation>zaleznosc do State</xs:documentation>
  2224. </xs:annotation>
  2225. </xs:element>
  2226. </xs:sequence>
  2227. </xs:restriction>
  2228. </xs:complexContent>
  2229. </xs:complexType>
  2230. <xs:element name="Satisfy2-MergeCoverage-MaxAlt"
  2231. type="default_db__x3A__NEURO_MATRIX:Satisfy2-MergeCoverage-MaxAlt"/>
  2232. <xs:complexType name="Satisfy2-MergeCoverage-MinAlt">
  2233. <xs:complexContent>
  2234. <xs:restriction base="default_db__x3A__NEURO_MATRIX:Satisfy2-MergeCoverage-MaxAlt">
  2235. <xs:sequence>
  2236. <xs:element name="ID" type="xs:int"/>
  2237. <xs:element name="altitude" type="xs:float">
  2238. <xs:annotation>
  2239. <xs:documentation>Umiejscowanie w danym wymiarze na wysokości</xs:documentation>
  2240. </xs:annotation>
  2241. </xs:element>
  2242. <xs:element minOccurs="0" name="offset" type="xs:float"/>
  2243. <xs:element minOccurs="0" name="tolerance" type="xs:int"/>
  2244. <xs:element ref="default_db__x3A__NEURO_MIND:NEURO_MIND">
  2245. <xs:annotation>
  2246. <xs:appinfo>
  2247. <system_cache__appinfo:flat_relation_cache>
  2248. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view" system_cache__appinfo:xpath="default_db__x3A__NEURO_MIND:NEURO_MIND/ID_NEURO_MATRIX"/>
  2249. </system_cache__appinfo:flat_relation_cache>
  2250. </xs:appinfo>
  2251. <xs:documentation>Przynależność do jakiegoś MIND</xs:documentation>
  2252. </xs:annotation>
  2253. </xs:element>
  2254. <xs:element minOccurs="0" name="ID_NEURO_MIND_LAYER_RECEPTOR" type="xs:int">
  2255. <xs:annotation>
  2256. <xs:documentation>Opcjonalny ref do receptora</xs:documentation>
  2257. </xs:annotation>
  2258. </xs:element>
  2259. <xs:element name="ID_NEURO_LAYER_COVERAGE" type="xs:int">
  2260. <xs:annotation>
  2261. <xs:documentation>Ref konfiguracji specjalnych cech warstwy </xs:documentation>
  2262. </xs:annotation>
  2263. </xs:element>
  2264. <xs:element name="ID_NEURO_MIND_STATE" type="xs:int">
  2265. <xs:annotation>
  2266. <xs:documentation>zaleznosc do State</xs:documentation>
  2267. </xs:annotation>
  2268. </xs:element>
  2269. </xs:sequence>
  2270. </xs:restriction>
  2271. </xs:complexContent>
  2272. </xs:complexType>
  2273. <xs:element name="Satisfy2-MergeCoverage-MinAlt"
  2274. type="default_db__x3A__NEURO_MATRIX:Satisfy2-MergeCoverage-MinAlt"/>
  2275. <xs:complexType name="Satisfy3">
  2276. <xs:complexContent>
  2277. <xs:restriction base="default_db__x3A__NEURO_MATRIX:Satisfy">
  2278. <xs:sequence>
  2279. <xs:element name="ID" type="xs:int"/>
  2280. <xs:element name="altitude" type="xs:float">
  2281. <xs:annotation>
  2282. <xs:documentation>Umiejscowanie w danym wymiarze na wysokości</xs:documentation>
  2283. </xs:annotation>
  2284. </xs:element>
  2285. <xs:element minOccurs="0" name="offset" type="xs:float"/>
  2286. <xs:element minOccurs="0" name="tolerance" type="xs:int"/>
  2287. <xs:element ref="default_db__x3A__NEURO_MIND:NEURO_MIND">
  2288. <xs:annotation>
  2289. <xs:appinfo>
  2290. <system_cache__appinfo:flat_relation_cache>
  2291. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view" system_cache__appinfo:xpath="default_db__x3A__NEURO_MIND:NEURO_MIND/ID_NEURO_MATRIX"/>
  2292. </system_cache__appinfo:flat_relation_cache>
  2293. </xs:appinfo>
  2294. <xs:documentation>Przynależność do jakiegoś MIND</xs:documentation>
  2295. </xs:annotation>
  2296. </xs:element>
  2297. <xs:element minOccurs="0" name="ID_NEURO_MIND_LAYER_RECEPTOR" type="xs:int">
  2298. <xs:annotation>
  2299. <xs:documentation>Opcjonalny ref do receptora</xs:documentation>
  2300. </xs:annotation>
  2301. </xs:element>
  2302. <xs:element name="ID_NEURO_LAYER_COVERAGE" type="xs:int">
  2303. <xs:annotation>
  2304. <xs:documentation>Ref konfiguracji specjalnych cech warstwy </xs:documentation>
  2305. </xs:annotation>
  2306. </xs:element>
  2307. <xs:element name="ID_NEURO_MIND_STATE" type="xs:int">
  2308. <xs:annotation>
  2309. <xs:documentation>zaleznosc do State</xs:documentation>
  2310. </xs:annotation>
  2311. </xs:element>
  2312. </xs:sequence>
  2313. </xs:restriction>
  2314. </xs:complexContent>
  2315. </xs:complexType>
  2316. <xs:element name="Satisfy3" type="default_db__x3A__NEURO_MATRIX:NEURO_MATRIX"/>
  2317. <xs:element name="Satisfy3-MergeCoverage-MinAlt"
  2318. type="default_db__x3A__NEURO_MATRIX:Satisfy3-MergeCoverage-MinAlt"/>
  2319. <xs:complexType name="Satisfy3-MergeCoverage-MinAlt">
  2320. <xs:complexContent>
  2321. <xs:restriction base="default_db__x3A__NEURO_MATRIX:Satisfy3">
  2322. <xs:sequence>
  2323. <xs:element name="ID" type="xs:int"/>
  2324. <xs:element name="altitude" type="xs:float">
  2325. <xs:annotation>
  2326. <xs:documentation>Umiejscowanie w danym wymiarze na wysokości</xs:documentation>
  2327. </xs:annotation>
  2328. </xs:element>
  2329. <xs:element minOccurs="0" name="offset" type="xs:float"/>
  2330. <xs:element minOccurs="0" name="tolerance" type="xs:int"/>
  2331. <xs:element ref="default_db__x3A__NEURO_MIND:NEURO_MIND">
  2332. <xs:annotation>
  2333. <xs:appinfo>
  2334. <system_cache__appinfo:flat_relation_cache>
  2335. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view" system_cache__appinfo:xpath="default_db__x3A__NEURO_MIND:NEURO_MIND/ID_NEURO_MATRIX"/>
  2336. </system_cache__appinfo:flat_relation_cache>
  2337. </xs:appinfo>
  2338. <xs:documentation>Przynależność do jakiegoś MIND</xs:documentation>
  2339. </xs:annotation>
  2340. </xs:element>
  2341. <xs:element minOccurs="0" name="ID_NEURO_MIND_LAYER_RECEPTOR" type="xs:int">
  2342. <xs:annotation>
  2343. <xs:documentation>Opcjonalny ref do receptora</xs:documentation>
  2344. </xs:annotation>
  2345. </xs:element>
  2346. <xs:element name="ID_NEURO_LAYER_COVERAGE" type="xs:int">
  2347. <xs:annotation>
  2348. <xs:documentation>Ref konfiguracji specjalnych cech warstwy </xs:documentation>
  2349. </xs:annotation>
  2350. </xs:element>
  2351. <xs:element name="ID_NEURO_MIND_STATE" type="xs:int">
  2352. <xs:annotation>
  2353. <xs:documentation>zaleznosc do State</xs:documentation>
  2354. </xs:annotation>
  2355. </xs:element>
  2356. </xs:sequence>
  2357. </xs:restriction>
  2358. </xs:complexContent>
  2359. </xs:complexType>
  2360. <xs:element name="Satisfy3-MergeCoverage-MaxAlt"
  2361. type="default_db__x3A__NEURO_MATRIX:Satisfy3-MergeCoverage-MaxAlt"/>
  2362. <xs:complexType name="Satisfy3-MergeCoverage-MaxAlt">
  2363. <xs:complexContent>
  2364. <xs:restriction base="default_db__x3A__NEURO_MATRIX:Satisfy3">
  2365. <xs:sequence>
  2366. <xs:element name="ID" type="xs:int"/>
  2367. <xs:element name="altitude" type="xs:float">
  2368. <xs:annotation>
  2369. <xs:documentation>Umiejscowanie w danym wymiarze na wysokości</xs:documentation>
  2370. </xs:annotation>
  2371. </xs:element>
  2372. <xs:element minOccurs="0" name="offset" type="xs:float"/>
  2373. <xs:element minOccurs="0" name="tolerance" type="xs:int"/>
  2374. <xs:element ref="default_db__x3A__NEURO_MIND:NEURO_MIND">
  2375. <xs:annotation>
  2376. <xs:appinfo>
  2377. <system_cache__appinfo:flat_relation_cache>
  2378. <system_cache__appinfo:source system_cache__appinfo:name="ID" system_cache__appinfo:ref_engine="view" system_cache__appinfo:xpath="default_db__x3A__NEURO_MIND:NEURO_MIND/ID_NEURO_MATRIX"/>
  2379. </system_cache__appinfo:flat_relation_cache>
  2380. </xs:appinfo>
  2381. <xs:documentation>Przynależność do jakiegoś MIND</xs:documentation>
  2382. </xs:annotation>
  2383. </xs:element>
  2384. <xs:element minOccurs="0" name="ID_NEURO_MIND_LAYER_RECEPTOR" type="xs:int">
  2385. <xs:annotation>
  2386. <xs:documentation>Opcjonalny ref do receptora</xs:documentation>
  2387. </xs:annotation>
  2388. </xs:element>
  2389. <xs:element name="ID_NEURO_LAYER_COVERAGE" type="xs:int">
  2390. <xs:annotation>
  2391. <xs:documentation>Ref konfiguracji specjalnych cech warstwy </xs:documentation>
  2392. </xs:annotation>
  2393. </xs:element>
  2394. <xs:element name="ID_NEURO_MIND_STATE" type="xs:int">
  2395. <xs:annotation>
  2396. <xs:documentation>zaleznosc do State</xs:documentation>
  2397. </xs:annotation>
  2398. </xs:element>
  2399. </xs:sequence>
  2400. </xs:restriction>
  2401. </xs:complexContent>
  2402. </xs:complexType>
  2403. </xs:schema>