<feed xmlns='http://www.w3.org/2005/Atom'>
<title>PROJ/data/tests, branch rfc4_dev</title>
<subtitle>Forked from https://github.com/OSGeo/PROJ</subtitle>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/'/>
<entry>
<title>Add test/unit/test_grids.cpp to improve testing coverage</title>
<updated>2020-01-14T22:33:16+00:00</updated>
<author>
<name>Even Rouault</name>
<email>even.rouault@spatialys.com</email>
</author>
<published>2020-01-13T23:53:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=941bb82c7eecbf56821075f95991916c30c31b4e'/>
<id>941bb82c7eecbf56821075f95991916c30c31b4e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>deformation.cpp: check that unit in TIFF file is 'millimetres per year' which is the official name in EPSG</title>
<updated>2020-01-01T13:31:04+00:00</updated>
<author>
<name>Even Rouault</name>
<email>even.rouault@spatialys.com</email>
</author>
<published>2020-01-01T13:31:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=11f63432d39e33a04e1fb0acd8215b86f27dceb8'/>
<id>11f63432d39e33a04e1fb0acd8215b86f27dceb8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>deformation: add support for +grids= for GeoTIFF grids</title>
<updated>2019-12-30T01:43:36+00:00</updated>
<author>
<name>Even Rouault</name>
<email>even.rouault@spatialys.com</email>
</author>
<published>2019-12-29T23:50:08+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=ea73297ea426eac1dcc0133c4cd730ff029e26a8'/>
<id>ea73297ea426eac1dcc0133c4cd730ff029e26a8</id>
<content type='text'>
This option is to load grid(s) that have both the horizontal and
vertical velocities in the same file.

Can be tested with the following grid
https://github.com/rouault/sample_proj_gtiff_grids/blob/master/nkgrf03vel_realigned.tif
converted from the original .ct2 and .gtx with
```
gdal_translate nkgrf03vel_realigned.vrt nkgrf03vel_realigned.tif -co COMPRESS=DEFLATE -co PREDICTOR=3 -co BLOCKYSIZE=241 -co INTERLEAVE=BAND
```

where nkgrf03vel_realigned.vrt is
```
&lt;VRTDataset rasterXSize="223" rasterYSize="241"&gt;
  &lt;SRS dataAxisToSRSAxisMapping="2,1"&gt;GEOGCRS["Unknown based on GRS80",
    DATUM["Unknown based on GRS80",
        ELLIPSOID["GRS 1980",6378137,298.257222101,
            LENGTHUNIT["metre",1]]],
    PRIMEM["Greenwich",0,
        ANGLEUNIT["degree",0.0174532925199433]],
    CS[ellipsoidal,2],
        AXIS["geodetic latitude (Lat)",north,
            ORDER[1],
            ANGLEUNIT["degree",0.0174532925199433]],
        AXIS["geodetic longitude (Lon)",east,
            ORDER[2],
            ANGLEUNIT["degree",0.0174532925199433]]]
&lt;/SRS&gt;
  &lt;GeoTransform&gt;  2.9166666666666670e+00,  1.6666666666666666e-01,  0.0000000000000000e+00,  7.3041666666666686e+01,  0.0000000000000000e+00, -8.3333333333333329e-02&lt;/GeoTransform&gt;
  &lt;Metadata&gt;
    &lt;MDI key="DESCRIPTION"&gt;&lt;/MDI&gt;
    &lt;MDI key="area_of_use"&gt;Nordic and Baltic countries&lt;/MDI&gt;
    &lt;MDI key="AREA_OR_POINT"&gt;Point&lt;/MDI&gt;
    &lt;MDI key="TIFFTAG_COPYRIGHT"&gt;The Nordic Geodetic Commission. Creative Commons Attribution 4.0 https://creativecommons.org/licenses/by/4.0/&lt;/MDI&gt;
    &lt;MDI key="TIFFTAG_DATETIME"&gt;2019:12:30 00:00:00&lt;/MDI&gt;
    &lt;MDI key="TIFFTAG_IMAGEDESCRIPTION"&gt;Deformation model covering the Nordic and Baltic countries. Used in transformations between global reference frames and the local realisations of ETRS89 in the Nordic and Baltic countries&lt;/MDI&gt;
    &lt;MDI key="TYPE"&gt;VELOCITY&lt;/MDI&gt;
  &lt;/Metadata&gt;
  &lt;VRTRasterBand dataType="Float32" band="1"&gt;
    &lt;Description&gt;east_velocity&lt;/Description&gt;
    &lt;UnitType&gt;mm/year&lt;/UnitType&gt;
    &lt;SimpleSource&gt;
      &lt;SourceFilename relativeToVRT="0"&gt;/home/even/proj/proj-datumgrid/europe/nkgrf03vel_realigned_xy.ct2&lt;/SourceFilename&gt;
      &lt;SourceBand&gt;2&lt;/SourceBand&gt; &lt;!-- GDAL exposes the first physical component of the file (longitude offset normally, here east velocity) as the second band --&gt;
      &lt;SrcRect xOff="0" yOff="0" xSize="223" ySize="241" /&gt;
      &lt;DstRect xOff="0" yOff="0" xSize="223" ySize="241" /&gt;
    &lt;/SimpleSource&gt;
  &lt;/VRTRasterBand&gt;
  &lt;VRTRasterBand dataType="Float32" band="2"&gt;
    &lt;Description&gt;north_velocity&lt;/Description&gt;
    &lt;UnitType&gt;mm/year&lt;/UnitType&gt;
    &lt;SimpleSource&gt;
      &lt;SourceFilename relativeToVRT="0"&gt;/home/even/proj/proj-datumgrid/europe/nkgrf03vel_realigned_xy.ct2&lt;/SourceFilename&gt;
      &lt;SourceBand&gt;1&lt;/SourceBand&gt; &lt;!-- and the second physical component (latitude offset normally, here north velocity) as the first band --&gt;
      &lt;SrcRect xOff="0" yOff="0" xSize="223" ySize="241" /&gt;
      &lt;DstRect xOff="0" yOff="0" xSize="223" ySize="241" /&gt;
    &lt;/SimpleSource&gt;
  &lt;/VRTRasterBand&gt;
  &lt;VRTRasterBand dataType="Float32" band="3"&gt;
    &lt;Description&gt;up_velocity&lt;/Description&gt;
    &lt;UnitType&gt;mm/year&lt;/UnitType&gt;
    &lt;SimpleSource&gt;
      &lt;SourceFilename relativeToVRT="0"&gt;/home/even/proj/proj-datumgrid/europe/nkgrf03vel_realigned_z.gtx&lt;/SourceFilename&gt;
      &lt;SourceBand&gt;1&lt;/SourceBand&gt;
      &lt;SrcRect xOff="0" yOff="0" xSize="223" ySize="241" /&gt;
      &lt;DstRect xOff="0" yOff="0" xSize="223" ySize="241" /&gt;
    &lt;/SimpleSource&gt;
  &lt;/VRTRasterBand&gt;
&lt;/VRTDataset&gt;
```
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This option is to load grid(s) that have both the horizontal and
vertical velocities in the same file.

