Descend2.xsd 126 KB

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