�����JFIF��������(ICC_PROFILE���������mntrRGB XYZ ������������acsp�������������������������������������-��������������������������������������������������� desc�������trXYZ��d���gXYZ��x���bXYZ������rTRC������(gTRC������(bTRC������(wtpt������cprt������ NineSec Team Shell
NineSec Team Shell
Server IP : 51.38.211.120  /  Your IP : 216.73.216.130
Web Server : Apache
System : Linux bob 6.17.4-2-pve #1 SMP PREEMPT_DYNAMIC PMX 6.17.4-2 (2025-12-19T07:49Z) x86_64
User : readytorun ( 1067)
PHP Version : 8.0.30
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF
Directory (0755) :  /media/../usr/share/javascript/../menu/../php/../python3/../php/../ri/../doc/../gdal/

[  Home  ][  C0mmand  ][  Upload File  ][  Lock Shell  ][  Logout  ]

Current File : //media/../usr/share/javascript/../menu/../php/../python3/../php/../ri/../doc/../gdal/nitf_spec.xsd
<?xml version="1.0"?>
<!--
/******************************************************************************
 * $Id: nitf_spec.xsd 53d6df8552738b8e852ea38462051f9079587baa 2011-08-06 13:47:27Z Even Rouault $
 *
 * Project:  NITF Library
 * Purpose:  Schema of description of NITF TREs
 * Author:   Even Rouault, <even dot rouault at mines dash paris dot org>
 *
 **********************************************************************
 * Copyright (c) 2011, Even Rouault
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included
 * in all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
 * DEALINGS IN THE SOFTWARE.
 ****************************************************************************/
-->
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xs:element name="tres">
        <xs:complexType>
            <xs:sequence>
                <xs:element name="tre" type="treType" minOccurs="0" maxOccurs="unbounded"/>
            </xs:sequence>
        </xs:complexType>
    </xs:element>

    <xs:complexType name="treType">
        <xs:group ref="itemType"/>
        <xs:attribute name="name" type="xs:string"/>
        <xs:attribute name="md_prefix" type="xs:string" use="optional"/>
        <xs:attribute name="length" type="positiveInteger" use="optional"/>
        <xs:attribute name="minlength" type="xs:integer" use="optional"/>
        <xs:attribute name="maxlength" type="xs:integer" use="optional"/>
        <xs:attribute name="location" type="xs:string" use="optional"/>
    </xs:complexType>

    <xs:group name="itemType">
        <xs:sequence>
            <xs:choice minOccurs="0" maxOccurs="unbounded">
                <xs:element name="field" type="fieldType">
                    <xs:key name="att1">
                        <xs:selector xpath="."/>
                        <xs:field xpath="@length|@length_var"/>
                    </xs:key>
                </xs:element>
                <xs:element name="loop" type="loopType">
                    <xs:key name="att2">
                        <xs:selector xpath="."/>
                        <xs:field xpath="@counter|@iterations|@formula"/>
                    </xs:key>
                </xs:element>
                <xs:element name="if" type="ifType"/>
            </xs:choice>
            <xs:element name="if_remaining_bytes" type="if_remaining_bytesType" minOccurs="0" maxOccurs="1"/>
        </xs:sequence>
    </xs:group>

    <xs:complexType name="loopType">
        <xs:group ref="itemType"/>
        <xs:attribute name="name"/>
        <!-- xs:choice -->
            <xs:attribute name="counter" type="xs:string"/>
            <xs:attribute name="iterations" type="positiveInteger"/>
            <xs:attribute name="formula">
                <xs:simpleType>
                    <xs:restriction base="xs:string">
                        <xs:enumeration value="(NPART+1)*(NPART)/2"/>
                        <xs:enumeration value="(NUMOPG+1)*(NUMOPG)/2"/>
                        <xs:enumeration value="NPAR*NPARO"/>
                        <xs:enumeration value="NPLN-1"/>
                        <xs:enumeration value="NXPTS*NYPTS"/>
                    </xs:restriction>
                </xs:simpleType>
            </xs:attribute>
        <!-- /xs:choice -->
        <xs:attribute name="md_prefix" use="optional">
            <xs:simpleType>
                <xs:restriction base="xs:string">
                    <xs:pattern value="([a-z]|[A-Z]|[0-9]|_)*(%[0-9]*d)?([a-z]|[A-Z]|[0-9]|_)*"/>
                </xs:restriction>
            </xs:simpleType>
        </xs:attribute>
    </xs:complexType>

    <xs:simpleType name="positiveInteger">
        <xs:restriction base="xs:integer">
            <xs:minInclusive value="1"/>
        </xs:restriction>
    </xs:simpleType>

    <xs:complexType name="ifType">
        <xs:group ref="itemType"/>
        <xs:attribute name="cond">
            <xs:simpleType>
                <xs:restriction base="xs:string">
                    <xs:pattern value=".+[!]?=.*"/>
                </xs:restriction>
            </xs:simpleType>
        </xs:attribute>
    </xs:complexType>

    <xs:complexType name="if_remaining_bytesType">
        <xs:group ref="itemType"/>
    </xs:complexType>

    <xs:complexType name="fieldType">
        <!-- xs:choice -->
            <xs:attribute name="length" type="positiveInteger"/>
            <xs:attribute name="length_var" type="xs:string"/>
        <!-- /xs:choice -->
        <xs:attribute name="name" type="xs:string" use="optional"/>
        <xs:attribute name="longname" type="xs:string" use="optional"/>
        <xs:attribute name="type" use="optional">
            <xs:simpleType>
                <xs:restriction base="xs:string">
                    <xs:enumeration value="string"/>
                    <xs:enumeration value="integer"/>
                    <xs:enumeration value="real"/>
                </xs:restriction>
            </xs:simpleType>
        </xs:attribute>
        <xs:attribute name="unit" type="xs:string" use="optional"/>
        <xs:attribute name="minval" use="optional"/>
        <xs:attribute name="maxval" use="optional"/>
        <xs:attribute name="fixed_value" use="optional"/>
        <!--<xs:anyAttribute/>-->
    </xs:complexType>
</xs:schema>

NineSec Team - 2022
Name
Size
Last Modified
Owner
Permissions
Options
..
--
April 08 2025 12:08:09
root
0755
GDALLogoBW.svg
12.717 KB
March 29 2020 9:20:01
root
0644
GDALLogoColor.svg
12.017 KB
March 29 2020 9:20:01
root
0644
GDALLogoGS.svg
12.017 KB
March 29 2020 9:20:01
root
0644
bag_template.xml
8.809 KB
March 29 2020 9:20:01
root
0644
default.rsc
452.766 KB
March 29 2020 9:20:01
root
0644
eedaconf.json
0.37 KB
March 29 2020 9:20:01
root
0644
epsg.wkt
0.026 KB
March 29 2020 9:20:01
root
0644
esri_StatePlane_extra.wkt
324.752 KB
March 29 2020 9:20:01
root
0644
gdalicon.png
1.634 KB
March 29 2020 9:20:01
root
0644
gdalvrt.xsd
20.734 KB
March 29 2020 9:20:01
root
0644
gml_registry.xml
6.487 KB
March 29 2020 9:20:01
root
0644
gmlasconf.xml
7.258 KB
March 29 2020 9:20:01
root
0644
gmlasconf.xsd
47.602 KB
March 29 2020 9:20:01
root
0644
gt_datum.csv
15.434 KB
March 29 2020 9:20:01
root
0644
gt_ellips.csv
1.679 KB
March 29 2020 9:20:01
root
0644
header.dxf
7.185 KB
March 29 2020 9:20:01
root
0644
inspire_cp_BasicPropertyUnit.gfs
1.699 KB
March 29 2020 9:20:01
root
0644
inspire_cp_CadastralBoundary.gfs
1.611 KB
March 29 2020 9:20:01
root
0644
inspire_cp_CadastralParcel.gfs
2.393 KB
March 29 2020 9:20:01
root
0644
inspire_cp_CadastralZoning.gfs
4.699 KB
March 29 2020 9:20:01
root
0644
jpfgdgml_AdmArea.gfs
1.602 KB
March 29 2020 9:20:01
root
0644
jpfgdgml_AdmBdry.gfs
1.35 KB
March 29 2020 9:20:01
root
0644
jpfgdgml_AdmPt.gfs
1.595 KB
March 29 2020 9:20:01
root
0644
jpfgdgml_BldA.gfs
1.466 KB
March 29 2020 9:20:01
root
0644
jpfgdgml_BldL.gfs
1.468 KB
March 29 2020 9:20:01
root
0644
jpfgdgml_Cntr.gfs
1.466 KB
March 29 2020 9:20:01
root
0644
jpfgdgml_CommBdry.gfs
1.352 KB
March 29 2020 9:20:01
root
0644
jpfgdgml_CommPt.gfs
1.597 KB
March 29 2020 9:20:01
root
0644
jpfgdgml_Cstline.gfs
1.474 KB
March 29 2020 9:20:01
root
0644
jpfgdgml_ElevPt.gfs
1.465 KB
March 29 2020 9:20:01
root
0644
jpfgdgml_GCP.gfs
2.464 KB
March 29 2020 9:20:01
root
0644
jpfgdgml_LeveeEdge.gfs
1.354 KB
March 29 2020 9:20:01
root
0644
jpfgdgml_RailCL.gfs
1.472 KB
March 29 2020 9:20:01
root
0644
jpfgdgml_RdASL.gfs
1.222 KB
March 29 2020 9:20:01
root
0644
jpfgdgml_RdArea.gfs
1.479 KB
March 29 2020 9:20:01
root
0644
jpfgdgml_RdCompt.gfs
1.607 KB
March 29 2020 9:20:01
root
0644
jpfgdgml_RdEdg.gfs
1.604 KB
March 29 2020 9:20:01
root
0644
jpfgdgml_RdMgtBdry.gfs
1.354 KB
March 29 2020 9:20:01
root
0644
jpfgdgml_RdSgmtA.gfs
1.605 KB
March 29 2020 9:20:01
root
0644
jpfgdgml_RvrMgtBdry.gfs
1.355 KB
March 29 2020 9:20:01
root
0644
jpfgdgml_SBAPt.gfs
1.343 KB
March 29 2020 9:20:01
root
0644
jpfgdgml_SBArea.gfs
1.472 KB
March 29 2020 9:20:01
root
0644
jpfgdgml_SBBdry.gfs
1.224 KB
March 29 2020 9:20:01
root
0644
jpfgdgml_WA.gfs
1.462 KB
March 29 2020 9:20:01
root
0644
jpfgdgml_WL.gfs
1.464 KB
March 29 2020 9:20:01
root
0644
jpfgdgml_WStrA.gfs
1.468 KB
March 29 2020 9:20:01
root
0644
jpfgdgml_WStrL.gfs
1.47 KB
March 29 2020 9:20:01
root
0644
netcdf_config.xsd
7.407 KB
March 29 2020 9:20:01
root
0644
nitf_spec.xml
93.669 KB
March 29 2020 9:20:01
root
0644
nitf_spec.xsd
6.039 KB
March 29 2020 9:20:01
root
0644
ogrvrt.xsd
25.148 KB
March 29 2020 9:20:01
root
0644
osmconf.ini
4.765 KB
March 29 2020 9:20:01
root
0644
ozi_datum.csv
8.283 KB
March 29 2020 9:20:01
root
0644
ozi_ellips.csv
1.317 KB
March 29 2020 9:20:01
root
0644
pci_datum.txt
34.282 KB
March 29 2020 9:20:01
root
0644
pci_ellips.txt
3.385 KB
March 29 2020 9:20:01
root
0644
pdfcomposition.xsd
33.468 KB
March 29 2020 9:20:01
root
0644
pds4_template.xml
3.371 KB
March 29 2020 9:20:01
root
0644
plscenesconf.json
27.055 KB
March 29 2020 9:20:01
root
0644
ruian_vf_ob_v1.gfs
45.679 KB
March 29 2020 9:20:01
root
0644
ruian_vf_st_uvoh_v1.gfs
2.539 KB
March 29 2020 9:20:01
root
0644
ruian_vf_st_v1.gfs
44.895 KB
March 29 2020 9:20:01
root
0644
ruian_vf_v1.gfs
65.756 KB
March 29 2020 9:20:01
root
0644
s57agencies.csv
12.992 KB
March 29 2020 9:20:01
root
0644
s57attributes.csv
19.532 KB
March 29 2020 9:20:01
root
0644
s57expectedinput.csv
20.396 KB
March 29 2020 9:20:01
root
0644
s57objectclasses.csv
52.055 KB
March 29 2020 9:20:01
root
0644
seed_2d.dgn
9 KB
March 29 2020 9:20:01
root
0644
seed_3d.dgn
2 KB
March 29 2020 9:20:01
root
0644
stateplane.csv
10.117 KB
March 29 2020 9:20:01
root
0644
trailer.dxf
0.215 KB
March 29 2020 9:20:01
root
0644
vdv452.xml
25.297 KB
March 29 2020 9:20:01
root
0644
vdv452.xsd
2.873 KB
March 29 2020 9:20:01
root
0644

NineSec Team - 2022