ruian_vf_v1.gfs 63 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064
  1. <GMLFeatureClassList>
  2. <!-- Seznam států -->
  3. <GMLFeatureClass>
  4. <Name>Staty</Name>
  5. <ElementPath>Data|Staty|Stat</ElementPath>
  6. <SRSName>urn:ogc:def:crs:EPSG::5514</SRSName>
  7. <!-- Geometrie definičního bodu státu -->
  8. <GeomPropertyDefn>
  9. <Name>DefinicniBod</Name>
  10. <ElementPath>Geometrie|DefinicniBod</ElementPath>
  11. <Type>Point</Type>
  12. </GeomPropertyDefn>
  13. <!-- Originální geometrie hranice státu -->
  14. <GeomPropertyDefn>
  15. <Name>OriginalniHranice</Name>
  16. <ElementPath>Geometrie|OriginalniHranice</ElementPath>
  17. <Type>MultiPolygon</Type>
  18. </GeomPropertyDefn>
  19. <!-- Generalizovaná geometrie hranice státu (stupeň generalizace 5) -->
  20. <GeomPropertyDefn>
  21. <Name>GeneralizovaneHranice</Name>
  22. <ElementPath>Geometrie|GeneralizovaneHranice5</ElementPath>
  23. <Type>MultiPolygon</Type>
  24. </GeomPropertyDefn>
  25. <!-- Kód státu -->
  26. <PropertyDefn>
  27. <Name>Kod</Name>
  28. <ElementPath>Kod</ElementPath>
  29. <Type>Integer</Type>
  30. </PropertyDefn>
  31. <!-- Název státu -->
  32. <PropertyDefn>
  33. <Name>Nazev</Name>
  34. <ElementPath>Nazev</ElementPath>
  35. <Type>String</Type>
  36. <Width>32</Width>
  37. </PropertyDefn>
  38. <!-- Identifikátor nesprávnosti na prvku -->
  39. <PropertyDefn>
  40. <Name>Nespravny</Name>
  41. <ElementPath>Nespravny</ElementPath>
  42. <Type>String</Type>
  43. <Width>5</Width>
  44. </PropertyDefn>
  45. <!-- Začátek platnosti -->
  46. <PropertyDefn>
  47. <Name>PlatiOd</Name>
  48. <ElementPath>PlatiOd</ElementPath>
  49. <Type>String</Type>
  50. <Width>19</Width>
  51. </PropertyDefn>
  52. <!-- Konec platnosti -->
  53. <PropertyDefn>
  54. <Name>PlatiDo</Name>
  55. <ElementPath>PlatiDo</ElementPath>
  56. <Type>String</Type>
  57. <Width>19</Width>
  58. </PropertyDefn>
  59. <!-- ID transakce v RUIAN -->
  60. <PropertyDefn>
  61. <Name>IdTransakce</Name>
  62. <ElementPath>IdTransakce</ElementPath>
  63. <Type>Integer</Type>
  64. <SubType>Integer64</SubType>
  65. </PropertyDefn>
  66. <!-- ID návrhu změny v ISUI -->
  67. <PropertyDefn>
  68. <Name>GlobalniIdNavrhuZmeny</Name>
  69. <ElementPath>GlobalniIdNavrhuZmeny</ElementPath>
  70. <Type>Integer</Type>
  71. <SubType>Integer64</SubType>
  72. </PropertyDefn>
  73. <!-- Kód územního celku v NUTS / LAU -->
  74. <PropertyDefn>
  75. <Name>NutsLau</Name>
  76. <ElementPath>NutsLau</ElementPath>
  77. <Type>String</Type>
  78. <Width>2</Width>
  79. </PropertyDefn>
  80. <!-- Datum vzniku -->
  81. <PropertyDefn>
  82. <Name>DatumVzniku</Name>
  83. <ElementPath>DatumVzniku</ElementPath>
  84. <Type>String</Type>
  85. <Width>19</Width>
  86. </PropertyDefn>
  87. </GMLFeatureClass>
  88. <!-- Regiony soudržnosti -->
  89. <GMLFeatureClass>
  90. <Name>RegionySoudrznosti</Name>
  91. <ElementPath>Data|RegionySoudrznosti|RegionSoudrznosti</ElementPath>
  92. <SRSName>urn:ogc:def:crs:EPSG::5514</SRSName>
  93. <!-- Geometrie definičního bodu regionu soudržnosti -->
  94. <GeomPropertyDefn>
  95. <Name>DefinicniBod</Name>
  96. <ElementPath>Geometrie|DefinicniBod</ElementPath>
  97. <Type>Point</Type>
  98. </GeomPropertyDefn>
  99. <!-- Originální geometrie hranice regionu soudržnosti -->
  100. <GeomPropertyDefn>
  101. <Name>OriginalniHranice</Name>
  102. <ElementPath>Geometrie|OriginalniHranice</ElementPath>
  103. <Type>MultiPolygon</Type>
  104. </GeomPropertyDefn>
  105. <!-- Generalizovaná geometrie hranice státu (stupeň generalizace 5) -->
  106. <GeomPropertyDefn>
  107. <Name>GeneralizovaneHranice</Name>
  108. <ElementPath>Geometrie|GeneralizovaneHranice5</ElementPath>
  109. <Type>MultiPolygon</Type>
  110. </GeomPropertyDefn>
  111. <!-- Kód regionu soudržnosti -->
  112. <PropertyDefn>
  113. <Name>Kod</Name>
  114. <ElementPath>Kod</ElementPath>
  115. <Type>Integer</Type>
  116. </PropertyDefn>
  117. <!-- Název regionu soudržnosti -->
  118. <PropertyDefn>
  119. <Name>Nazev</Name>
  120. <ElementPath>Nazev</ElementPath>
  121. <Type>String</Type>
  122. <Width>32</Width>
  123. </PropertyDefn>
  124. <!-- Identifikátor nesprávnosti na prvku -->
  125. <PropertyDefn>
  126. <Name>Nespravny</Name>
  127. <ElementPath>Nespravny</ElementPath>
  128. <Type>String</Type>
  129. <Width>5</Width>
  130. </PropertyDefn>
  131. <!-- Nadřazený stát -->
  132. <PropertyDefn>
  133. <Name>StatKod</Name>
  134. <ElementPath>Stat|Kod</ElementPath>
  135. <Type>Integer</Type>
  136. </PropertyDefn>
  137. <!-- Začátek platnosti -->
  138. <PropertyDefn>
  139. <Name>PlatiOd</Name>
  140. <ElementPath>PlatiOd</ElementPath>
  141. <Type>String</Type>
  142. <Width>19</Width>
  143. </PropertyDefn>
  144. <!-- Konec platnosti -->
  145. <PropertyDefn>
  146. <Name>PlatiDo</Name>
  147. <ElementPath>PlatiDo</ElementPath>
  148. <Type>String</Type>
  149. <Width>19</Width>
  150. </PropertyDefn>
  151. <!-- ID transakce v RUIAN -->
  152. <PropertyDefn>
  153. <Name>IdTransakce</Name>
  154. <ElementPath>IdTransakce</ElementPath>
  155. <Type>Integer</Type>
  156. <SubType>Integer64</SubType>
  157. </PropertyDefn>
  158. <!-- ID návrhu změn v ISUI -->
  159. <PropertyDefn>
  160. <Name>GlobalniIdNavrhuZmeny</Name>
  161. <ElementPath>GlobalniIdNavrhuZmeny</ElementPath>
  162. <Type>Integer</Type>
  163. <SubType>Integer64</SubType>
  164. </PropertyDefn>
  165. <!-- Kód územního celku v NUTS / LAU -->
  166. <PropertyDefn>
  167. <Name>NutsLau</Name>
  168. <ElementPath>NutsLau</ElementPath>
  169. <Type>String</Type>
  170. <Width>4</Width>
  171. </PropertyDefn>
  172. <!-- Datum vzniku -->
  173. <PropertyDefn>
  174. <Name>DatumVzniku</Name>
  175. <ElementPath>DatumVzniku</ElementPath>
  176. <Type>String</Type>
  177. <Width>19</Width>
  178. </PropertyDefn>
  179. </GMLFeatureClass>
  180. <!-- Kraje -->
  181. <GMLFeatureClass>
  182. <Name>Kraje</Name>
  183. <ElementPath>Data|Kraje|Kraj</ElementPath>
  184. <SRSName>urn:ogc:def:crs:EPSG::5514</SRSName>
  185. <!-- Geometrie definičního bodu kraje -->
  186. <GeomPropertyDefn>
  187. <Name>DefinicniBod</Name>
  188. <ElementPath>Geometrie|DefinicniBod</ElementPath>
  189. <Type>Point</Type>
  190. </GeomPropertyDefn>
  191. <!-- Originální geometrie hranice kraje -->
  192. <GeomPropertyDefn>
  193. <Name>OriginalniHranice</Name>
  194. <ElementPath>Geometrie|OriginalniHranice</ElementPath>
  195. <Type>MultiPolygon</Type>
  196. </GeomPropertyDefn>
  197. <!-- Generalizovaná geometrie hranice kraje (stupeň generalizace 5) -->
  198. <GeomPropertyDefn>
  199. <Name>GeneralizovaneHranice</Name>
  200. <ElementPath>Geometrie|GeneralizovaneHranice5</ElementPath>
  201. <Type>MultiPolygon</Type>
  202. </GeomPropertyDefn>
  203. <!-- Kód kraje -->
  204. <PropertyDefn>
  205. <Name>Kod</Name>
  206. <ElementPath>Kod</ElementPath>
  207. <Type>Integer</Type>
  208. </PropertyDefn>
  209. <!-- Název kraje -->
  210. <PropertyDefn>
  211. <Name>Nazev</Name>
  212. <ElementPath>Nazev</ElementPath>
  213. <Type>String</Type>
  214. <Width>32</Width>
  215. </PropertyDefn>
  216. <!-- Identifikátor nesprávnosti na prvku -->
  217. <PropertyDefn>
  218. <Name>Nespravny</Name>
  219. <ElementPath>Nespravny</ElementPath>
  220. <Type>String</Type>
  221. <Width>5</Width>
  222. </PropertyDefn>
  223. <!-- Nadřazený stát -->
  224. <PropertyDefn>
  225. <Name>StatKod</Name>
  226. <ElementPath>Stat|Kod</ElementPath>
  227. <Type>Integer</Type>
  228. </PropertyDefn>
  229. <!-- Začátek platnosti -->
  230. <PropertyDefn>
  231. <Name>PlatiOd</Name>
  232. <ElementPath>PlatiOd</ElementPath>
  233. <Type>String</Type>
  234. <Width>19</Width>
  235. </PropertyDefn>
  236. <!-- Konec platnosti -->
  237. <PropertyDefn>
  238. <Name>PlatiDo</Name>
  239. <ElementPath>PlatiDo</ElementPath>
  240. <Type>String</Type>
  241. <Width>19</Width>
  242. </PropertyDefn>
  243. <!-- ID transakce v RUIAN -->
  244. <PropertyDefn>
  245. <Name>IdTransakce</Name>
  246. <ElementPath>IdTransakce</ElementPath>
  247. <Type>Integer</Type>
  248. <SubType>Integer64</SubType>
  249. </PropertyDefn>
  250. <!-- ID návrhu změn v ISUI -->
  251. <PropertyDefn>
  252. <Name>GlobalniIdNavrhuZmeny</Name>
  253. <ElementPath>GlobalniIdNavrhuZmeny</ElementPath>
  254. <Type>Integer</Type>
  255. <SubType>Integer64</SubType>
  256. </PropertyDefn>
  257. <!-- Kód územního celku v NUTS / LAU -->
  258. <PropertyDefn>
  259. <Name>NutsLau</Name>
  260. <ElementPath>NutsLau</ElementPath>
  261. <Type>String</Type>
  262. <Width>4</Width>
  263. </PropertyDefn>
  264. <!-- Datum vzniku -->
  265. <PropertyDefn>
  266. <Name>DatumVzniku</Name>
  267. <ElementPath>DatumVzniku</ElementPath>
  268. <Type>String</Type>
  269. <Width>19</Width>
  270. </PropertyDefn>
  271. </GMLFeatureClass>
  272. <!-- VÚSC -->
  273. <GMLFeatureClass>
  274. <Name>Vusc</Name>
  275. <ElementPath>Data|Vusc|Vusc</ElementPath>
  276. <SRSName>urn:ogc:def:crs:EPSG::5514</SRSName>
  277. <!-- Geometrie definičního bodu VÚSC -->
  278. <GeomPropertyDefn>
  279. <Name>DefinicniBod</Name>
  280. <ElementPath>Geometrie|DefinicniBod</ElementPath>
  281. <Type>Point</Type>
  282. </GeomPropertyDefn>
  283. <!-- Originální geometrie hranice VÚSC -->
  284. <GeomPropertyDefn>
  285. <Name>OriginalniHranice</Name>
  286. <ElementPath>Geometrie|OriginalniHranice</ElementPath>
  287. <Type>MultiPolygon</Type>
  288. </GeomPropertyDefn>
  289. <!-- Generalizovaná geometrie hranice VÚSC (stupeň generalizace 5) -->
  290. <GeomPropertyDefn>
  291. <Name>GeneralizovaneHranice</Name>
  292. <ElementPath>Geometrie|GeneralizovaneHranice5</ElementPath>
  293. <Type>MultiPolygon</Type>
  294. </GeomPropertyDefn>
  295. <!-- Kód VÚSC -->
  296. <PropertyDefn>
  297. <Name>Kod</Name>
  298. <ElementPath>Kod</ElementPath>
  299. <Type>Integer</Type>
  300. <Width>6</Width>
  301. </PropertyDefn>
  302. <!-- Název VÚSC -->
  303. <PropertyDefn>
  304. <Name>Nazev</Name>
  305. <ElementPath>Nazev</ElementPath>
  306. <Type>String</Type>
  307. <Width>32</Width>
  308. </PropertyDefn>
  309. <!-- Identifikátor nesprávnosti na prvku -->
  310. <PropertyDefn>
  311. <Name>Nespravny</Name>
  312. <ElementPath>Nespravny</ElementPath>
  313. <Type>String</Type>
  314. <Width>5</Width>
  315. </PropertyDefn>
  316. <!-- Nadřazený region soudržnosti -->
  317. <PropertyDefn>
  318. <Name>RegionSoudrznostiKod</Name>
  319. <ElementPath>RegionSoudrznosti|Kod</ElementPath>
  320. <Type>Integer</Type>
  321. </PropertyDefn>
  322. <!-- Začátek platnosti -->
  323. <PropertyDefn>
  324. <Name>PlatiOd</Name>
  325. <ElementPath>PlatiOd</ElementPath>
  326. <Type>String</Type>
  327. <Width>19</Width>
  328. </PropertyDefn>
  329. <!-- Konec platnosti -->
  330. <PropertyDefn>
  331. <Name>PlatiDo</Name>
  332. <ElementPath>PlatiDo</ElementPath>
  333. <Type>String</Type>
  334. <Width>19</Width>
  335. </PropertyDefn>
  336. <!-- ID transakce v RUIAN -->
  337. <PropertyDefn>
  338. <Name>IdTransakce</Name>
  339. <ElementPath>IdTransakce</ElementPath>
  340. <Type>Integer</Type>
  341. <SubType>Integer64</SubType>
  342. </PropertyDefn>
  343. <!-- ID návrhu změn v ISUI -->
  344. <PropertyDefn>
  345. <Name>GlobalniIdNavrhuZmeny</Name>
  346. <ElementPath>GlobalniIdNavrhuZmeny</ElementPath>
  347. <Type>Integer</Type>
  348. <SubType>Integer64</SubType>
  349. </PropertyDefn>
  350. <!-- Kód územního celku v NUTS / LAU -->
  351. <PropertyDefn>
  352. <Name>NutsLau</Name>
  353. <ElementPath>NutsLau</ElementPath>
  354. <Type>String</Type>
  355. <Width>5</Width>
  356. </PropertyDefn>
  357. <!-- Datum vzniku -->
  358. <PropertyDefn>
  359. <Name>DatumVzniku</Name>
  360. <ElementPath>DatumVzniku</ElementPath>
  361. <Type>String</Type>
  362. <Width>19</Width>
  363. </PropertyDefn>
  364. </GMLFeatureClass>
  365. <!-- Okresy -->
  366. <GMLFeatureClass>
  367. <Name>Okresy</Name>
  368. <ElementPath>Data|Okresy|Okres</ElementPath>
  369. <SRSName>urn:ogc:def:crs:EPSG::5514</SRSName>
  370. <!-- Geometrie definičního bodu okresu -->
  371. <GeomPropertyDefn>
  372. <Name>DefinicniBod</Name>
  373. <ElementPath>Geometrie|DefinicniBod</ElementPath>
  374. <Type>Point</Type>
  375. </GeomPropertyDefn>
  376. <!-- Originální geometrie hranice okresu -->
  377. <GeomPropertyDefn>
  378. <Name>OriginalniHranice</Name>
  379. <ElementPath>Geometrie|OriginalniHranice</ElementPath>
  380. <Type>MultiPolygon</Type>
  381. </GeomPropertyDefn>
  382. <!-- Generalizovaná geometrie hranice okresu (stupeň generalizace 4) -->
  383. <GeomPropertyDefn>
  384. <Name>GeneralizovaneHranice</Name>
  385. <ElementPath>Geometrie|GeneralizovaneHranice4</ElementPath>
  386. <Type>MultiPolygon</Type>
  387. </GeomPropertyDefn>
  388. <!-- Kód okresu -->
  389. <PropertyDefn>
  390. <Name>Kod</Name>
  391. <ElementPath>Kod</ElementPath>
  392. <Type>Integer</Type>
  393. </PropertyDefn>
  394. <!-- Název okresu -->
  395. <PropertyDefn>
  396. <Name>Nazev</Name>
  397. <ElementPath>Nazev</ElementPath>
  398. <Type>String</Type>
  399. <Width>32</Width>
  400. </PropertyDefn>
  401. <!-- Identifikátor nesprávnosti na prvku -->
  402. <PropertyDefn>
  403. <Name>Nespravny</Name>
  404. <ElementPath>Nespravny</ElementPath>
  405. <Type>String</Type>
  406. <Width>5</Width>
  407. </PropertyDefn>
  408. <!-- Nadřazený kraj -->
  409. <PropertyDefn>
  410. <Name>KrajKod</Name>
  411. <ElementPath>Kraj|Kod</ElementPath>
  412. <Type>Integer</Type>
  413. </PropertyDefn>
  414. <!-- Nadřazený VÚSC -->
  415. <PropertyDefn>
  416. <Name>VuscKod</Name>
  417. <ElementPath>Vusc|Kod</ElementPath>
  418. <Type>Integer</Type>
  419. </PropertyDefn>
  420. <!-- Začátek platnosti -->
  421. <PropertyDefn>
  422. <Name>PlatiOd</Name>
  423. <ElementPath>PlatiOd</ElementPath>
  424. <Type>String</Type>
  425. <Width>19</Width>
  426. </PropertyDefn>
  427. <!-- Konec platnosti -->
  428. <PropertyDefn>
  429. <Name>PlatiDo</Name>
  430. <ElementPath>PlatiDo</ElementPath>
  431. <Type>String</Type>
  432. <Width>19</Width>
  433. </PropertyDefn>
  434. <!-- ID transakce v RUIAN -->
  435. <PropertyDefn>
  436. <Name>IdTransakce</Name>
  437. <ElementPath>IdTransakce</ElementPath>
  438. <Type>Integer</Type>
  439. <SubType>Integer64</SubType>
  440. </PropertyDefn>
  441. <!-- ID návrhu změn v ISUI -->
  442. <PropertyDefn>
  443. <Name>GlobalniIdNavrhuZmeny</Name>
  444. <ElementPath>GlobalniIdNavrhuZmeny</ElementPath>
  445. <Type>Integer</Type>
  446. <SubType>Integer64</SubType>
  447. </PropertyDefn>
  448. <!-- Kód územního celku v NUTS / LAU -->
  449. <PropertyDefn>
  450. <Name>NutsLau</Name>
  451. <ElementPath>NutsLau</ElementPath>
  452. <Type>String</Type>
  453. <Width>6</Width>
  454. </PropertyDefn>
  455. <!-- Datum vzniku -->
  456. <PropertyDefn>
  457. <Name>DatumVzniku</Name>
  458. <ElementPath>DatumVzniku</ElementPath>
  459. <Type>String</Type>
  460. <Width>19</Width>
  461. </PropertyDefn>
  462. </GMLFeatureClass>
  463. <!-- ORP -->
  464. <GMLFeatureClass>
  465. <Name>Orp</Name>
  466. <ElementPath>Data|Orp|Orp</ElementPath>
  467. <SRSName>urn:ogc:def:crs:EPSG::5514</SRSName>
  468. <!-- Geometrie definičního bodu ORP -->
  469. <GeomPropertyDefn>
  470. <Name>DefinicniBod</Name>
  471. <ElementPath>Geometrie|DefinicniBod</ElementPath>
  472. <Type>MultiPoint</Type>
  473. </GeomPropertyDefn>
  474. <!-- Originální geometrie hranice ORP-->
  475. <GeomPropertyDefn>
  476. <Name>OriginalniHranice</Name>
  477. <ElementPath>Geometrie|OriginalniHranice</ElementPath>
  478. <Type>MultiPolygon</Type>
  479. </GeomPropertyDefn>
  480. <!-- Generalizovaná geometrie hranice ORP (stupeň generalizace 4) -->
  481. <GeomPropertyDefn>
  482. <Name>GeneralizovaneHranice</Name>
  483. <ElementPath>Geometrie|GeneralizovaneHranice4</ElementPath>
  484. <Type>MultiPolygon</Type>
  485. </GeomPropertyDefn>
  486. <!-- Kód ORP -->
  487. <PropertyDefn>
  488. <Name>Kod</Name>
  489. <ElementPath>Kod</ElementPath>
  490. <Type>Integer</Type>
  491. </PropertyDefn>
  492. <!-- Název ORP -->
  493. <PropertyDefn>
  494. <Name>Nazev</Name>
  495. <ElementPath>Nazev</ElementPath>
  496. <Type>String</Type>
  497. <Width>48</Width>
  498. </PropertyDefn>
  499. <!-- Identifikátor nesprávnosti na prvku -->
  500. <PropertyDefn>
  501. <Name>Nespravny</Name>
  502. <ElementPath>Nespravny</ElementPath>
  503. <Type>String</Type>
  504. <Width>5</Width>
  505. </PropertyDefn>
  506. <!-- Kód správni obce -->
  507. <PropertyDefn>
  508. <Name>SpravniObecKod</Name>
  509. <ElementPath>SpravniObecKod</ElementPath>
  510. <Type>Integer</Type>
  511. </PropertyDefn>
  512. <!-- Nadřazený VÚSC -->
  513. <PropertyDefn>
  514. <Name>VuscKod</Name>
  515. <ElementPath>Vusc|Kod</ElementPath>
  516. <Type>Integer</Type>
  517. </PropertyDefn>
  518. <!-- Začátek platnosti -->
  519. <PropertyDefn>
  520. <Name>PlatiOd</Name>
  521. <ElementPath>PlatiOd</ElementPath>
  522. <Type>String</Type>
  523. <Width>19</Width>
  524. </PropertyDefn>
  525. <!-- Konec platnosti -->
  526. <PropertyDefn>
  527. <Name>PlatiDo</Name>
  528. <ElementPath>PlatiDo</ElementPath>
  529. <Type>String</Type>
  530. <Width>19</Width>
  531. </PropertyDefn>
  532. <!-- ID transakce v RUIAN -->
  533. <PropertyDefn>
  534. <Name>IdTransakce</Name>
  535. <ElementPath>IdTransakce</ElementPath>
  536. <Type>Integer</Type>
  537. <SubType>Integer64</SubType>
  538. </PropertyDefn>
  539. <!-- ID návrhu změn v ISUI -->
  540. <PropertyDefn>
  541. <Name>GlobalniIdNavrhuZmeny</Name>
  542. <ElementPath>GlobalniIdNavrhuZmeny</ElementPath>
  543. <Type>Integer</Type>
  544. <SubType>Integer64</SubType>
  545. </PropertyDefn>
  546. <!-- Datum vzniku -->
  547. <PropertyDefn>
  548. <Name>DatumVzniku</Name>
  549. <ElementPath>DatumVzniku</ElementPath>
  550. <Type>String</Type>
  551. <Width>19</Width>
  552. </PropertyDefn>
  553. </GMLFeatureClass>
  554. <!-- POU -->
  555. <GMLFeatureClass>
  556. <Name>Pou</Name>
  557. <ElementPath>Data|Pou|Pou</ElementPath>
  558. <SRSName>urn:ogc:def:crs:EPSG::5514</SRSName>
  559. <!-- Geometrie definičního bodu POU -->
  560. <GeomPropertyDefn>
  561. <Name>DefinicniBod</Name>
  562. <ElementPath>Geometrie|DefinicniBod</ElementPath>
  563. <Type>MultiPoint</Type>
  564. </GeomPropertyDefn>
  565. <!-- Originální geometrie hranice POU -->
  566. <GeomPropertyDefn>
  567. <Name>OriginalniHranice</Name>
  568. <ElementPath>Geometrie|OriginalniHranice</ElementPath>
  569. <Type>MultiPolygon</Type>
  570. </GeomPropertyDefn>
  571. <!-- Generalizovaná geometrie hranice POU (stupeň generalizace 4) -->
  572. <GeomPropertyDefn>
  573. <Name>GeneralizovaneHranice</Name>
  574. <ElementPath>Geometrie|GeneralizovaneHranice4</ElementPath>
  575. <Type>MultiPolygon</Type>
  576. </GeomPropertyDefn>
  577. <!-- Kód POU -->
  578. <PropertyDefn>
  579. <Name>Kod</Name>
  580. <ElementPath>Kod</ElementPath>
  581. <Type>Integer</Type>
  582. </PropertyDefn>
  583. <!-- Název POU -->
  584. <PropertyDefn>
  585. <Name>Nazev</Name>
  586. <ElementPath>Nazev</ElementPath>
  587. <Type>String</Type>
  588. <Width>48</Width>
  589. </PropertyDefn>
  590. <!-- Identifikátor nesprávnosti na prvku -->
  591. <PropertyDefn>
  592. <Name>Nespravny</Name>
  593. <ElementPath>Nespravny</ElementPath>
  594. <Type>String</Type>
  595. <Width>5</Width>
  596. </PropertyDefn>
  597. <!-- Kód správni obce -->
  598. <PropertyDefn>
  599. <Name>SpravniObecKod</Name>
  600. <ElementPath>SpravniObecKod</ElementPath>
  601. <Type>Integer</Type>
  602. <Width>6</Width>
  603. </PropertyDefn>
  604. <!-- Nadřazený ORP -->
  605. <PropertyDefn>
  606. <Name>OrpKod</Name>
  607. <ElementPath>Orp|Kod</ElementPath>
  608. <Type>Integer</Type>
  609. <Width>6</Width>
  610. </PropertyDefn>
  611. <!-- Začátek platnosti -->
  612. <PropertyDefn>
  613. <Name>PlatiOd</Name>
  614. <ElementPath>PlatiOd</ElementPath>
  615. <Type>String</Type>
  616. <Width>19</Width>
  617. </PropertyDefn>
  618. <!-- Konec platnosti -->
  619. <PropertyDefn>
  620. <Name>PlatiDo</Name>
  621. <ElementPath>PlatiDo</ElementPath>
  622. <Type>String</Type>
  623. <Width>19</Width>
  624. </PropertyDefn>
  625. <!-- ID transakce v RUIAN -->
  626. <PropertyDefn>
  627. <Name>IdTransakce</Name>
  628. <ElementPath>IdTransakce</ElementPath>
  629. <Type>Integer</Type>
  630. <SubType>Integer64</SubType>
  631. </PropertyDefn>
  632. <!-- ID návrhu změn v ISUI -->
  633. <PropertyDefn>
  634. <Name>GlobalniIdNavrhuZmeny</Name>
  635. <ElementPath>GlobalniIdNavrhuZmeny</ElementPath>
  636. <Type>Integer</Type>
  637. <SubType>Integer64</SubType>
  638. </PropertyDefn>
  639. <!-- Datum vzniku -->
  640. <PropertyDefn>
  641. <Name>DatumVzniku</Name>
  642. <ElementPath>DatumVzniku</ElementPath>
  643. <Type>String</Type>
  644. <Width>19</Width>
  645. </PropertyDefn>
  646. </GMLFeatureClass>
  647. <!-- Obce -->
  648. <GMLFeatureClass>
  649. <Name>Obce</Name>
  650. <ElementPath>Data|Obce|Obec</ElementPath>
  651. <SRSName>urn:ogc:def:crs:EPSG::5514</SRSName>
  652. <!-- Geometrie definičního bodu obce -->
  653. <GeomPropertyDefn>
  654. <Name>DefinicniBod</Name>
  655. <ElementPath>Geometrie|DefinicniBod</ElementPath>
  656. <Type>MultiPoint</Type>
  657. </GeomPropertyDefn>
  658. <!-- Originální geometrie hranice obce -->
  659. <GeomPropertyDefn>
  660. <Name>OriginalniHranice</Name>
  661. <ElementPath>Geometrie|OriginalniHranice</ElementPath>
  662. <Type>MultiPolygon</Type>
  663. </GeomPropertyDefn>
  664. <!-- Generalizovaná geometrie hranice obce (stupeň generalizace 3) -->
  665. <GeomPropertyDefn>
  666. <Name>GeneralizovaneHranice</Name>
  667. <ElementPath>Geometrie|GeneralizovaneHranice3</ElementPath>
  668. <Type>MultiPolygon</Type>
  669. </GeomPropertyDefn>
  670. <!-- Kód obce -->
  671. <PropertyDefn>
  672. <Name>Kod</Name>
  673. <ElementPath>Kod</ElementPath>
  674. <Type>Integer</Type>
  675. </PropertyDefn>
  676. <!-- Název obce -->
  677. <PropertyDefn>
  678. <Name>Nazev</Name>
  679. <ElementPath>Nazev</ElementPath>
  680. <Type>String</Type>
  681. <Width>48</Width>
  682. </PropertyDefn>
  683. <!-- Identifikátor nesprávnosti na prvku -->
  684. <PropertyDefn>
  685. <Name>Nespravny</Name>
  686. <ElementPath>Nespravny</ElementPath>
  687. <Type>String</Type>
  688. <Width>5</Width>
  689. </PropertyDefn>
  690. <!-- Status obce -->
  691. <PropertyDefn>
  692. <Name>StatusKod</Name>
  693. <ElementPath>StatusKod</ElementPath>
  694. <Type>Integer</Type>
  695. </PropertyDefn>
  696. <!-- Nadřazený okres -->
  697. <PropertyDefn>
  698. <Name>OkresKod</Name>
  699. <ElementPath>Okres|Kod</ElementPath>
  700. <Type>Integer</Type>
  701. </PropertyDefn>
  702. <!-- Nadřazený POU -->
  703. <PropertyDefn>
  704. <Name>PouKod</Name>
  705. <ElementPath>Pou|Kod</ElementPath>
  706. <Type>Integer</Type>
  707. </PropertyDefn>
  708. <!-- Začátek platnosti -->
  709. <PropertyDefn>
  710. <Name>PlatiOd</Name>
  711. <ElementPath>PlatiOd</ElementPath>
  712. <Type>String</Type>
  713. <Width>19</Width>
  714. </PropertyDefn>
  715. <!-- Konec platnosti -->
  716. <PropertyDefn>
  717. <Name>PlatiDo</Name>
  718. <ElementPath>PlatiDo</ElementPath>
  719. <Type>String</Type>
  720. <Width>19</Width>
  721. </PropertyDefn>
  722. <!-- ID transakce v RUIAN -->
  723. <PropertyDefn>
  724. <Name>IdTransakce</Name>
  725. <ElementPath>IdTransakce</ElementPath>
  726. <Type>Integer</Type>
  727. <SubType>Integer64</SubType>
  728. </PropertyDefn>
  729. <!-- ID návrhu změn v ISUI -->
  730. <PropertyDefn>
  731. <Name>GlobalniIdNavrhuZmeny</Name>
  732. <ElementPath>GlobalniIdNavrhuZmeny</ElementPath>
  733. <Type>Integer</Type>
  734. <SubType>Integer64</SubType>
  735. </PropertyDefn>
  736. <!-- Mluvnické charakteristiky 2 až 7 pád -->
  737. <PropertyDefn>
  738. <Name>MluvnickeCharakteristikyPad2</Name>
  739. <ElementPath>MluvnickeCharakteristiky|Pad2</ElementPath>
  740. <Type>String</Type>
  741. <Width>48</Width>
  742. </PropertyDefn>
  743. <PropertyDefn>
  744. <Name>MluvnickeCharakteristikyPad3</Name>
  745. <ElementPath>MluvnickeCharakteristiky|Pad3</ElementPath>
  746. <Type>String</Type>
  747. <Width>48</Width>
  748. </PropertyDefn>
  749. <PropertyDefn>
  750. <Name>MluvnickeCharakteristikyPad4</Name>
  751. <ElementPath>MluvnickeCharakteristiky|Pad4</ElementPath>
  752. <Type>String</Type>
  753. <Width>48</Width>
  754. </PropertyDefn>
  755. <PropertyDefn>
  756. <Name>MluvnickeCharakteristikyPad6</Name>
  757. <ElementPath>MluvnickeCharakteristiky|Pad6</ElementPath>
  758. <Type>String</Type>
  759. <Width>48</Width>
  760. </PropertyDefn>
  761. <PropertyDefn>
  762. <Name>MluvnickeCharakteristikyPad7</Name>
  763. <ElementPath>MluvnickeCharakteristiky|Pad7</ElementPath>
  764. <Type>String</Type>
  765. <Width>48</Width>
  766. </PropertyDefn>
  767. <!-- Text popisující vlajku obce -->
  768. <PropertyDefn>
  769. <Name>VlajkaText</Name>
  770. <ElementPath>VlajkaText</ElementPath>
  771. <Type>String</Type>
  772. <Width>4000</Width>
  773. </PropertyDefn>
  774. <!-- Obrázek vlajky obce -->
  775. <PropertyDefn>
  776. <Name>VlajkaObrazek</Name>
  777. <ElementPath>VlajkaObrazek</ElementPath>
  778. <Type>Complex</Type> <!-- ??? -->
  779. </PropertyDefn>
  780. <!-- Text popisující znak obce -->
  781. <PropertyDefn>
  782. <Name>ZnakText</Name>
  783. <ElementPath>ZnakText</ElementPath>
  784. <Type>String</Type>
  785. <Width>4000</Width>
  786. </PropertyDefn>
  787. <!-- Obrázek znaku obce -->
  788. <PropertyDefn>
  789. <Name>ZnakObrazek</Name>
  790. <ElementPath>ZnakObrazek</ElementPath>
  791. <Type>Complex</Type> <!-- ??? -->
  792. </PropertyDefn>
  793. <!-- Rozsah členění statutárního města na MOMC -->
  794. <PropertyDefn>
  795. <Name>CleneniSMRozsahKod</Name>
  796. <ElementPath>CleneniSMRozsahKod</ElementPath>
  797. <Type>Integer</Type>
  798. </PropertyDefn>
  799. <!-- Typ MOMC, na něž je statutární město rozčleněno -->
  800. <PropertyDefn>
  801. <Name>CleneniSMTypKod</Name>
  802. <ElementPath>CleneniSMTypKod</ElementPath>
  803. <Type>Integer</Type>
  804. </PropertyDefn>
  805. <!-- Kód územního celku v NUTS / LAU -->
  806. <PropertyDefn>
  807. <Name>NutsLau</Name>
  808. <ElementPath>NutsLau</ElementPath>
  809. <Type>String</Type>
  810. <Width>12</Width>
  811. </PropertyDefn>
  812. <!-- Datum vzniku -->
  813. <PropertyDefn>
  814. <Name>DatumVzniku</Name>
  815. <ElementPath>DatumVzniku</ElementPath>
  816. <Type>String</Type>
  817. <Width>19</Width>
  818. </PropertyDefn>
  819. </GMLFeatureClass>
  820. <!-- Spravní obvody -->
  821. <GMLFeatureClass>
  822. <Name>SpravniObvody</Name>
  823. <ElementPath>Data|SpravniObvody|SpravniObvod</ElementPath>
  824. <SRSName>urn:ogc:def:crs:EPSG::5514</SRSName>
  825. <!-- Geometrie definičního bodu správního obvodu-->
  826. <GeomPropertyDefn>
  827. <Name>DefinicniBod</Name>
  828. <ElementPath>Geometrie|DefinicniBod</ElementPath>
  829. <Type>Point</Type>
  830. </GeomPropertyDefn>
  831. <!-- Originální geometrie hranice správního obvodu -->
  832. <GeomPropertyDefn>
  833. <Name>OriginalniHranice</Name>
  834. <ElementPath>Geometrie|OriginalniHranice</ElementPath>
  835. <Type>MultiPolygon</Type>
  836. </GeomPropertyDefn>
  837. <!-- Kód správního obvodu -->
  838. <PropertyDefn>
  839. <Name>Kod</Name>
  840. <ElementPath>Kod</ElementPath>
  841. <Type>Integer</Type>
  842. </PropertyDefn>
  843. <!-- Název správního obvodu -->
  844. <PropertyDefn>
  845. <Name>Nazev</Name>
  846. <ElementPath>Nazev</ElementPath>
  847. <Type>String</Type>
  848. <Width>32</Width>
  849. </PropertyDefn>
  850. <!-- Identifikátor nesprávnosti na prvku -->
  851. <PropertyDefn>
  852. <Name>Nespravny</Name>
  853. <ElementPath>Nespravny</ElementPath>
  854. <Type>String</Type>
  855. <Width>5</Width>
  856. </PropertyDefn>
  857. <!-- Kód správniho MOMC -->
  858. <PropertyDefn>
  859. <Name>SpravniMomcKod</Name>
  860. <ElementPath>SpravniMomcKod</ElementPath>
  861. <Type>Integer</Type>
  862. </PropertyDefn>
  863. <!-- Nadřazená obec -->
  864. <PropertyDefn>
  865. <Name>ObecKod</Name>
  866. <ElementPath>Obec|Kod</ElementPath>
  867. <Type>Integer</Type>
  868. </PropertyDefn>
  869. <!-- Začátek platnosti -->
  870. <PropertyDefn>
  871. <Name>PlatiOd</Name>
  872. <ElementPath>PlatiOd</ElementPath>
  873. <Type>String</Type>
  874. <Width>19</Width>
  875. </PropertyDefn>
  876. <!-- Konec platnosti -->
  877. <PropertyDefn>
  878. <Name>PlatiDo</Name>
  879. <ElementPath>PlatiDo</ElementPath>
  880. <Type>String</Type>
  881. <Width>19</Width>
  882. </PropertyDefn>
  883. <!-- ID transakce v RUIAN -->
  884. <PropertyDefn>
  885. <Name>IdTransakce</Name>
  886. <ElementPath>IdTransakce</ElementPath>
  887. <Type>Integer</Type>
  888. <SubType>Integer64</SubType>
  889. </PropertyDefn>
  890. <!-- ID návrhu změn v ISUI -->
  891. <PropertyDefn>
  892. <Name>GlobalniIdNavrhuZmeny</Name>
  893. <ElementPath>GlobalniIdNavrhuZmeny</ElementPath>
  894. <Type>Integer</Type>
  895. <SubType>Integer64</SubType>
  896. </PropertyDefn>
  897. <!-- Datum vzniku -->
  898. <PropertyDefn>
  899. <Name>DatumVzniku</Name>
  900. <ElementPath>DatumVzniku</ElementPath>
  901. <Type>String</Type>
  902. <Width>19</Width>
  903. </PropertyDefn>
  904. </GMLFeatureClass>
  905. <!-- MOP -->
  906. <GMLFeatureClass>
  907. <Name>Mop</Name>
  908. <ElementPath>Data|Mop|Mop</ElementPath>
  909. <SRSName>urn:ogc:def:crs:EPSG::5514</SRSName>
  910. <!-- Geometrie definičního bodu MOP -->
  911. <GeomPropertyDefn>
  912. <Name>DefinicniBod</Name>
  913. <ElementPath>Geometrie|DefinicniBod</ElementPath>
  914. <Type>Point</Type>
  915. </GeomPropertyDefn>
  916. <!-- Originální geometrie hranice MOP -->
  917. <GeomPropertyDefn>
  918. <Name>OriginalniHranice</Name>
  919. <ElementPath>Geometrie|OriginalniHranice</ElementPath>
  920. <Type>MultiPolygon</Type>
  921. </GeomPropertyDefn>
  922. <!-- Kód MOP -->
  923. <PropertyDefn>
  924. <Name>Kod</Name>
  925. <ElementPath>Kod</ElementPath>
  926. <Type>Integer</Type>
  927. </PropertyDefn>
  928. <!-- Název MOP -->
  929. <PropertyDefn>
  930. <Name>Nazev</Name>
  931. <ElementPath>Nazev</ElementPath>
  932. <Type>String</Type>
  933. <Width>32</Width>
  934. </PropertyDefn>
  935. <!-- Identifikátor nesprávnosti na prvku -->
  936. <PropertyDefn>
  937. <Name>Nespravny</Name>
  938. <ElementPath>Nespravny</ElementPath>
  939. <Type>String</Type>
  940. <Width>5</Width>
  941. </PropertyDefn>
  942. <!-- Nadřazená obec -->
  943. <PropertyDefn>
  944. <Name>ObecKod</Name>
  945. <ElementPath>Obec|Kod</ElementPath>
  946. <Type>Integer</Type>
  947. </PropertyDefn>
  948. <!-- Začátek platnosti -->
  949. <PropertyDefn>
  950. <Name>PlatiOd</Name>
  951. <ElementPath>PlatiOd</ElementPath>
  952. <Type>String</Type>
  953. <Width>19</Width>
  954. </PropertyDefn>
  955. <!-- Konec platnosti -->
  956. <PropertyDefn>
  957. <Name>PlatiDo</Name>
  958. <ElementPath>PlatiDo</ElementPath>
  959. <Type>String</Type>
  960. <Width>19</Width>
  961. </PropertyDefn>
  962. <!-- ID transakce v RUIAN -->
  963. <PropertyDefn>
  964. <Name>IdTransakce</Name>
  965. <ElementPath>IdTransakce</ElementPath>
  966. <Type>Integer</Type>
  967. <SubType>Integer64</SubType>
  968. </PropertyDefn>
  969. <!-- ID návrhu změn v ISUI -->
  970. <PropertyDefn>
  971. <Name>GlobalniIdNavrhuZmeny</Name>
  972. <ElementPath>GlobalniIdNavrhuZmeny</ElementPath>
  973. <Type>Integer</Type>
  974. <SubType>Integer64</SubType>
  975. </PropertyDefn>
  976. <!-- Datum vzniku -->
  977. <PropertyDefn>
  978. <Name>DatumVzniku</Name>
  979. <ElementPath>DatumVzniku</ElementPath>
  980. <Type>String</Type>
  981. <Width>19</Width>
  982. </PropertyDefn>
  983. </GMLFeatureClass>
  984. <!-- MOMC -->
  985. <GMLFeatureClass>
  986. <Name>Momc</Name>
  987. <ElementPath>Data|Momc|Momc</ElementPath>
  988. <SRSName>urn:ogc:def:crs:EPSG::5514</SRSName>
  989. <!-- Geometrie definičního bodu MOMC -->
  990. <GeomPropertyDefn>
  991. <Name>DefinicniBod</Name>
  992. <ElementPath>Geometrie|DefinicniBod</ElementPath>
  993. <Type>Point</Type>
  994. </GeomPropertyDefn>
  995. <!-- Originální geometrie hranice MOMC -->
  996. <GeomPropertyDefn>
  997. <Name>OriginalniHranice</Name>
  998. <ElementPath>Geometrie|OriginalniHranice</ElementPath>
  999. <Type>MultiPolygon</Type>
  1000. </GeomPropertyDefn>
  1001. <!-- Kód MOMC -->
  1002. <PropertyDefn>
  1003. <Name>Kod</Name>
  1004. <ElementPath>Kod</ElementPath>
  1005. <Type>Integer</Type>
  1006. </PropertyDefn>
  1007. <!-- Název MOMC -->
  1008. <PropertyDefn>
  1009. <Name>Nazev</Name>
  1010. <ElementPath>Nazev</ElementPath>
  1011. <Type>String</Type>
  1012. <Width>48</Width>
  1013. </PropertyDefn>
  1014. <!-- Identifikátor nesprávnosti na prvku -->
  1015. <PropertyDefn>
  1016. <Name>Nespravny</Name>
  1017. <ElementPath>Nespravny</ElementPath>
  1018. <Type>String</Type>
  1019. <Width>5</Width>
  1020. </PropertyDefn>
  1021. <!-- Nadřazená MOP -->
  1022. <PropertyDefn>
  1023. <Name>MopKod</Name>
  1024. <ElementPath>Mop|Kod</ElementPath>
  1025. <Type>Integer</Type>
  1026. </PropertyDefn>
  1027. <!-- Nadřazená obec -->
  1028. <PropertyDefn>
  1029. <Name>ObecKod</Name>
  1030. <ElementPath>Obec|Kod</ElementPath>
  1031. <Type>Integer</Type>
  1032. </PropertyDefn>
  1033. <!-- Nadřazený správní obvod -->
  1034. <PropertyDefn>
  1035. <Name>SpravniObvodKod</Name>
  1036. <ElementPath>SpravniObvod|Kod</ElementPath>
  1037. <Type>Integer</Type>
  1038. </PropertyDefn>
  1039. <!-- Začátek platnosti -->
  1040. <PropertyDefn>
  1041. <Name>PlatiOd</Name>
  1042. <ElementPath>PlatiOd</ElementPath>
  1043. <Type>String</Type>
  1044. <Width>19</Width>
  1045. </PropertyDefn>
  1046. <!-- Konec platnosti -->
  1047. <PropertyDefn>
  1048. <Name>PlatiDo</Name>
  1049. <ElementPath>PlatiDo</ElementPath>
  1050. <Type>String</Type>
  1051. <Width>19</Width>
  1052. </PropertyDefn>
  1053. <!-- ID transakce v RUIAN -->
  1054. <PropertyDefn>
  1055. <Name>IdTransakce</Name>
  1056. <ElementPath>IdTransakce</ElementPath>
  1057. <Type>Integer</Type>
  1058. <SubType>Integer64</SubType>
  1059. </PropertyDefn>
  1060. <!-- ID návrhu změn v ISUI -->
  1061. <PropertyDefn>
  1062. <Name>GlobalniIdNavrhuZmeny</Name>
  1063. <ElementPath>GlobalniIdNavrhuZmeny</ElementPath>
  1064. <Type>Integer</Type>
  1065. <SubType>Integer64</SubType>
  1066. </PropertyDefn>
  1067. <!-- Text popisující vlajku MOMC -->
  1068. <PropertyDefn>
  1069. <Name>VlajkaText</Name>
  1070. <ElementPath>VlajkaText</ElementPath>
  1071. <Type>String</Type>
  1072. <Width>4000</Width>
  1073. </PropertyDefn>
  1074. <!-- Obrázek vlajky MOMC -->
  1075. <PropertyDefn>
  1076. <Name>VlajkaObrazek</Name>
  1077. <ElementPath>VlajkaObrazek</ElementPath>
  1078. <Type>Complex</Type> <!-- ??? -->
  1079. </PropertyDefn>
  1080. <!-- Mluvnické charakteristiky 2 až 7 pád -->
  1081. <PropertyDefn>
  1082. <Name>MluvnickeCharakteristikyPad2</Name>
  1083. <ElementPath>MluvnickeCharakteristiky|Pad2</ElementPath>
  1084. <Type>String</Type>
  1085. <Width>48</Width>
  1086. </PropertyDefn>
  1087. <PropertyDefn>
  1088. <Name>MluvnickeCharakteristikyPad3</Name>
  1089. <ElementPath>MluvnickeCharakteristiky|Pad3</ElementPath>
  1090. <Type>String</Type>
  1091. <Width>48</Width>
  1092. </PropertyDefn>
  1093. <PropertyDefn>
  1094. <Name>MluvnickeCharakteristikyPad4</Name>
  1095. <ElementPath>MluvnickeCharakteristiky|Pad4</ElementPath>
  1096. <Type>String</Type>
  1097. <Width>48</Width>
  1098. </PropertyDefn>
  1099. <PropertyDefn>
  1100. <Name>MluvnickeCharakteristikyPad6</Name>
  1101. <ElementPath>MluvnickeCharakteristiky|Pad6</ElementPath>
  1102. <Type>String</Type>
  1103. <Width>48</Width>
  1104. </PropertyDefn>
  1105. <PropertyDefn>
  1106. <Name>MluvnickeCharakteristikyPad7</Name>
  1107. <ElementPath>MluvnickeCharakteristiky|Pad7</ElementPath>
  1108. <Type>String</Type>
  1109. <Width>48</Width>
  1110. </PropertyDefn>
  1111. <!-- Text popisující znak MOMC -->
  1112. <PropertyDefn>
  1113. <Name>ZnakText</Name>
  1114. <ElementPath>ZnakText</ElementPath>
  1115. <Type>String</Type>
  1116. <Width>4000</Width>
  1117. </PropertyDefn>
  1118. <!-- Obrázek znaku MOMC -->
  1119. <PropertyDefn>
  1120. <Name>ZnakObrazek</Name>
  1121. <ElementPath>ZnakObrazek</ElementPath>
  1122. <Type>Complex</Type> <!-- ??? -->
  1123. </PropertyDefn>
  1124. <!-- Datum vzniku -->
  1125. <PropertyDefn>
  1126. <Name>DatumVzniku</Name>
  1127. <ElementPath>DatumVzniku</ElementPath>
  1128. <Type>String</Type>
  1129. <Width>19</Width>
  1130. </PropertyDefn>
  1131. </GMLFeatureClass>
  1132. <!-- CastiObci -->
  1133. <GMLFeatureClass>
  1134. <Name>CastiObci</Name>
  1135. <ElementPath>Data|CastiObci|CastObce</ElementPath>
  1136. <SRSName>urn:ogc:def:crs:EPSG::5514</SRSName>
  1137. <!-- Geometrie definičního bodu části obce -->
  1138. <GeomPropertyDefn>
  1139. <Name>DefinicniBod</Name>
  1140. <ElementPath>Geometrie|DefinicniBod</ElementPath>
  1141. <Type>Point</Type>
  1142. </GeomPropertyDefn>
  1143. <!-- Kód části obce -->
  1144. <PropertyDefn>
  1145. <Name>Kod</Name>
  1146. <ElementPath>Kod</ElementPath>
  1147. <Type>Integer</Type>
  1148. </PropertyDefn>
  1149. <!-- Název části obce -->
  1150. <PropertyDefn>
  1151. <Name>Nazev</Name>
  1152. <ElementPath>Nazev</ElementPath>
  1153. <Type>String</Type>
  1154. <Width>48</Width>
  1155. </PropertyDefn>
  1156. <!-- Identifikátor nesprávnosti na prvku -->
  1157. <PropertyDefn>
  1158. <Name>Nespravny</Name>
  1159. <ElementPath>Nespravny</ElementPath>
  1160. <Type>String</Type>
  1161. <Width>5</Width>
  1162. </PropertyDefn>
  1163. <!-- Nadřazená obec -->
  1164. <PropertyDefn>
  1165. <Name>ObecKod</Name>
  1166. <ElementPath>Obec|Kod</ElementPath>
  1167. <Type>Integer</Type>
  1168. </PropertyDefn>
  1169. <!-- Začátek platnosti -->
  1170. <PropertyDefn>
  1171. <Name>PlatiOd</Name>
  1172. <ElementPath>PlatiOd</ElementPath>
  1173. <Type>String</Type>
  1174. <Width>19</Width>
  1175. </PropertyDefn>
  1176. <!-- Konec platnosti -->
  1177. <PropertyDefn>
  1178. <Name>PlatiDo</Name>
  1179. <ElementPath>PlatiDo</ElementPath>
  1180. <Type>String</Type>
  1181. <Width>19</Width>
  1182. </PropertyDefn>
  1183. <!-- ID transakce v RUIAN -->
  1184. <PropertyDefn>
  1185. <Name>IdTransakce</Name>
  1186. <ElementPath>IdTransakce</ElementPath>
  1187. <Type>Integer</Type>
  1188. <SubType>Integer64</SubType>
  1189. </PropertyDefn>
  1190. <!-- ID návrhu změn v ISUI -->
  1191. <PropertyDefn>
  1192. <Name>GlobalniIdNavrhuZmeny</Name>
  1193. <ElementPath>GlobalniIdNavrhuZmeny</ElementPath>
  1194. <Type>Integer</Type>
  1195. <SubType>Integer64</SubType>
  1196. </PropertyDefn>
  1197. <!-- Mluvnické charakteristiky 2 až 7 pád -->
  1198. <PropertyDefn>
  1199. <Name>MluvnickeCharakteristikyPad2</Name>
  1200. <ElementPath>MluvnickeCharakteristiky|Pad2</ElementPath>
  1201. <Type>String</Type>
  1202. <Width>48</Width>
  1203. </PropertyDefn>
  1204. <PropertyDefn>
  1205. <Name>MluvnickeCharakteristikyPad3</Name>
  1206. <ElementPath>MluvnickeCharakteristiky|Pad3</ElementPath>
  1207. <Type>String</Type>
  1208. <Width>48</Width>
  1209. </PropertyDefn>
  1210. <PropertyDefn>
  1211. <Name>MluvnickeCharakteristikyPad4</Name>
  1212. <ElementPath>MluvnickeCharakteristiky|Pad4</ElementPath>
  1213. <Type>String</Type>
  1214. <Width>48</Width>
  1215. </PropertyDefn>
  1216. <PropertyDefn>
  1217. <Name>MluvnickeCharakteristikyPad6</Name>
  1218. <ElementPath>MluvnickeCharakteristiky|Pad6</ElementPath>
  1219. <Type>String</Type>
  1220. <Width>48</Width>
  1221. </PropertyDefn>
  1222. <PropertyDefn>
  1223. <Name>MluvnickeCharakteristikyPad7</Name>
  1224. <ElementPath>MluvnickeCharakteristiky|Pad7</ElementPath>
  1225. <Type>String</Type>
  1226. <Width>48</Width>
  1227. </PropertyDefn>
  1228. <!-- Datum vzniku -->
  1229. <PropertyDefn>
  1230. <Name>DatumVzniku</Name>
  1231. <ElementPath>DatumVzniku</ElementPath>
  1232. <Type>String</Type>
  1233. <Width>19</Width>
  1234. </PropertyDefn>
  1235. </GMLFeatureClass>
  1236. <!-- Katastralní území -->
  1237. <GMLFeatureClass>
  1238. <Name>KatastralniUzemi</Name>
  1239. <ElementPath>Data|KatastralniUzemi|KatastralniUzemi</ElementPath>
  1240. <SRSName>urn:ogc:def:crs:EPSG::5514</SRSName>
  1241. <!-- Geometrie definičního bodu katastrálního území -->
  1242. <GeomPropertyDefn>
  1243. <Name>DefinicniBod</Name>
  1244. <ElementPath>Geometrie|DefinicniBod</ElementPath>
  1245. <Type>MultiPoint</Type>
  1246. </GeomPropertyDefn>
  1247. <!-- Originální geometrie hranice katastrálního území -->
  1248. <GeomPropertyDefn>
  1249. <Name>OriginalniHranice</Name>
  1250. <ElementPath>Geometrie|OriginalniHranice</ElementPath>
  1251. <Type>MultiPolygon</Type>
  1252. </GeomPropertyDefn>
  1253. <!-- Generalizovaná geometrie hranice katastrálního území (stupeň generalizace 2) -->
  1254. <GeomPropertyDefn>
  1255. <Name>GeneralizovaneHranice</Name>
  1256. <ElementPath>Geometrie|GeneralizovaneHranice2</ElementPath>
  1257. <Type>MultiPolygon</Type>
  1258. </GeomPropertyDefn>
  1259. <!-- Kód katastrálního území -->
  1260. <PropertyDefn>
  1261. <Name>Kod</Name>
  1262. <ElementPath>Kod</ElementPath>
  1263. <Type>Integer</Type>
  1264. </PropertyDefn>
  1265. <!-- Název katastrálního území -->
  1266. <PropertyDefn>
  1267. <Name>Nazev</Name>
  1268. <ElementPath>Nazev</ElementPath>
  1269. <Type>String</Type>
  1270. <Width>48</Width>
  1271. </PropertyDefn>
  1272. <!-- Identifikátor nesprávnosti na prvku -->
  1273. <PropertyDefn>
  1274. <Name>Nespravny</Name>
  1275. <ElementPath>Nespravny</ElementPath>
  1276. <Type>String</Type>
  1277. <Width>5</Width>
  1278. </PropertyDefn>
  1279. <!-- Příznak existence digitální mapy -->
  1280. <PropertyDefn>
  1281. <Name>ExistujeDigitalniMapa</Name>
  1282. <ElementPath>ExistujeDigitalniMapa</ElementPath>
  1283. <Type>String</Type>
  1284. <Width>5</Width>
  1285. </PropertyDefn>
  1286. <!-- Nadřazená obec -->
  1287. <PropertyDefn>
  1288. <Name>ObecKod</Name>
  1289. <ElementPath>Obec|Kod</ElementPath>
  1290. <Type>Integer</Type>
  1291. </PropertyDefn>
  1292. <!-- Začátek platnosti -->
  1293. <PropertyDefn>
  1294. <Name>PlatiOd</Name>
  1295. <ElementPath>PlatiOd</ElementPath>
  1296. <Type>String</Type>
  1297. <Width>19</Width>
  1298. </PropertyDefn>
  1299. <!-- Konec platnosti -->
  1300. <PropertyDefn>
  1301. <Name>PlatiDo</Name>
  1302. <ElementPath>PlatiDo</ElementPath>
  1303. <Type>String</Type>
  1304. <Width>19</Width>
  1305. </PropertyDefn>
  1306. <!-- ID transakce v RUIAN -->
  1307. <PropertyDefn>
  1308. <Name>IdTransakce</Name>
  1309. <ElementPath>IdTransakce</ElementPath>
  1310. <Type>Integer</Type>
  1311. <SubType>Integer64</SubType>
  1312. </PropertyDefn>
  1313. <!-- ID návrhu změn v ISUI -->
  1314. <PropertyDefn>
  1315. <Name>GlobalniIdNavrhuZmeny</Name>
  1316. <ElementPath>GlobalniIdNavrhuZmeny</ElementPath>
  1317. <Type>Integer</Type>
  1318. <SubType>Integer64</SubType>
  1319. </PropertyDefn>
  1320. <!-- ID řízení v ISKN -->
  1321. <PropertyDefn>
  1322. <Name>RizeniId</Name>
  1323. <ElementPath>RizeniId</ElementPath>
  1324. <Type>Integer</Type>
  1325. <SubType>Integer64</SubType>
  1326. </PropertyDefn>
  1327. <!-- Mluvnické charakteristiky 2 až 7 pád -->
  1328. <PropertyDefn>
  1329. <Name>MluvnickeCharakteristikyPad2</Name>
  1330. <ElementPath>MluvnickeCharakteristiky|Pad2</ElementPath>
  1331. <Type>String</Type>
  1332. <Width>48</Width>
  1333. </PropertyDefn>
  1334. <PropertyDefn>
  1335. <Name>MluvnickeCharakteristikyPad3</Name>
  1336. <ElementPath>MluvnickeCharakteristiky|Pad3</ElementPath>
  1337. <Type>String</Type>
  1338. <Width>48</Width>
  1339. </PropertyDefn>
  1340. <PropertyDefn>
  1341. <Name>MluvnickeCharakteristikyPad4</Name>
  1342. <ElementPath>MluvnickeCharakteristiky|Pad4</ElementPath>
  1343. <Type>String</Type>
  1344. <Width>48</Width>
  1345. </PropertyDefn>
  1346. <PropertyDefn>
  1347. <Name>MluvnickeCharakteristikyPad6</Name>
  1348. <ElementPath>MluvnickeCharakteristiky|Pad6</ElementPath>
  1349. <Type>String</Type>
  1350. <Width>48</Width>
  1351. </PropertyDefn>
  1352. <PropertyDefn>
  1353. <Name>MluvnickeCharakteristikyPad7</Name>
  1354. <ElementPath>MluvnickeCharakteristiky|Pad7</ElementPath>
  1355. <Type>String</Type>
  1356. <Width>48</Width>
  1357. </PropertyDefn>
  1358. <!-- Datum vzniku -->
  1359. <PropertyDefn>
  1360. <Name>DatumVzniku</Name>
  1361. <ElementPath>DatumVzniku</ElementPath>
  1362. <Type>String</Type>
  1363. <Width>19</Width>
  1364. </PropertyDefn>
  1365. </GMLFeatureClass>
  1366. <!-- ZSJ -->
  1367. <GMLFeatureClass>
  1368. <Name>Zsj</Name>
  1369. <ElementPath>Data|Zsj|Zsj</ElementPath>
  1370. <SRSName>urn:ogc:def:crs:EPSG::5514</SRSName>
  1371. <!-- Geometrie definičního bodu ZSJ -->
  1372. <GeomPropertyDefn>
  1373. <Name>DefinicniBod</Name>
  1374. <ElementPath>Geometrie|DefinicniBod</ElementPath>
  1375. <Type>MultiPoint</Type>
  1376. </GeomPropertyDefn>
  1377. <!-- Originální geometrie hranice ZSJ -->
  1378. <GeomPropertyDefn>
  1379. <Name>OriginalniHranice</Name>
  1380. <ElementPath>Geometrie|OriginalniHranice</ElementPath>
  1381. <Type>MultiPolygon</Type>
  1382. </GeomPropertyDefn>
  1383. <!-- Kód ZSJ -->
  1384. <PropertyDefn>
  1385. <Name>Kod</Name>
  1386. <ElementPath>Kod</ElementPath>
  1387. <Type>Integer</Type>
  1388. </PropertyDefn>
  1389. <!-- Název ZSJ -->
  1390. <PropertyDefn>
  1391. <Name>Nazev</Name>
  1392. <ElementPath>Nazev</ElementPath>
  1393. <Type>String</Type>
  1394. <Width>48</Width>
  1395. </PropertyDefn>
  1396. <!-- Identifikátor nesprávnosti na prvku -->
  1397. <PropertyDefn>
  1398. <Name>Nespravny</Name>
  1399. <ElementPath>Nespravny</ElementPath>
  1400. <Type>String</Type>
  1401. <Width>5</Width>
  1402. </PropertyDefn>
  1403. <!-- Nadřazené katastrální území -->
  1404. <PropertyDefn>
  1405. <Name>KatastralniUzemiKod</Name>
  1406. <ElementPath>KatastralniUzemi|Kod</ElementPath>
  1407. <Type>Integer</Type>
  1408. </PropertyDefn>
  1409. <!-- Začátek platnosti -->
  1410. <PropertyDefn>
  1411. <Name>PlatiOd</Name>
  1412. <ElementPath>PlatiOd</ElementPath>
  1413. <Type>String</Type>
  1414. <Width>19</Width>
  1415. </PropertyDefn>
  1416. <!-- Konec platnosti -->
  1417. <PropertyDefn>
  1418. <Name>PlatiDo</Name>
  1419. <ElementPath>PlatiDo</ElementPath>
  1420. <Type>String</Type>
  1421. <Width>19</Width>
  1422. </PropertyDefn>
  1423. <!-- ID transakce v RUIAN -->
  1424. <PropertyDefn>
  1425. <Name>IdTransakce</Name>
  1426. <ElementPath>IdTransakce</ElementPath>
  1427. <Type>Integer</Type>
  1428. <SubType>Integer64</SubType>
  1429. </PropertyDefn>
  1430. <!-- ID návrhu změn v ISUI -->
  1431. <PropertyDefn>
  1432. <Name>GlobalniIdNavrhuZmeny</Name>
  1433. <ElementPath>GlobalniIdNavrhuZmeny</ElementPath>
  1434. <Type>Integer</Type>
  1435. <SubType>Integer64</SubType>
  1436. </PropertyDefn>
  1437. <!-- Mluvnické charakteristiky 2 až 7 pád -->
  1438. <PropertyDefn>
  1439. <Name>MluvnickeCharakteristikyPad2</Name>
  1440. <ElementPath>MluvnickeCharakteristiky|Pad2</ElementPath>
  1441. <Type>String</Type>
  1442. <Width>48</Width>
  1443. </PropertyDefn>
  1444. <PropertyDefn>
  1445. <Name>MluvnickeCharakteristikyPad3</Name>
  1446. <ElementPath>MluvnickeCharakteristiky|Pad3</ElementPath>
  1447. <Type>String</Type>
  1448. <Width>48</Width>
  1449. </PropertyDefn>
  1450. <PropertyDefn>
  1451. <Name>MluvnickeCharakteristikyPad4</Name>
  1452. <ElementPath>MluvnickeCharakteristiky|Pad4</ElementPath>
  1453. <Type>String</Type>
  1454. <Width>48</Width>
  1455. </PropertyDefn>
  1456. <PropertyDefn>
  1457. <Name>MluvnickeCharakteristikyPad6</Name>
  1458. <ElementPath>MluvnickeCharakteristiky|Pad6</ElementPath>
  1459. <Type>String</Type>
  1460. <Width>48</Width>
  1461. </PropertyDefn>
  1462. <PropertyDefn>
  1463. <Name>MluvnickeCharakteristikyPad7</Name>
  1464. <ElementPath>MluvnickeCharakteristiky|Pad7</ElementPath>
  1465. <Type>String</Type>
  1466. <Width>48</Width>
  1467. </PropertyDefn>
  1468. <!-- Výměra ZSJ v metrech čtverečních -->
  1469. <PropertyDefn>
  1470. <Name>Vymera</Name>
  1471. <ElementPath>Vymera</ElementPath>
  1472. <Type>Integer</Type>
  1473. <SubType>Integer64</SubType>
  1474. </PropertyDefn>
  1475. <!-- Převažující charakter využití ZSJ -->
  1476. <PropertyDefn>
  1477. <Name>CharakterZsjKod</Name>
  1478. <ElementPath>CharakterZsjKod</ElementPath>
  1479. <Type>Integer</Type>
  1480. </PropertyDefn>
  1481. <!-- Datum vzniku -->
  1482. <PropertyDefn>
  1483. <Name>DatumVzniku</Name>
  1484. <ElementPath>DatumVzniku</ElementPath>
  1485. <Type>String</Type>
  1486. <Width>19</Width>
  1487. </PropertyDefn>
  1488. </GMLFeatureClass>
  1489. <!-- Ulice -->
  1490. <GMLFeatureClass>
  1491. <Name>Ulice</Name>
  1492. <ElementPath>Data|Ulice|Ulice</ElementPath>
  1493. <SRSName>urn:ogc:def:crs:EPSG::5514</SRSName>
  1494. <!-- Geometrie definiční čáry ulice -->
  1495. <GeomPropertyDefn>
  1496. <Name>DefinicniCara</Name>
  1497. <ElementPath>Geometrie|DefinicniCara</ElementPath>
  1498. <Type>MultiLineString</Type>
  1499. </GeomPropertyDefn>
  1500. <!-- Kód ulice -->
  1501. <PropertyDefn>
  1502. <Name>Kod</Name>
  1503. <ElementPath>Kod</ElementPath>
  1504. <Type>Integer</Type>
  1505. </PropertyDefn>
  1506. <!-- Název ulice -->
  1507. <PropertyDefn>
  1508. <Name>Nazev</Name>
  1509. <ElementPath>Nazev</ElementPath>
  1510. <Type>String</Type>
  1511. <Width>48</Width>
  1512. </PropertyDefn>
  1513. <!-- Identifikátor nesprávnosti na prvku -->
  1514. <PropertyDefn>
  1515. <Name>Nespravny</Name>
  1516. <ElementPath>Nespravny</ElementPath>
  1517. <Type>String</Type>
  1518. <Width>5</Width>
  1519. </PropertyDefn>
  1520. <!-- Nadřazená obec -->
  1521. <PropertyDefn>
  1522. <Name>ObecKod</Name>
  1523. <ElementPath>Obec|Kod</ElementPath>
  1524. <Type>Integer</Type>
  1525. </PropertyDefn>
  1526. <!-- Začátek platnosti -->
  1527. <PropertyDefn>
  1528. <Name>PlatiOd</Name>
  1529. <ElementPath>PlatiOd</ElementPath>
  1530. <Type>String</Type>
  1531. <Width>19</Width>
  1532. </PropertyDefn>
  1533. <!-- Konec platnosti -->
  1534. <PropertyDefn>
  1535. <Name>PlatiDo</Name>
  1536. <ElementPath>PlatiDo</ElementPath>
  1537. <Type>String</Type>
  1538. <Width>19</Width>
  1539. </PropertyDefn>
  1540. <!-- ID transakce v RUIAN -->
  1541. <PropertyDefn>
  1542. <Name>IdTransakce</Name>
  1543. <ElementPath>IdTransakce</ElementPath>
  1544. <Type>Integer</Type>
  1545. <SubType>Integer64</SubType>
  1546. </PropertyDefn>
  1547. <!-- ID návrhu změn v ISUI -->
  1548. <PropertyDefn>
  1549. <Name>GlobalniIdNavrhuZmeny</Name>
  1550. <ElementPath>GlobalniIdNavrhuZmeny</ElementPath>
  1551. <Type>Integer</Type>
  1552. <SubType>Integer64</SubType>
  1553. </PropertyDefn>
  1554. </GMLFeatureClass>
  1555. <!-- Parcely -->
  1556. <GMLFeatureClass>
  1557. <Name>Parcely</Name>
  1558. <ElementPath>Data|Parcely|Parcela</ElementPath>
  1559. <SRSName>urn:ogc:def:crs:EPSG::5514</SRSName>
  1560. <!-- Geometrie definičního bodu parcely -->
  1561. <GeomPropertyDefn>
  1562. <Name>DefinicniBod</Name>
  1563. <ElementPath>Geometrie|DefinicniBod</ElementPath>
  1564. <Type>Point</Type>
  1565. </GeomPropertyDefn>
  1566. <!-- Originální geometrie hranice parcely -->
  1567. <GeomPropertyDefn>
  1568. <Name>OriginalniHranice</Name>
  1569. <ElementPath>Geometrie|OriginalniHranice</ElementPath>
  1570. <Type>Polygon</Type>
  1571. </GeomPropertyDefn>
  1572. <!-- Originální geometrie hranice parcely (Ompv) -->
  1573. <GeomPropertyDefn>
  1574. <Name>OriginalniHraniceOmpv</Name>
  1575. <ElementPath>Geometrie|OriginalniHraniceOmpv</ElementPath>
  1576. <Type>MultiPolygon</Type>
  1577. </GeomPropertyDefn>
  1578. <!-- Jednoznační identifikátor parcely -->
  1579. <PropertyDefn>
  1580. <Name>Id</Name>
  1581. <ElementPath>Id</ElementPath>
  1582. <Type>Integer</Type>
  1583. <SubType>Integer64</SubType>
  1584. </PropertyDefn>
  1585. <!-- Identifikátor nesprávnosti na prvku -->
  1586. <PropertyDefn>
  1587. <Name>Nespravny</Name>
  1588. <ElementPath>Nespravny</ElementPath>
  1589. <Type>String</Type>
  1590. <Width>5</Width>
  1591. </PropertyDefn>
  1592. <!-- Kmenové parcelní číslo -->
  1593. <PropertyDefn>
  1594. <Name>KmenoveCislo</Name>
  1595. <ElementPath>KmenoveCislo</ElementPath>
  1596. <Type>Integer</Type>
  1597. </PropertyDefn>
  1598. <!-- Poddělení čísla parcely -->
  1599. <PropertyDefn>
  1600. <Name>PododdeleniCisla</Name>
  1601. <ElementPath>PododdeleniCisla</ElementPath>
  1602. <Type>Integer</Type>
  1603. </PropertyDefn>
  1604. <!-- Výměra parcely -->
  1605. <PropertyDefn>
  1606. <Name>VymeraParcely</Name>
  1607. <ElementPath>VymeraParcely</ElementPath>
  1608. <Type>Integer</Type>
  1609. <SubType>Integer64</SubType>
  1610. </PropertyDefn>
  1611. <!-- Způsob využití pozemku -->
  1612. <PropertyDefn>
  1613. <Name>ZpusobyVyuzitiPozemku</Name>
  1614. <ElementPath>ZpusobyVyuzitiPozemku</ElementPath>
  1615. <Type>Integer</Type>
  1616. </PropertyDefn>
  1617. <!-- Rozlišení druhu číslování parcely -->
  1618. <PropertyDefn>
  1619. <Name>DruhCislovaniKod</Name>
  1620. <ElementPath>DruhCislovaniKod</ElementPath>
  1621. <Type>Integer</Type>
  1622. </PropertyDefn>
  1623. <!-- Kód druhu pozemku -->
  1624. <PropertyDefn>
  1625. <Name>DruhPozemkuKod</Name>
  1626. <ElementPath>DruhPozemkuKod</ElementPath>
  1627. <Type>Integer</Type>
  1628. </PropertyDefn>
  1629. <!-- Nadřazené katastrální území -->
  1630. <PropertyDefn>
  1631. <Name>KatastralniUzemiKod</Name>
  1632. <ElementPath>KatastralniUzemi|Kod</ElementPath>
  1633. <Type>Integer</Type>
  1634. </PropertyDefn>
  1635. <!-- Začátek platnosti -->
  1636. <PropertyDefn>
  1637. <Name>PlatiOd</Name>
  1638. <ElementPath>PlatiOd</ElementPath>
  1639. <Type>String</Type>
  1640. <Width>19</Width>
  1641. </PropertyDefn>
  1642. <!-- Konec platnosti -->
  1643. <PropertyDefn>
  1644. <Name>PlatiDo</Name>
  1645. <ElementPath>PlatiDo</ElementPath>
  1646. <Type>String</Type>
  1647. <Width>19</Width>
  1648. </PropertyDefn>
  1649. <!-- ID transakce v RUIAN -->
  1650. <PropertyDefn>
  1651. <Name>IdTransakce</Name>
  1652. <ElementPath>IdTransakce</ElementPath>
  1653. <Type>Integer</Type>
  1654. <SubType>Integer64</SubType>
  1655. </PropertyDefn>
  1656. <!-- ID řízení v ISKN -->
  1657. <PropertyDefn>
  1658. <Name>RizeniId</Name>
  1659. <ElementPath>RizeniId</ElementPath>
  1660. <Type>Integer</Type>
  1661. <SubType>Integer64</SubType>
  1662. </PropertyDefn>
  1663. <!-- Bonitované díly parcely - výměra v metrech čtverečných -->
  1664. <PropertyDefn>
  1665. <Name>BonitovanyDilVymera</Name>
  1666. <ElementPath>BonitovaneDily|BonitovanyDil|Vymera</ElementPath>
  1667. <Type>IntegerList</Type>
  1668. </PropertyDefn>
  1669. <!-- Kód bonitovaných půdně ekologických jednotek -->
  1670. <PropertyDefn>
  1671. <Name>BonitovanyDilBonitovanaJednotkaKod</Name>
  1672. <ElementPath>BonitovaneDily|BonitovanyDil|BonitovanaJednotkaKod</ElementPath>
  1673. <Type>IntegerList</Type>
  1674. </PropertyDefn>
  1675. <!-- Bonitované díly parcely - ID transakce v RUIAN -->
  1676. <PropertyDefn>
  1677. <Name>BonitovanyDilIdTranskace</Name>
  1678. <ElementPath>BonitovaneDily|BonitovanyDil|IdTranskace</ElementPath>
  1679. <Type>IntegerList</Type>
  1680. <SubType>Integer64</SubType>
  1681. </PropertyDefn>
  1682. <!-- Bonitované díly parcely - ID řízení v ISKN -->
  1683. <PropertyDefn>
  1684. <Name>BonitovaneDilRizeniId</Name>
  1685. <ElementPath>BonitovaneDily|BonitovanyDil|RizeniId</ElementPath>
  1686. <Type>IntegerList</Type>
  1687. <SubType>Integer64</SubType>
  1688. </PropertyDefn>
  1689. <!-- Způsob ochrany pozemku - kód ochrany -->
  1690. <PropertyDefn>
  1691. <Name>ZpusobOchranyKod</Name>
  1692. <ElementPath>ZpusobyOchranyPozemku|ZpusobOchrany|Kod</ElementPath>
  1693. <Type>IntegerList</Type>
  1694. </PropertyDefn>
  1695. <!-- Způsob ochrany pozemku - typ ochrany -->
  1696. <PropertyDefn>
  1697. <Name>ZpusobOchranyTypOchranyKod</Name>
  1698. <ElementPath>ZpusobyOchranyPozemku|ZpusobOchrany|TypOchranyKod</ElementPath>
  1699. <Type>IntegerList</Type>
  1700. </PropertyDefn>
  1701. <!-- Způsob ochrany pozemku - ID transakce v RUIAN -->
  1702. <PropertyDefn>
  1703. <Name>ZpusobOchranyIdTransakce</Name>
  1704. <ElementPath>ZpusobyOchranyPozemku|ZpusobOchrany|IdTransakce</ElementPath>
  1705. <Type>IntegerList</Type>
  1706. </PropertyDefn>
  1707. <!-- Způsob ochrany pozemku - ID řízení v ISKN -->
  1708. <PropertyDefn>
  1709. <Name>ZpusobOchranyRizeniId</Name>
  1710. <ElementPath>ZpusobyOchranyPozemku|ZpusobOchrany|RizeniId</ElementPath>
  1711. <Type>IntegerList</Type>
  1712. <SubType>Integer64</SubType>
  1713. </PropertyDefn>
  1714. </GMLFeatureClass>
  1715. <!-- Stavební objekty -->
  1716. <GMLFeatureClass>
  1717. <Name>StavebniObjekty</Name>
  1718. <ElementPath>Data|StavebniObjekty|StavebniObjekt</ElementPath>
  1719. <SRSName>urn:ogc:def:crs:EPSG::5514</SRSName>
  1720. <!-- Geometrie definičního bodu stavebního objektu -->
  1721. <GeomPropertyDefn>
  1722. <Name>DefinicniBod</Name>
  1723. <ElementPath>Geometrie|DefinicniBod</ElementPath>
  1724. <Type>Point</Type>
  1725. </GeomPropertyDefn>
  1726. <!-- Originální geometrie hranice stavebního objektu -->
  1727. <GeomPropertyDefn>
  1728. <Name>OriginalniHranice</Name>
  1729. <ElementPath>Geometrie|OriginalniHranice</ElementPath>
  1730. <Type>MultiPolygon</Type>
  1731. </GeomPropertyDefn>
  1732. <!-- Originální geometrie hranice stavebního objektu (Ompv) -->
  1733. <GeomPropertyDefn>
  1734. <Name>OriginalniHraniceOmpv</Name>
  1735. <ElementPath>Geometrie|OriginalniHraniceOmpv</ElementPath>
  1736. <Type>MultiPolygon</Type>
  1737. </GeomPropertyDefn>
  1738. <!-- Kód stavebního objektu -->
  1739. <PropertyDefn>
  1740. <Name>Kod</Name>
  1741. <ElementPath>Kod</ElementPath>
  1742. <Type>Integer</Type>
  1743. </PropertyDefn>
  1744. <!-- Identifikátor nesprávnosti na prvku -->
  1745. <PropertyDefn>
  1746. <Name>Nespravny</Name>
  1747. <ElementPath>Nespravny</ElementPath>
  1748. <Type>String</Type>
  1749. <Width>5</Width>
  1750. </PropertyDefn>
  1751. <!-- Seznam čísel domovních stavebního objektu -->
  1752. <PropertyDefn>
  1753. <Name>CisloDomovni</Name>
  1754. <ElementPath>CislaDomovni|CisloDomovni</ElementPath>
  1755. <Type>IntegerList</Type>
  1756. </PropertyDefn>
  1757. <!-- Jedna z parcel, na nichž je stavební objekt postaven, zvolená
  1758. pro identifikaci objektu (tzv. definiční parcela) -->
  1759. <PropertyDefn>
  1760. <Name>IdentifikacniParcelaId</Name>
  1761. <ElementPath>IdentifikacniParcela|Id</ElementPath>
  1762. <Type>Integer</Type>
  1763. <SubType>Integer64</SubType>
  1764. </PropertyDefn>
  1765. <!-- Typ stavebního objektu -->
  1766. <PropertyDefn>
  1767. <Name>TypStavebnihoObjektuKod</Name>
  1768. <ElementPath>TypStavebnihoObjektuKod</ElementPath>
  1769. <Type>Integer</Type>
  1770. </PropertyDefn>
  1771. <!-- Způsob využití -->
  1772. <PropertyDefn>
  1773. <Name>ZpusobVyuzitiKod</Name>
  1774. <ElementPath>ZpusobVyuzitiKod</ElementPath>
  1775. <Type>Integer</Type>
  1776. </PropertyDefn>
  1777. <!-- Nadřazená část obce -->
  1778. <PropertyDefn>
  1779. <Name>CastObceKod</Name>
  1780. <ElementPath>CastObce|Kod</ElementPath>
  1781. <Type>Integer</Type>
  1782. </PropertyDefn>
  1783. <!-- Nadřazený MOMC -->
  1784. <PropertyDefn>
  1785. <Name>MomcKod</Name>
  1786. <ElementPath>Momc|Kod</ElementPath>
  1787. <Type>Integer</Type>
  1788. </PropertyDefn>
  1789. <!-- Začátek platnosti -->
  1790. <PropertyDefn>
  1791. <Name>PlatiOd</Name>
  1792. <ElementPath>PlatiOd</ElementPath>
  1793. <Type>String</Type>
  1794. <Width>19</Width>
  1795. </PropertyDefn>
  1796. <!-- Konec platnosti -->
  1797. <PropertyDefn>
  1798. <Name>PlatiDo</Name>
  1799. <ElementPath>PlatiDo</ElementPath>
  1800. <Type>String</Type>
  1801. <Width>19</Width>
  1802. </PropertyDefn>
  1803. <!-- ID transakce v RUIAN -->
  1804. <PropertyDefn>
  1805. <Name>IdTransakce</Name>
  1806. <ElementPath>IdTransakce</ElementPath>
  1807. <Type>Integer</Type>
  1808. <SubType>Integer64</SubType>
  1809. </PropertyDefn>
  1810. <!-- ID návrhu změn v ISUI -->
  1811. <PropertyDefn>
  1812. <Name>GlobalniIdNavrhuZmeny</Name>
  1813. <ElementPath>GlobalniIdNavrhuZmeny</ElementPath>
  1814. <Type>Integer</Type>
  1815. <SubType>Integer64</SubType>
  1816. </PropertyDefn>
  1817. <!-- ID budovy v ISKN -->
  1818. <PropertyDefn>
  1819. <Name>IsknBudovaId</Name>
  1820. <ElementPath>IsknBudovaId</ElementPath>
  1821. <Type>Integer</Type>
  1822. <SubType>Integer64</SubType>
  1823. </PropertyDefn>
  1824. <!-- Datum dokončení stavebního objektu -->
  1825. <PropertyDefn>
  1826. <Name>Dokonceni</Name>
  1827. <ElementPath>Dokonceni</ElementPath>
  1828. <Type>String</Type>
  1829. <Width>19</Width>
  1830. </PropertyDefn>
  1831. <!-- Druh svislé nosné konstrukce -->
  1832. <PropertyDefn>
  1833. <Name>DruhKonstrukceKod</Name>
  1834. <ElementPath>DruhKonstrukceKod</ElementPath>
  1835. <Type>Integer</Type>
  1836. </PropertyDefn>
  1837. <!-- Obestavěný prostor v m3 -->
  1838. <PropertyDefn>
  1839. <Name>ObestavenyProstor</Name>
  1840. <ElementPath>ObestavenyProstor</ElementPath>
  1841. <Type>Integer</Type>
  1842. </PropertyDefn>
  1843. <!-- Počet bytů u stavebního objektu s byty -->
  1844. <PropertyDefn>
  1845. <Name>PocetBytu</Name>
  1846. <ElementPath>PocetBytu</ElementPath>
  1847. <Type>Integer</Type>
  1848. </PropertyDefn>
  1849. <!-- Počet nadzemních a podzemních podlaží -->
  1850. <PropertyDefn>
  1851. <Name>PocetPodlazi</Name>
  1852. <ElementPath>PocetPodlazi</ElementPath>
  1853. <Type>Integer</Type>
  1854. </PropertyDefn>
  1855. <!-- Podlahová plocha v m2 -->
  1856. <PropertyDefn>
  1857. <Name>PodlahovaPlocha</Name>
  1858. <ElementPath>PodlahovaPlocha</ElementPath>
  1859. <Type>Integer</Type>
  1860. </PropertyDefn>
  1861. <!-- Připojení na kanalizační síť -->
  1862. <PropertyDefn>
  1863. <Name>PripojeniKanalizaceKod</Name>
  1864. <ElementPath>PripojeniKanalizaceKod</ElementPath>
  1865. <Type>Integer</Type>
  1866. </PropertyDefn>
  1867. <!-- Připojení na rozvod plynu -->
  1868. <PropertyDefn>
  1869. <Name>PripojeniPlynKod</Name>
  1870. <ElementPath>PripojeniPlynKod</ElementPath>
  1871. <Type>Integer</Type>
  1872. </PropertyDefn>
  1873. <!-- Připojení na vodovod -->
  1874. <PropertyDefn>
  1875. <Name>PripojeniVodovodKod</Name>
  1876. <ElementPath>PripojeniVodovodKod</ElementPath>
  1877. <Type>Integer</Type>
  1878. </PropertyDefn>
  1879. <!-- Vybavení výtahem -->
  1880. <PropertyDefn>
  1881. <Name>VybaveniVytahemKod</Name>
  1882. <ElementPath>VybaveniVytahemKod</ElementPath>
  1883. <Type>Integer</Type>
  1884. </PropertyDefn>
  1885. <!-- Zastavěná plocha v m2 -->
  1886. <PropertyDefn>
  1887. <Name>ZastavenaPlocha</Name>
  1888. <ElementPath>ZastavenaPlocha</ElementPath>
  1889. <Type>Integer</Type>
  1890. </PropertyDefn>
  1891. <!-- Způsob vytápění -->
  1892. <PropertyDefn>
  1893. <Name>ZpusobVytapeniKod</Name>
  1894. <ElementPath>ZpusobVytapeniKod</ElementPath>
  1895. <Type>Integer</Type>
  1896. </PropertyDefn>
  1897. <!-- Způsob ochrany stavebního objektu - kód ochrany -->
  1898. <PropertyDefn>
  1899. <Name>ZpusobOchranyKod</Name>
  1900. <ElementPath>ZpusobyOchrany|ZpusobOchrany|Kod</ElementPath>
  1901. <Type>IntegerList</Type>
  1902. </PropertyDefn>
  1903. <!-- Způsob ochrany stavebního objektu - typ ochrany -->
  1904. <PropertyDefn>
  1905. <Name>ZpusobOchranyTypOchranyKod</Name>
  1906. <ElementPath>ZpusobyOchrany|ZpusobOchrany|TypOchranyKod</ElementPath>
  1907. <Type>IntegerList</Type>
  1908. </PropertyDefn>
  1909. <!-- Způsob ochrany stavebního objektu - ID transakce v RUIAN -->
  1910. <PropertyDefn>
  1911. <Name>ZpusobOchranyIdTransakce</Name>
  1912. <ElementPath>ZpusobyOchrany|ZpusobOchrany|IdTransakce</ElementPath>
  1913. <Type>IntegerList</Type>
  1914. </PropertyDefn>
  1915. <!-- Způsob ochrany stavebního objektu - ID řízení v ISKN -->
  1916. <PropertyDefn>
  1917. <Name>ZpusobOchranyRizeniId</Name>
  1918. <ElementPath>ZpusobyOchrany|ZpusobOchrany|RizeniId</ElementPath>
  1919. <Type>IntegerList</Type>
  1920. <SubType>Integer64</SubType>
  1921. </PropertyDefn>
  1922. <!-- Detailní tecnicko-ekonomické atributy (TEA) -->
  1923. <PropertyDefn>
  1924. <Name>DetailniTEAKod</Name>
  1925. <ElementPath>DetailniTEA|Kod</ElementPath>
  1926. <Type>IntegerList</Type>
  1927. </PropertyDefn>
  1928. </GMLFeatureClass>
  1929. <!-- Adresní místa -->
  1930. <GMLFeatureClass>
  1931. <Name>AdresniMista</Name>
  1932. <ElementPath>Data|AdresniMista|AdresniMisto</ElementPath>
  1933. <SRSName>urn:ogc:def:crs:EPSG::5514</SRSName>
  1934. <!-- Definiční bod typu Adresní bod -->
  1935. <GeomPropertyDefn>
  1936. <Name>AdresniBod</Name>
  1937. <ElementPath>Geometrie|DefinicniBod|AdresniBod</ElementPath>
  1938. <Type>Point</Type>
  1939. </GeomPropertyDefn>
  1940. <!-- Definiční bod typu Přístup pro záchrannou službu -->
  1941. <GeomPropertyDefn>
  1942. <Name>Zachranka</Name>
  1943. <ElementPath>Geometrie|DefinicniBod|Zachranka</ElementPath>
  1944. <Type>Point</Type>
  1945. </GeomPropertyDefn>
  1946. <!-- Definiční bod typu Přístup pro hasiče -->
  1947. <GeomPropertyDefn>
  1948. <Name>Hasici</Name>
  1949. <ElementPath>Geometrie|DefinicniBod|Hasici</ElementPath>
  1950. <Type>Point</Type>
  1951. </GeomPropertyDefn>
  1952. <!-- Kód adresního místa -->
  1953. <PropertyDefn>
  1954. <Name>Kod</Name>
  1955. <ElementPath>Kod</ElementPath>
  1956. <Type>Integer</Type>
  1957. </PropertyDefn>
  1958. <!-- Identifikátor nesprávnosti na prvku -->
  1959. <PropertyDefn>
  1960. <Name>Nespravny</Name>
  1961. <ElementPath>Nespravny</ElementPath>
  1962. <Type>String</Type>
  1963. <Width>5</Width>
  1964. </PropertyDefn>
  1965. <!-- Číslo domovní -->
  1966. <PropertyDefn>
  1967. <Name>CisloDomovni</Name>
  1968. <ElementPath>CisloDomovni</ElementPath>
  1969. <Type>Integer</Type>
  1970. </PropertyDefn>
  1971. <!-- Číselná část čísla orientačního -->
  1972. <PropertyDefn>
  1973. <Name>CisloOrientacni</Name>
  1974. <ElementPath>CisloOrientacni</ElementPath>
  1975. <Type>Integer</Type>
  1976. </PropertyDefn>
  1977. <!-- Koncové písmeno čísla orientačního -->
  1978. <PropertyDefn>
  1979. <Name>CisloOrientacniPismeno</Name>
  1980. <ElementPath>CisloOrientacniPismeno</ElementPath>
  1981. <Type>String</Type>
  1982. <Width>1</Width>
  1983. </PropertyDefn>
  1984. <!-- PSČ adresní pošty -->
  1985. <PropertyDefn>
  1986. <Name>Psc</Name>
  1987. <ElementPath>Psc</ElementPath>
  1988. <Type>Integer</Type>
  1989. </PropertyDefn>
  1990. <!-- Nadřazený stavební objekt -->
  1991. <PropertyDefn>
  1992. <Name>StavebniObjektKod</Name>
  1993. <ElementPath>StavebniObjekt|Kod</ElementPath>
  1994. <Type>Integer</Type>
  1995. </PropertyDefn>
  1996. <!-- Nadřazená ulice -->
  1997. <PropertyDefn>
  1998. <Name>UliceKod</Name>
  1999. <ElementPath>Ulice|Kod</ElementPath>
  2000. <Type>Integer</Type>
  2001. </PropertyDefn>
  2002. <!-- Začátek platnosti -->
  2003. <PropertyDefn>
  2004. <Name>PlatiOd</Name>
  2005. <ElementPath>PlatiOd</ElementPath>
  2006. <Type>String</Type>
  2007. <Width>19</Width>
  2008. </PropertyDefn>
  2009. <!-- Konec platnosti -->
  2010. <PropertyDefn>
  2011. <Name>PlatiDo</Name>
  2012. <ElementPath>PlatiDo</ElementPath>
  2013. <Type>String</Type>
  2014. <Width>19</Width>
  2015. </PropertyDefn>
  2016. <!-- ID transakce v RUIAN -->
  2017. <PropertyDefn>
  2018. <Name>IdTransakce</Name>
  2019. <ElementPath>IdTransakce</ElementPath>
  2020. <Type>Integer</Type>
  2021. <SubType>Integer64</SubType>
  2022. </PropertyDefn>
  2023. <!-- ID návrhu změn v ISUI -->
  2024. <PropertyDefn>
  2025. <Name>GlobalniIdNavrhuZmeny</Name>
  2026. <ElementPath>GlobalniIdNavrhuZmeny</ElementPath>
  2027. <Type>Integer</Type>
  2028. <SubType>Integer64</SubType>
  2029. </PropertyDefn>
  2030. <!-- ID budovy v ISKN -->
  2031. <PropertyDefn>
  2032. <Name>IsknBudovaId</Name>
  2033. <ElementPath>IsknBudovaId</ElementPath>
  2034. <Type>Integer</Type>
  2035. <SubType>Integer64</SubType>
  2036. </PropertyDefn>
  2037. </GMLFeatureClass>
  2038. <!-- Zaniklé prvky -->
  2039. <GMLFeatureClass>
  2040. <Name>ZaniklePrvky</Name>
  2041. <ElementPath>Data|ZaniklePrvky|ZaniklyPrvek</ElementPath>
  2042. <!-- Typ prvku -->
  2043. <PropertyDefn>
  2044. <Name>TypPrvkuKod</Name>
  2045. <ElementPath>TypPrvkuKod</ElementPath>
  2046. <Type>String</Type>
  2047. <Width>2</Width>
  2048. </PropertyDefn>
  2049. <!-- ID (kód) prvku -->
  2050. <PropertyDefn>
  2051. <Name>PrvekId</Name>
  2052. <ElementPath>PrvekId</ElementPath>
  2053. <Type>Integer</Type>
  2054. <SubType>Integer64</SubType>
  2055. </PropertyDefn>
  2056. <!-- ID transakce v RUIAN -->
  2057. <PropertyDefn>
  2058. <Name>IdTransakce</Name>
  2059. <ElementPath>IdTransakce</ElementPath>
  2060. <Type>Integer</Type>
  2061. <SubType>Integer64</SubType>
  2062. </PropertyDefn>
  2063. </GMLFeatureClass>
  2064. </GMLFeatureClassList>