Can be tested with the following grid
https://github.com/rouault/sample_proj_gtiff_grids/blob/master/nkgrf03vel_realigned.tif
converted from the original .ct2 and .gtx with
```
gdal_translate nkgrf03vel_realigned.vrt nkgrf03vel_realigned.tif -co COMPRESS=DEFLATE -co PREDICTOR=3 -co BLOCKYSIZE=241 -co INTERLEAVE=BAND
```

where nkgrf03vel_realigned.vrt is
```
&lt;VRTDataset rasterXSize="223" rasterYSize="241"&gt;
  &lt;SRS dataAxisToSRSAxisMapping="2,1"&gt;GEOGCRS["Unknown based on GRS80",
    DATUM["Unknown based on GRS80",
        ELLIPSOID["GRS 1980",6378137,298.257222101,
            LENGTHUNIT["metre",1]]],
    PRIMEM["Greenwich",0,
        ANGLEUNIT["degree",0.0174532925199433]],
    CS[ellipsoidal,2],
        AXIS["geodetic latitude (Lat)",north,
            ORDER[1],
            ANGLEUNIT["degree",0.0174532925199433]],
        AXIS["geodetic longitude (Lon)",east,
            ORDER[2],
            ANGLEUNIT["degree",0.0174532925199433]]]
&lt;/SRS&gt;
  &lt;GeoTransform&gt;  2.9166666666666670e+00,  1.6666666666666666e-01,  0.0000000000000000e+00,  7.3041666666666686e+01,  0.0000000000000000e+00, -8.3333333333333329e-02&lt;/GeoTransform&gt;
  &lt;Metadata&gt;
    &lt;MDI key="DESCRIPTION"&gt;&lt;/MDI&gt;
    &lt;MDI key="area_of_use"&gt;Nordic and Baltic countries&lt;/MDI&gt;
    &lt;MDI key="AREA_OR_POINT"&gt;Point&lt;/MDI&gt;
    &lt;MDI key="TIFFTAG_COPYRIGHT"&gt;The Nordic Geodetic Commission. Creative Commons Attribution 4.0 https://creativecommons.org/licenses/by/4.0/&lt;/MDI&gt;
    &lt;MDI key="TIFFTAG_DATETIME"&gt;2019:12:30 00:00:00&lt;/MDI&gt;
    &lt;MDI key="TIFFTAG_IMAGEDESCRIPTION"&gt;Deformation model covering the Nordic and Baltic countries. Used in transformations between global reference frames and the local realisations of ETRS89 in the Nordic and Baltic countries&lt;/MDI&gt;
    &lt;MDI key="TYPE"&gt;VELOCITY&lt;/MDI&gt;
  &lt;/Metadata&gt;
  &lt;VRTRasterBand dataType="Float32" band="1"&gt;
    &lt;Description&gt;east_velocity&lt;/Description&gt;
    &lt;UnitType&gt;mm/year&lt;/UnitType&gt;
    &lt;SimpleSource&gt;
      &lt;SourceFilename relativeToVRT="0"&gt;/home/even/proj/proj-datumgrid/europe/nkgrf03vel_realigned_xy.ct2&lt;/SourceFilename&gt;
      &lt;SourceBand&gt;2&lt;/SourceBand&gt; &lt;!-- GDAL exposes the first physical component of the file (longitude offset normally, here east velocity) as the second band --&gt;
      &lt;SrcRect xOff="0" yOff="0" xSize="223" ySize="241" /&gt;
      &lt;DstRect xOff="0" yOff="0" xSize="223" ySize="241" /&gt;
    &lt;/SimpleSource&gt;
  &lt;/VRTRasterBand&gt;
  &lt;VRTRasterBand dataType="Float32" band="2"&gt;
    &lt;Description&gt;north_velocity&lt;/Description&gt;
    &lt;UnitType&gt;mm/year&lt;/UnitType&gt;
    &lt;SimpleSource&gt;
      &lt;SourceFilename relativeToVRT="0"&gt;/home/even/proj/proj-datumgrid/europe/nkgrf03vel_realigned_xy.ct2&lt;/SourceFilename&gt;
      &lt;SourceBand&gt;1&lt;/SourceBand&gt; &lt;!-- and the second physical component (latitude offset normally, here north velocity) as the first band --&gt;
      &lt;SrcRect xOff="0" yOff="0" xSize="223" ySize="241" /&gt;
      &lt;DstRect xOff="0" yOff="0" xSize="223" ySize="241" /&gt;
    &lt;/SimpleSource&gt;
  &lt;/VRTRasterBand&gt;
  &lt;VRTRasterBand dataType="Float32" band="3"&gt;
    &lt;Description&gt;up_velocity&lt;/Description&gt;
    &lt;UnitType&gt;mm/year&lt;/UnitType&gt;
    &lt;SimpleSource&gt;
      &lt;SourceFilename relativeToVRT="0"&gt;/home/even/proj/proj-datumgrid/europe/nkgrf03vel_realigned_z.gtx&lt;/SourceFilename&gt;
      &lt;SourceBand&gt;1&lt;/SourceBand&gt;
      &lt;SrcRect xOff="0" yOff="0" xSize="223" ySize="241" /&gt;
      &lt;DstRect xOff="0" yOff="0" xSize="223" ySize="241" /&gt;
    &lt;/SimpleSource&gt;
  &lt;/VRTRasterBand&gt;
&lt;/VRTDataset&gt;
```
</pre>
</div>
</content>
</entry>
<entry>
<title>Network: remove dedicated get_file_size() callback to use get_header_value(), and test</title>
<updated>2019-12-23T17:19:35+00:00</updated>
<author>
<name>Even Rouault</name>
<email>even.rouault@spatialys.com</email>
</author>
<published>2019-12-23T14:58:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=9d0bd793b552e248a10f9ff8b6c62d942fe437a1'/>
<id>9d0bd793b552e248a10f9ff8b6c62d942fe437a1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add testing of network functionality</title>
<updated>2019-12-23T12:13:51+00:00</updated>
<author>
<name>Even Rouault</name>
<email>even.rouault@spatialys.com</email>
</author>
<published>2019-12-20T23:38:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=d3bdbb841719780560438129b4911a86a7a4be58'/>
<id>d3bdbb841719780560438129b4911a86a7a4be58</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>grids.cpp: use 'parent_grid_name' as stated in RFC4</title>
<updated>2019-12-12T18:27:57+00:00</updated>
<author>
<name>Even Rouault</name>
<email>even.rouault@spatialys.com</email>
</author>
<published>2019-12-12T18:27:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=c165952bcf0135bc26b6cfea3ae387c51ba59fb0'/>
<id>c165952bcf0135bc26b6cfea3ae387c51ba59fb0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>test/gie/geotiff_grids.gie: use of subset of gr3df97a.tif for systematic testing</title>
<updated>2019-12-11T19:36:01+00:00</updated>
<author>
<name>Even Rouault</name>
<email>even.rouault@spatialys.com</email>
</author>
<published>2019-12-11T19:34:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=8063c0b992af82154b3d9b637c78aa769a482f8a'/>
<id>8063c0b992af82154b3d9b637c78aa769a482f8a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add support for horizontal and vertical grids in GeoTIFF</title>
<updated>2019-12-10T16:49:00+00:00</updated>
<author>
<name>Even Rouault</name>
<email>even.rouault@spatialys.com</email>
</author>
<published>2019-12-06T20:08:59+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=1f01ecb90a751c8099a50e066616639f63522134'/>
<id>1f01ecb90a751c8099a50e066616639f63522134</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Rename nad/ directory as data/</title>
<updated>2018-09-18T20:58:57+00:00</updated>
<author>
<name>Even Rouault</name>
<email>even.rouault@spatialys.com</email>
</author>
<published>2018-09-18T18:32:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/PROJ/commit/?id=d7366ffdd5cbe5ba6c2d9f917d064085bbc3eddc'/>
<id>d7366ffdd5cbe5ba6c2d9f917d064085bbc3eddc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
