This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<Capabilities xmlns="http://www.opengis.net/wmts/1.0" xmlns:ows="http://www.opengis.net/ows/1.1" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:gml="http://www.opengis.net/gml" xsi:schemaLocation="http://www.opengis.net/wmts/1.0 http://schemas.opengis.net/wmts/1.0/wmtsGetCapabilities_response.xsd" version="1.0.0"> | |
<ows:ServiceIdentification> | |
<ows:Title>National Base Mapping Service (LINZ)</ows:Title> | |
<ows:Abstract>National Mapping Service provided by Land Information New Zealand</ows:Abstract> | |
<ows:ServiceType>OGC WMTS</ows:ServiceType> | |
<ows:ServiceTypeVersion>1.0.0</ows:ServiceTypeVersion> | |
<ows:Fees>There are no fees associated with data access via the web interface, API or Web Services.</ows:Fees> | |
<ows:AccessConstraints>LINZ Data Service Customers complete a self registration process where | |
they accept site terms. Access to the data is subject to the terms of |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<!DOCTYPE Map[]> | |
<Map background-color="#2a383e" srs="+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over"> | |
<Style comp-op="color-dodge" filter-mode="first" name="gebco2019webmercator2"> | |
<Rule> | |
<RasterSymbolizer default-color="rgba(0, 0, 0, 0)" default-mode="linear" scaling="bilinear"> | |
<stop color="#222222" value="0" /> | |
<stop color="#ebebeb" value="255" /> | |
</RasterSymbolizer> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
xmlfile=/gebco_template.xml | |
base_file=$1 | |
export_dir= | |
export_png= | |
export_xml= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
FILE_IN= | |
file_name=$( basename $FILE_IN | sed 's/.tif//' ) | |
output_dir= | |
div | |
function gdal_extent_gdalwarp_te() { |