-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathindex.html
1022 lines (975 loc) · 112 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!-- This is a generated file by regenerate_index_html.py. Do not modify !!!! Modify index.html.in instead if you need to make changes-->
<!-- This file is the root of https://cdn.proj.org/ -->
<!-- Part of it is generated by the regenerate_index_html.py script -->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" >
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>PROJ Datumgrid CDN</title>
<!--
<script src="https://cdn.rawgit.com/openlayers/openlayers.github.io/master/en/v6.1.1/build/ol.js"></script>
<link rel="stylesheet" href="https://cdn.rawgit.com/openlayers/openlayers.github.io/master/en/v6.1.1/css/ol.css">
-->
<script src="ol.js"></script>
<link rel="shortcut icon" href="favicon.png">
<link rel="stylesheet" href="ol.css">
<!-- corresponding to https://github.com/rouault/geotiff.js/pull/new/cumulative_fixes -->
<script src="geotiff.bundle.min.js"></script>
<style>
.map {
width: 50%;
height: 600px;
}
label {
white-space: nowrap;
}
.ol-popup {
position: absolute;
background-color: white;
-webkit-filter: drop-shadow(0 1px 4px rgba(0,0,0,0.2));
filter: drop-shadow(0 1px 4px rgba(0,0,0,0.2));
padding: 15px;
border-radius: 10px;
border: 1px solid #cccccc;
bottom: 12px;
left: -50px;
min-width: 280px;
}
.ol-popup:after, .ol-popup:before {
top: 100%;
border: solid transparent;
content: " ";
height: 0;
width: 0;
position: absolute;
pointer-events: none;
}
.ol-popup:after {
border-top-color: white;
border-width: 10px;
left: 48px;
margin-left: -10px;
}
.ol-popup:before {
border-top-color: #cccccc;
border-width: 11px;
left: 48px;
margin-left: -11px;
}
.ol-popup-closer {
text-decoration: none;
position: absolute;
top: 2px;
right: 8px;
}
.ol-popup-closer:after {
content: "✖";
}
</style>
</head>
<body>
<h1>PROJ.org Datumgrid CDN</h1>
<p>
The s3://cdn.proj.org bucket is hosted by the
<a href="https://aws.amazon.com/opendata/public-datasets/">Amazon Public Datasets</a> program, and it
can be accessed via HTTP/S at <a href="https://cdn.proj.org">cdn.proj.org</a>. CDN services are
provided by the AWS Public Dataset team via <a href="https://aws.amazon.com/cloudfront/">CloudFront</a>.
</p>
<p>
The CDN contains <a href="https://www.cogeo.org/">Cloud Optimized GeoTIFF</a> datasets which are mirrored and
managed by the
<a href="https://github.com/OSGeo/PROJ-data/">https://github.com/OSGeo/PROJ-data/</a>
GitHub project. Files in the CDN are designed to be used by <a href="https://proj.org">PROJ</a> 7 or later, but any software
project wishing to use the CDN for shifting support are encouraged to participate in the project and leverage the CDN.
</p>
<h2>Mirroring</h2>
<p>If you are able, you are encouraged to mirror the grids via AWS S3 command line: </p>
<pre>aws s3 sync s3://cdn.proj.org .</pre>
<p>If direct S3 access is not possible, you can also use <i>wget</i> to locally mirror
the data: </p>
<pre>wget --mirror https://cdn.proj.org/</pre>
<h2>Content</h2>
<div id="type_control">
<label>Types:</label>
</div>
<br>
<div id="agency_control_div" style="margin-bottom: 20px">
<span id="agency_control">
<label>Agencies:</label>
</span>
<br>
<button type="button" style="margin: 5px;" onclick="agencies_selector(true)">Select all</button>
<button type="button" style="margin: 5px;" onclick="agencies_selector(false)">Deselect all</button>
</div>
<div>
<div id="map" class="map" style="float: left;"></div>
<div id="details" style="height: 600px; overflow-y: scroll; padding: 0 5px">
Click on the map to display the names of the files under the pointer,
and get the values of the shift(s).
</div>
<div style="clear: both;"></div>
</div>
<div id="popup" class="ol-popup">
<a href="#" id="popup-closer" class="ol-popup-closer"></a>
<div id="popup-content"></div>
</div>
<script>
var fullGeoJSON = null;
var agencies_enabled = {}
var list_agencies = []
var featureSource = new ol.source.Vector({
format: new ol.format.GeoJSON(),
loader: function(extent, resolution, projection) {
var url = 'files.geojson';
var xhr = new XMLHttpRequest();
xhr.open('GET', url);
xhr.onError = function() {};
xhr.onload = function() {
if (xhr.status == 200) {
fullGeoJSON = JSON.parse(xhr.responseText);
fullGeoJSON.features.forEach(function(f) {
if( agencies_enabled[f.properties.source_id] === undefined ) {
agencies_enabled[f.properties.source_id] = true;
list_agencies.push(f.properties.source_id);
}
});
list_agencies.sort();
var agency_control = document.getElementById('agency_control');
list_agencies.forEach(function(x){
create_checkbox(x, x, agency_control, agencies_enabled);
});
featureSource.addFeatures(
featureSource.getFormat().readFeatures(fullGeoJSON,
{
dataProjection: 'EPSG:4326',
featureProjection: projection
}));
}
}
xhr.send();
}
});
var style = new ol.style.Style({
stroke : new ol.style.Stroke(
{
width : 1
}),
fill : new ol.style.Fill(
{
color : 'rgba(0, 0, 0, 0.01)'
})
});
var featureLayer = new ol.layer.Vector({
source: featureSource,
style: style
});
var singleFeatureSource = new ol.source.Vector({});
var styleSingleFeature = new ol.style.Style({
stroke : new ol.style.Stroke(
{
color : 'rgba(255, 0, 0, 1)',
width : 3
}),
fill : new ol.style.Fill(
{
color : 'rgba(255, 0, 0, 0.1)'
})
});
var singleFeatureLayer = new ol.layer.Vector({
source: singleFeatureSource,
style: styleSingleFeature
});
function updateSingleFeatureLayer(geometry) {
singleFeatureSource.clear();
if (geometry) {
var json = new ol.format.GeoJSON();
var feature = new ol.Feature({
geometry: json.readGeometry(geometry)
});
singleFeatureSource.addFeature(feature);
}
}
function agencies_selector(checked) {
list_agencies.forEach(function(id){
document.getElementById('id_checkbox_' + id).checked = checked;
agencies_enabled[id] = checked;
});
refresh_source();
}
var types_enabled = {};
types_enabled['horizontal'] = true;
types_enabled['geoid'] = true;
types_enabled['vertical_adjustments'] = true;
types_enabled['velocity'] = true;
types_enabled['deformation_model'] = true;
types_enabled['other'] = true;
function refresh_source() {
featureSource.clear();
var filtered = {
"type": "FeatureCollection",
"features": fullGeoJSON.features.filter(function(feature){
var ok_type = false;
if( types_enabled['horizontal'] &&
(feature.properties.type == 'HORIZONTAL_OFFSET' ||
feature.properties.type == 'GEOGRAPHIC_3D_OFFSET') ) {
ok_type = true;
}
if( types_enabled['geoid'] &&
feature.properties.type == 'VERTICAL_OFFSET_GEOGRAPHIC_TO_VERTICAL') {
ok_type = true;
}
if( types_enabled['vertical_adjustments'] &&
feature.properties.type == 'VERTICAL_OFFSET_VERTICAL_TO_VERTICAL') {
ok_type = true;
}
if( types_enabled['velocity'] &&
feature.properties.type == 'VELOCITY') {
ok_type = true;
}
if( types_enabled['deformation_model'] &&
feature.properties.type == 'DEFORMATION_MODEL') {
ok_type = true;
}
if( types_enabled['other'] &&
feature.properties.type != 'HORIZONTAL_OFFSET' &&
feature.properties.type != 'VERTICAL_OFFSET_GEOGRAPHIC_TO_VERTICAL' &&
feature.properties.type != 'VERTICAL_OFFSET_VERTICAL_TO_VERTICAL' &&
feature.properties.type != 'VELOCITY' &&
feature.properties.type != 'DEFORMATION_MODEL') {
ok_type = true;
}
var ok_agency = agencies_enabled[feature.properties.source_id];
return ok_type && ok_agency;
})
};
featureSource.addFeatures(
featureSource.getFormat().readFeatures(filtered,
{
dataProjection: 'EPSG:4326',
featureProjection: 'EPSG:3857'
}
));
}
function create_checkbox(id, label_name, group, map) {
var checkbox = document.createElement('input');
checkbox.type = "checkbox";
id_checkbox = 'id_checkbox_' + id;
checkbox.id = id_checkbox;
checkbox.checked = true;
var label = document.createElement('label');
label.appendChild(checkbox);
label.appendChild(document.createTextNode(label_name));
group.appendChild(label);
group.appendChild(document.createTextNode(' '));
document.getElementById(id_checkbox).addEventListener('change', function() {
map[id] = this.checked;
refresh_source();
});
}
var type_control = document.getElementById('type_control');
create_checkbox('horizontal', 'Horizontal shift grids', type_control, types_enabled);
create_checkbox('geoid', 'Geoid models', type_control, types_enabled);
create_checkbox('vertical_adjustments', 'Vertical shifts', type_control, types_enabled);
create_checkbox('velocity', 'Velocity grids', type_control, types_enabled);
create_checkbox('deformation_model', 'Deformation models', type_control, types_enabled);
create_checkbox('other', 'Other datasets', type_control, types_enabled);
/**
* Elements that make up the popup.
*/
var container = document.getElementById('popup');
var content = document.getElementById('popup-content');
var closer = document.getElementById('popup-closer');
var details = document.getElementById('details');
/**
* Create an overlay to anchor the popup to the map.
*/
var overlay = new ol.Overlay({
element: container,
autoPan: true,
autoPanAnimation: {
duration: 250
}
});
/**
* Add a click handler to hide the popup.
* @return {boolean} Don't follow the href.
*/
closer.onclick = function() {
overlay.setPosition(undefined);
closer.blur();
return false;
};
var map = new ol.Map({
layers: [
new ol.layer.Tile({source: new ol.source.OSM()}),
featureLayer,
singleFeatureLayer],
renderer: 'canvas',
target: 'map',
overlays: [overlay],
view: new ol.View({
center: [0, 0],
zoom: 0
})
});
// Add an event handler for the map "singleclick" event
map.on('singleclick', function(evt) {
var coordinate = evt.coordinate;
let longlat = ol.proj.transform(coordinate, 'EPSG:3857', 'EPSG:4326');
while( longlat[0] > 180 ) {
longlat[0] -= 360;
}
while( longlat[0] < -180 ) {
longlat[0] += 360;
}
//content_innerHTML = '';
details_innerHTML = 'Latitude: ' + (longlat[1]).toFixed(8);
details_innerHTML += '. Longitude: ' + (longlat[0]).toFixed(8);
details_innerHTML += '.<br>Values displayed in their interpolation CRS, and at the closest node.'
count = 0;
requests = [];
map.forEachFeatureAtPixel(evt.pixel, function(feature, layer) {
var props = feature.getProperties();
details_innerHTML += '<hr>';
var writer = new ol.format.GeoJSON();
var geoJson = props.geometry ? writer.writeGeometry(props.geometry) : '';
details_innerHTML += '<p onmouseout="updateSingleFeatureLayer()" ';
details_innerHTML += " onmouseover='updateSingleFeatureLayer(" + geoJson + ")'>"; // geoJson contains double quotes
details_innerHTML += '<a href="' + props.name + '">' + props.name + '</a>: '
if( props.area_of_use ) {
details_innerHTML += props.area_of_use + ', ';
}
details_innerHTML += props.source;
details_innerHTML += ', ' + props.description;
if( props.url.indexOf('.tif') < 0 )
{
details_innerHTML += '</p>';
return;
}
count ++;
const div_id = 'value_' + count + '_' + coordinate;
details_innerHTML += '<div id="' + div_id + '"><p>Loading in progress...</p></div>';
details_innerHTML += '</p>';
requests.push([async function(props, count) {
//const url = "./" + props.source_id + "/" + props.name;
const url = props.url;
const tiff = await GeoTIFF.fromUrl(url);
let best_image = -1;
const imageCount = await tiff.getImageCount();
for( let idx_image = 0; idx_image < imageCount; idx_image++ ) {
const image = await tiff.getImage(idx_image);
const width = image.getWidth();
const height = image.getHeight();
const origin = image.getOrigin();
const resolution = image.getResolution();
let origin_lon = origin[0];
if( longlat[0] < origin_lon )
origin_lon -= 360;
else if( longlat[0] > origin_lon + (width-1) * resolution[0] )
origin_lon += 360;
const origin_lat = origin[1];
let left = Math.round((longlat[0] - origin_lon) / resolution[0]);
let top = Math.round((longlat[1] - origin_lat) / resolution[1]);
let right = left + 1;
let bottom = top + 1;
if( left >= 0 && top >= 0 && right <= width && bottom <= height ) {
best_image = idx_image;
}
}
if( best_image < 0 ) {
document.getElementById(div_id).innerHTML = '<p>Out of grid</p>';
return;
}
const first_image = await tiff.getImage(0);
const md = first_image.getGDALMetadata();
const image = await tiff.getImage(best_image);
const width = image.getWidth();
const height = image.getHeight();
const origin = image.getOrigin();
const resolution = image.getResolution();
let origin_lon = origin[0];
if( longlat[0] < origin_lon )
origin_lon -= 360;
else if( longlat[0] > origin_lon + (width-1) * resolution[0] )
origin_lon += 360;
const origin_lat = origin[1];
let left = Math.round((longlat[0] - origin_lon) / resolution[0]);
let top = Math.round((longlat[1] - origin_lat) / resolution[1]);
let right = left + 1;
let bottom = top + 1;
if( left >= 0 && top >= 0 && right <= width && bottom <= height ) {
const data = await image.readRasters({ window: [left, top, right, bottom] });
valueHTML = ''
for (let i = 0; i < data.length; ++i) {
const md_band = first_image.getGDALMetadata(i);
const scale = (md_band['SCALE'] != null) ? Number(md_band['SCALE']) : 1.0;
const offset = (md_band['OFFSET'] != null) ? Number(md_band['OFFSET']) : 0.0;
const unscaled_val = data[i][0];
const nodata = image.getGDALNoData();
const band_desc = (md_band['DESCRIPTION'] != null) ? md_band['DESCRIPTION'] : 'Band ' + (i+1);
if( nodata != null && unscaled_val == nodata ) {
if( i > 0 ) {
valueHTML += '<br>';
}
valueHTML += band_desc + ': nodata';
} else {
const unit = md_band['UNITTYPE'];
const scaled_val = unscaled_val * scale + offset;
if( (band_desc == 'latitude_offset_accuracy' || band_desc == 'longitude_offset_accuracy') && scaled_val <= 0 ) {
// nothing
}
else {
const precision = (unit && unit == "metre") ? 3 : 6;
if( i > 0 ) {
valueHTML += '<br>';
}
valueHTML += band_desc + ': ' + (scaled_val).toFixed(precision);
if( unit ) {
valueHTML += ' ' + unit;
}
}
}
}
document.getElementById(div_id).innerHTML = valueHTML;
}
}, props, count]);
});
details.innerHTML = details_innerHTML;
for( let i = 0; i < requests.length; i++ ) {
requests[i][0](requests[i][1], requests[i][2]);
}
/*
if( count >= 5 ) {
content_innerHTML = '';
}
content.innerHTML = content_innerHTML;
if (content_innerHTML != '') {
overlay.setPosition(coordinate);
} else {
overlay.setPosition(undefined);
}
*/
});
</script>
<p>The bucket contains the following files:</p>
<ul>
<li><a href="README.DATA">README.DATA</a></li>
</ul><hr><h3><a href="https://www.ign.gob.ar">Instituto Geográfico Nacional (IGN)</a></h3><ul>
<li><a style="word-break: break-word" href="ar_ign_README.txt">ar_ign_README.txt</a>. Last modified: 2023-06-23</li>
<li><a style="word-break: break-word" href="ar_ign_GEOIDE-Ar16.tif">ar_ign_GEOIDE-Ar16.tif</a> - Argentina - onshore - POSGAR 2007 (EPSG:5342) to SRVN16 height (EPSG:9255). Size: 6.1 MB. Last modified: 2023-06-23</li>
</ul><hr><h3><a href="http://www.bev.gv.at/portal/page?_pageid=713,2157075&_dad=portal&_schema=PORTAL">Austria Bundesamt für Eich- und Vermessungswessen</a></h3><ul>
<li><a style="word-break: break-word" href="at_bev_README.txt">at_bev_README.txt</a>. Last modified: 2022-11-08</li>
<li><a style="word-break: break-word" href="at_bev_AT_GIS_GRID.tif">at_bev_AT_GIS_GRID.tif</a> - Austria - MGI (EPSG:4312) to ETRS89 (EPSG:4258). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="at_bev_AT_GIS_GRID_2021_09_28.tif">at_bev_AT_GIS_GRID_2021_09_28.tif</a> - Austria - MGI (EPSG:4312) to ETRS89 (EPSG:4258). Size: 13.1 MB. Last modified: 2022-11-08</li>
<li><a style="word-break: break-word" href="at_bev_GEOID_BESSEL_Oesterreich.tif">at_bev_GEOID_BESSEL_Oesterreich.tif</a> - Austria - MGI (EPSG:9267) to EVRF2000 Austria height (EPSG:9274). Last modified: 2020-02-26</li>
<li><a style="word-break: break-word" href="at_bev_GEOID_GRS80_Oesterreich.tif">at_bev_GEOID_GRS80_Oesterreich.tif</a> - Austria - ETRS89 (EPSG:4937) to EVRF2000 Austria height (EPSG:9274). Last modified: 2020-02-26</li>
<li><a style="word-break: break-word" href="at_bev_GV_Hoehengrid_V1.tif">at_bev_GV_Hoehengrid_V1.tif</a> - Austria - GHA height (EPSG:5778) to EVRF2000 Austria height (EPSG:9274). Size: 1.1 MB. Last modified: 2020-02-26</li>
<li><a style="word-break: break-word" href="at_bev_GV_Hoehengrid_plus_Geoid_V2.tif">at_bev_GV_Hoehengrid_plus_Geoid_V2.tif</a> - Austria - ETRS89 (EPSG:4937) to GHA Austria height (EPSG:5778). Last modified: 2020-02-26</li>
</ul><hr><h3><a href="http://www.ga.gov.au">Geoscience Australia</a></h3><ul>
<li><a style="word-break: break-word" href="au_ga_README.txt">au_ga_README.txt</a>. Last modified: 2021-05-17</li>
<li><a style="word-break: break-word" href="au_ga_AGQG_20201120.tif">au_ga_AGQG_20201120.tif</a> - Australia - GDA2020 (EPSG:7843) to AVWS height (EPSG:9458). Size: 58.1 MB. Last modified: 2021-05-16</li>
<li><a style="word-break: break-word" href="au_ga_AUSGeoid09_V1.01.tif">au_ga_AUSGeoid09_V1.01.tif</a> - Australia - GDA94 (EPSG:4939) to AHD height (EPSG:5711). Size: 12.2 MB. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="au_ga_AUSGeoid2020_20180201.tif">au_ga_AUSGeoid2020_20180201.tif</a> - Australia - GDA2020 (EPSG:7843) to AHD height (EPSG:5711). Size: 5.6 MB. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="au_ga_AUSGeoid98.tif">au_ga_AUSGeoid98.tif</a> - Australia - GDA94 (EPSG:4939) to AHD height (EPSG:5711). Size: 3.7 MB. Last modified: 2020-01-24</li>
</ul><hr><h3><a href="https://github.com/icsm-au/transformation_grids">Australian Intergovernmental Committee on Surveying and Mapping</a></h3><ul>
<li><a style="word-break: break-word" href="au_icsm_README.txt">au_icsm_README.txt</a>. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="au_icsm_A66_National_13_09_01.tif">au_icsm_A66_National_13_09_01.tif</a> - Australia - AGD66 (EPSG:4202) to GDA94 (EPSG:4283). Size: 2.3 MB. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="au_icsm_GDA94_GDA2020_conformal.tif">au_icsm_GDA94_GDA2020_conformal.tif</a> - Australia - GDA94 (EPSG:4283) to GDA2020 (EPSG:7844). Size: 4.3 MB. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="au_icsm_GDA94_GDA2020_conformal_and_distortion.tif">au_icsm_GDA94_GDA2020_conformal_and_distortion.tif</a> - Australia - GDA94 (EPSG:4283) to GDA2020 (EPSG:7844). Size: 26.0 MB. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="au_icsm_GDA94_GDA2020_conformal_christmas_island.tif">au_icsm_GDA94_GDA2020_conformal_christmas_island.tif</a> - Australia - Christmas Island - GDA94 (EPSG:4283) to GDA2020 (EPSG:7844). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="au_icsm_GDA94_GDA2020_conformal_cocos_island.tif">au_icsm_GDA94_GDA2020_conformal_cocos_island.tif</a> - Australia - Cocos Island - GDA94 (EPSG:4283) to GDA2020 (EPSG:7844). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="au_icsm_National_84_02_07_01.tif">au_icsm_National_84_02_07_01.tif</a> - Australia - AGD84 (EPSG:4203) to GDA94 (EPSG:4283). Size: 5.7 MB. Last modified: 2020-01-24</li>
</ul><hr><h3><a href="http://www.ngi.be">IGN Belgium</a></h3><ul>
<li><a style="word-break: break-word" href="be_ign_README.txt">be_ign_README.txt</a>. Last modified: 2022-02-09</li>
<li><a style="word-break: break-word" href="be_ign_bd72lb72_etrs89lb08.tif">be_ign_bd72lb72_etrs89lb08.tif</a> - Belgium - Belge 1972 (EPSG:4313) to ETRS89 (EPSG:4258). Last modified: 2020-06-10</li>
<li><a style="word-break: break-word" href="be_ign_hBG18.tif">be_ign_hBG18.tif</a> - Belgium - onshore - ETRS89 (EPSG:4937) to Ostend height (EPSG:5710). Last modified: 2022-02-09</li>
</ul><hr><h3><a href="https://www.ibge.gov.br">Instituto Brasileiro de Geografia e Estatistica (IBGE)</a></h3><ul>
<li><a style="word-break: break-word" href="br_ibge_README.txt">br_ibge_README.txt</a>. Last modified: 2020-06-29</li>
<li><a style="word-break: break-word" href="br_ibge_CA61_003.tif">br_ibge_CA61_003.tif</a> - Brazil - Corrego Alegre 1961 - Corrego Alegre 1961 (EPSG:5524) to SIRGAS 2000 (EPSG:4674). Last modified: 2020-06-29</li>
<li><a style="word-break: break-word" href="br_ibge_CA7072_003.tif">br_ibge_CA7072_003.tif</a> - Brazil - Corrego Alegre 1970-1972 - Corrego Alegre 1970-72 (EPSG:4225) to SIRGAS 2000 (EPSG:4674). Last modified: 2020-06-29</li>
<li><a style="word-break: break-word" href="br_ibge_SAD69_003.tif">br_ibge_SAD69_003.tif</a> - Brazil - onshore south of 14°S and east of 53°W - SAD69 (EPSG:4618) to SIRGAS 2000 (EPSG:4674). Last modified: 2020-06-29</li>
<li><a style="word-break: break-word" href="br_ibge_SAD96_003.tif">br_ibge_SAD96_003.tif</a> - Brazil - onshore south of 14°S and east of 53°W - SAD69(96) (EPSG:5527) to SIRGAS 2000 (EPSG:4674). Last modified: 2020-06-29</li>
</ul><hr><h3><a href="https://webapp.geod.nrcan.gc.ca/geod">Natural Resources Canada</a></h3><ul>
<li><a style="word-break: break-word" href="ca_nrc_README.txt">ca_nrc_README.txt</a>. Last modified: 2023-08-19</li>
<li><a style="word-break: break-word" href="ca_nrc_ABCSRSV4.tif">ca_nrc_ABCSRSV4.tif</a> - Canada - Alberta - NAD83 (EPSG:4269) to NAD83(CSRS)v4 (EPSG:8246). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="ca_nrc_BC_27_05.tif">ca_nrc_BC_27_05.tif</a> - Canada - British Columbia - NAD27 (EPSG:4267) to NAD83(CSRS)v4 (EPSG:8246). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="ca_nrc_BC_93_05.tif">ca_nrc_BC_93_05.tif</a> - Canada - British Columbia - NAD83 (EPSG:4269) to NAD83(CSRS)v4 (EPSG:8246). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="ca_nrc_CGG2013ai08.tif">ca_nrc_CGG2013ai08.tif</a> - Canada - ITRF2008 (EPSG:7911) to CGVD2013(CGG2013a) height (EPSG:9245). Size: 10.4 MB. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="ca_nrc_CGG2013an83.tif">ca_nrc_CGG2013an83.tif</a> - Canada - NAD83(CSRS)v6 (EPSG:8251) to CGVD2013(CGG2013a) height (EPSG:9245). Size: 10.5 MB. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="ca_nrc_CGG2013i08.tif">ca_nrc_CGG2013i08.tif</a> - Canada - ITRF2008 (EPSG:7911) to CGVD2013(CGG2013) height (EPSG:6647). Size: 10.4 MB. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="ca_nrc_CGG2013n83.tif">ca_nrc_CGG2013n83.tif</a> - Canada - NAD83(CSRS)v6 (EPSG:8251) to CGVD2013(CGG2013) height (EPSG:6647). Size: 10.5 MB. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="ca_nrc_CQ77SCRS.tif">ca_nrc_CQ77SCRS.tif</a> - Canada - Quebec - NAD27(CGQ77) (EPSG:4609) to NAD83(CSRS)v2 (EPSG:8237). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="ca_nrc_CRD27_00.tif">ca_nrc_CRD27_00.tif</a> - Canada - British Columbia - CRD - NAD27 (EPSG:4267) to NAD83(CSRS)v3 (EPSG:8240). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="ca_nrc_CRD93_00.tif">ca_nrc_CRD93_00.tif</a> - Canada - British Columbia - CRD - NAD83 (EPSG:4269) to NAD83(CSRS)v3 (EPSG:8240). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="ca_nrc_GS7783.tif">ca_nrc_GS7783.tif</a> - Canada - Nova Scotia - ATS77 (EPSG:4122) to NAD83 (EPSG:4269). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="ca_nrc_HT2_1997.tif">ca_nrc_HT2_1997.tif</a> - Canada - NAD83(CSRS)v2 (EPSG:8235) to CGVD28 height (EPSG:5713). Size: 2.5 MB. Last modified: 2023-08-19</li>
<li><a style="word-break: break-word" href="ca_nrc_HT2_1997_CGG2013a.tif">ca_nrc_HT2_1997_CGG2013a.tif</a> - Canada - CGVD28 height (EPSG:5713) to CGVD2013a(1997) height (EPSG:20035). Size: 2.1 MB. Last modified: 2023-08-19</li>
<li><a style="word-break: break-word" href="ca_nrc_HT2_2002v70.tif">ca_nrc_HT2_2002v70.tif</a> - Canada - NAD83(CSRS)v4 (EPSG:8244) to CGVD28 height (EPSG:5713). Size: 2.6 MB. Last modified: 2023-08-19</li>
<li><a style="word-break: break-word" href="ca_nrc_HT2_2002v70_CGG2013a.tif">ca_nrc_HT2_2002v70_CGG2013a.tif</a> - Canada - CGVD28 height (EPSG:5713) to CGVD2013a(2002) height (EPSG:20034). Size: 2.1 MB. Last modified: 2023-08-19</li>
<li><a style="word-break: break-word" href="ca_nrc_HT2_2010v70.tif">ca_nrc_HT2_2010v70.tif</a> - Canada - NAD83(CSRS) (EPSG:4955) to CGVD28 height (EPSG:5713). Size: 2.7 MB. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="ca_nrc_HT2_2010v70_CGG2013a.tif">ca_nrc_HT2_2010v70_CGG2013a.tif</a> - Canada - CGVD28 height (EPSG:5713) to CGVD2013a(2010) height (EPSG:9245). Size: 2.1 MB. Last modified: 2023-08-19</li>
<li><a style="word-break: break-word" href="ca_nrc_MAY76V20.tif">ca_nrc_MAY76V20.tif</a> - Canada - NAD27(76) (EPSG:4608) to NAD83 (EPSG:4269). Size: 5.9 MB. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="ca_nrc_NA27SCRS.tif">ca_nrc_NA27SCRS.tif</a> - Canada - Quebec - NAD27 (EPSG:4267) to NAD83(CSRS)v2 (EPSG:8237). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="ca_nrc_NA83SCRS.tif">ca_nrc_NA83SCRS.tif</a> - Canada - Quebec - NAD83 (EPSG:4269) to NAD83(CSRS)v2 (EPSG:8237). Size: 1.3 MB. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="ca_nrc_NAD83v6VG.tif">ca_nrc_NAD83v6VG.tif</a> - Canada - NAD83v6 (EPSG:8251) velocity grid. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="ca_nrc_NAD83v70VG.tif">ca_nrc_NAD83v70VG.tif</a> - Canada - NAD83v7 (EPSG:8254) velocity grid. Size: 1.1 MB. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="ca_nrc_NB2783v2.tif">ca_nrc_NB2783v2.tif</a> - Canada - New Brunswick - NAD27 (EPSG:4267) to NAD83(CSRS)v2 (EPSG:8237). Size: 3.3 MB. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="ca_nrc_NB7783v2.tif">ca_nrc_NB7783v2.tif</a> - Canada - New Brunswick - ATS77 (EPSG:4122) to NAD83(CSRS)v2 (EPSG:8237). Size: 2.1 MB. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="ca_nrc_NS778302.tif">ca_nrc_NS778302.tif</a> - Canada - Nova Scotia - ATS77 (EPSG:4122) to NAD83(CSRS)v6 (EPSG:8252). Size: 2.5 MB. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="ca_nrc_NVI93_05.tif">ca_nrc_NVI93_05.tif</a> - Canada - British Columbia - Vancouver Island - NAD83 (EPSG:4269) to NAD83(CSRS)v3 (EPSG:8240). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="ca_nrc_ON27CSv1.tif">ca_nrc_ON27CSv1.tif</a> - Canada - Ontario - NAD27 (EPSG:4267) to NAD83(CSRS)v3 (EPSG:8240). Size: 7.6 MB. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="ca_nrc_ON76CSv1.tif">ca_nrc_ON76CSv1.tif</a> - Canada - Ontario - NAD27(76) (EPSG:4608) to NAD83(CSRS)v3 (EPSG:8240). Size: 7.0 MB. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="ca_nrc_ON83CSv1.tif">ca_nrc_ON83CSv1.tif</a> - Canada - Ontario - NAD83 (EPSG:4269) to NAD83(CSRS)v3 (EPSG:8240). Size: 4.9 MB. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="ca_nrc_PE7783V2.tif">ca_nrc_PE7783V2.tif</a> - Canada - Prince Edward Island - ATS77 (EPSG:4122) to NAD83(CSRS)v2 (EPSG:8237). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="ca_nrc_SK27-98.tif">ca_nrc_SK27-98.tif</a> - Canada - Saskatchewan - NAD27 (EPSG:4267) to NAD83(CSRS)v3 (EPSG:8240). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="ca_nrc_SK83-98.tif">ca_nrc_SK83-98.tif</a> - Canada - Saskatchewan - NAD83 (EPSG:4269) to NAD83(CSRS)v3 (EPSG:8240). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="ca_nrc_TO27CSv1.tif">ca_nrc_TO27CSv1.tif</a> - Canada - Ontario - Toronto - NAD27 (EPSG:4267) to NAD83(CSRS)v3 (EPSG:8240). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="ca_nrc_ntv1_can.tif">ca_nrc_ntv1_can.tif</a> - Canada - NAD27 (EPSG:4267) to NAD83 (EPSG:4269). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="ca_nrc_ntv2_0.tif">ca_nrc_ntv2_0.tif</a> - Canada - NAD27 (EPSG:4267) to NAD83 (EPSG:4269). Size: 7.4 MB. Last modified: 2020-01-24</li>
</ul><hr><h3><a href="https://mern.gouv.qc.ca/">Ministère de l'Énergie et des Ressources naturelles du Québec</a></h3><ul>
<li><a style="word-break: break-word" href="ca_que_mern_README.txt">ca_que_mern_README.txt</a>. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="ca_que_mern_cq77na83.tif">ca_que_mern_cq77na83.tif</a> - Canada - Quebec - NAD27(CGQ77) (EPSG:4609) to NAD83 (EPSG:4269). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="ca_que_mern_na27na83.tif">ca_que_mern_na27na83.tif</a> - Canada - Quebec - NAD27 (EPSG:4267) to NAD83 (EPSG:4269). Last modified: 2020-01-24</li>
</ul><hr><h3><a href="https://www.swisstopo.admin.ch/en/knowledge-facts/surveying-geodesy/reference-frames/transformations-position.html">Swisstopo Federal Office of Topography</a></h3><ul>
<li><a style="word-break: break-word" href="ch_swisstopo_README.txt">ch_swisstopo_README.txt</a>. Last modified: 2021-03-25</li>
<li><a style="word-break: break-word" href="ch_swisstopo_CHENyx06_ETRS.tif">ch_swisstopo_CHENyx06_ETRS.tif</a> - Switzerland - CH1903 (EPSG:4149) to ETRS89 (EPSG:4258). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="ch_swisstopo_CHENyx06a.tif">ch_swisstopo_CHENyx06a.tif</a> - Switzerland - CH1903 (EPSG:4149) to CH1903+ (EPSG:4150). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="ch_swisstopo_chgeo2004_ETRS89_LHN95.tif">ch_swisstopo_chgeo2004_ETRS89_LHN95.tif</a> - Switzerland - ETRS89 (EPSG:4937) to LHN95 height (EPSG:5729). Last modified: 2021-03-25</li>
<li><a style="word-break: break-word" href="ch_swisstopo_chgeo2004_ETRS89_LN02.tif">ch_swisstopo_chgeo2004_ETRS89_LN02.tif</a> - Switzerland - ETRS89 (EPSG:4937) to LN02 height (EPSG:5728). Last modified: 2021-03-25</li>
</ul><hr><h3><a href="https://geoportal.cuzk.cz/">ČÚZK</a></h3><ul>
<li><a style="word-break: break-word" href="cz_cuzk_README.txt">cz_cuzk_README.txt</a>. Last modified: 2024-02-12</li>
<li><a style="word-break: break-word" href="cz_cuzk_CR-2005.tif">cz_cuzk_CR-2005.tif</a> - Czechia - ETRS89 (EPSG:4937) to Baltic 1957 height (EPSG:8357). Last modified: 2024-02-12</li>
</ul><hr><h3><a href="http://www.adv-online.de/icc/extdeu/nav/9ae/9ae594bb-a094-311a-3b21-718a438ad1b2&sel_uCon=3c10e056-7955-311a-3b21-718a438ad1b2&uTem=73d607d6-b048-65f1-80fa-29f08a07b51a.htm">Arbeitsgemeinschaft der Vermessungsverwaltungender der Länder der Bundesrepublik Deutschland (AdV)</a></h3><ul>
<li><a style="word-break: break-word" href="de_adv_README.txt">de_adv_README.txt</a>. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="de_adv_BETA2007.tif">de_adv_BETA2007.tif</a> - Germany - DHDN (EPSG:4314) to ETRS89 (EPSG:4258). Last modified: 2020-01-24</li>
</ul><hr><h3><a href="https://gdz.bkg.bund.de/index.php/default/digitale-geodaten.html">Bundesamt für Kartographie und Geodäsie (BKG)</a></h3><ul>
<li><a style="word-break: break-word" href="de_bkg_README.txt">de_bkg_README.txt</a>. Last modified: 2023-10-14</li>
<li><a style="word-break: break-word" href="de_bkg_gcg2016.tif">de_bkg_gcg2016.tif</a> - Germany - ETRS89/DREF91/2016 (EPSG:10283) to DHHN2016 height (EPSG:7837). Last modified: 2023-10-14</li>
</ul><hr><h3><a href="https://www.landesvermessung.sachsen.de/download-5608.html?_cp=%7B%22accordion-content-4389%22%3A%7B%222%22%3Atrue%7D%2C%22previousOpen%22%3A%7B%22group%22%3A%22accordion-content-4389%22%2C%22idx%22%3A2%7D%7D">Staatsbetrieb Geobasisinformation und Vermessung Sachsen GeoSN</a></h3><ul>
<li><a style="word-break: break-word" href="de_geosn_README.txt">de_geosn_README.txt</a>. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="de_geosn_NTv2_SN.tif">de_geosn_NTv2_SN.tif</a> - Germany - Saxony - RD/83 (EPSG:4745) to ETRS89 (EPSG:4258). Size: 4.1 MB. Last modified: 2020-01-24</li>
</ul><hr><h3><a href="https://www.hvbg.hessen.de/">Hessisches Landesamt für Bodenmanagement und Geoinformation</a></h3><ul>
<li><a style="word-break: break-word" href="de_hvbg_README.txt">de_hvbg_README.txt</a>. Last modified: 2023-03-28</li>
<li><a style="word-break: break-word" href="de_hvbg_hessen_HeTA2010.tif">de_hvbg_hessen_HeTA2010.tif</a> - Hessen - DHDN (EPSG:4314) to ETRS89 (EPSG:4258). Size: 1.2 MB. Last modified: 2023-03-28</li>
</ul><hr><h3><a href="https://www.lgl-bw.de/">LGL Baden-Württemberg</a></h3><ul>
<li><a style="word-break: break-word" href="de_lgl_bw_README.txt">de_lgl_bw_README.txt</a>. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="de_lgl_bw_BWTA2017.tif">de_lgl_bw_BWTA2017.tif</a> - Germany - Baden-Wurttemberg - DHDN (EPSG:4314) to ETRS89 (EPSG:4258). Size: 69.6 MB. Last modified: 2020-01-24</li>
</ul><hr><h3><a href="https://www.saarland.de/">LVGL Saarland</a></h3><ul>
<li><a style="word-break: break-word" href="de_lgvl_saarland_README.txt">de_lgvl_saarland_README.txt</a>. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="de_lgvl_saarland_SeTa2016.tif">de_lgvl_saarland_SeTa2016.tif</a> - Germany - Saarland - DHDN (EPSG:4314) to ETRS89 (EPSG:4258). Last modified: 2020-01-24</li>
</ul><hr><h3><a href="https://tlbg.thueringen.de/">Thüringer Landesamt für Bodenmanagement und Geoinformation</a></h3><ul>
<li><a style="word-break: break-word" href="de_tlbg_thueringen_README.txt">de_tlbg_thueringen_README.txt</a>. Last modified: 2024-11-01</li>
<li><a style="word-break: break-word" href="de_tlbg_thueringen_NTv2gridTH.tif">de_tlbg_thueringen_NTv2gridTH.tif</a> - Germany - Thuringen - PD/83 (EPSG:4746) to ETRS89 (EPSG:4258). Last modified: 2024-10-31</li>
</ul><hr><h3><a href="https://github.com/NordicGeodesy/NordicTransformations">Danish Agency for Data Supply and Efficiency</a></h3><ul>
<li><a style="word-break: break-word" href="dk_sdfe_README.txt">dk_sdfe_README.txt</a>. Last modified: 2024-01-04</li>
<li><a style="word-break: break-word" href="DK">DK</a>. Last modified: 2024-01-04</li>
<li><a style="word-break: break-word" href="FO">FO</a>. Last modified: 2020-01-25</li>
<li><a style="word-break: break-word" href="dk_sdfe_DK_bornholm.pol">dk_sdfe_DK_bornholm.pol</a>. Last modified: 2020-01-25</li>
<li><a style="word-break: break-word" href="dk_sdfe_DK_bridges.pol">dk_sdfe_DK_bridges.pol</a>. Last modified: 2020-01-25</li>
<li><a style="word-break: break-word" href="dk_sdfe_DK_general.pol">dk_sdfe_DK_general.pol</a>. Last modified: 2020-01-25</li>
<li><a style="word-break: break-word" href="dk_sdfe_DK_jutland.pol">dk_sdfe_DK_jutland.pol</a>. Last modified: 2020-01-25</li>
<li><a style="word-break: break-word" href="dk_sdfe_DK_zealand.pol">dk_sdfe_DK_zealand.pol</a>. Last modified: 2020-01-25</li>
<li><a style="word-break: break-word" href="dk_sdfe_FO_fk89.pol">dk_sdfe_FO_fk89.pol</a>. Last modified: 2020-01-25</li>
<li><a style="word-break: break-word" href="dk_sdfe_dnn.tif">dk_sdfe_dnn.tif</a> - Denmark - ETRS89 (EPSG:4937) to DNN height (EPSG:5733). Size: 1.8 MB. Last modified: 2021-01-27</li>
<li><a style="word-break: break-word" href="dk_sdfe_fvr09.tif">dk_sdfe_fvr09.tif</a> - Faroe Islands - ETRS89 (EPSG:4937) to FVR09 height (EPSG:5317). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="dk_sdfe_gvr2000.tif">dk_sdfe_gvr2000.tif</a> - Greenland - GR96 (EPSG:4909) to GVR2000 height (EPSG:8266). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="dk_sdfe_gvr2016.tif">dk_sdfe_gvr2016.tif</a> - Greenland - GR96 (EPSG:4909) to GVR2016 height (EPSG:8267). Size: 6.8 MB. Last modified: 2020-01-24</li>
</ul><hr><h3><a href="https://sdfi.dk">Danish Agency for Data Supply and Infrastructure</a></h3><ul>
<li><a style="word-break: break-word" href="dk_sdfi_README.txt">dk_sdfi_README.txt</a>. Last modified: 2024-08-28</li>
<li><a style="word-break: break-word" href="dk_sdfi_dklat_2022.tif">dk_sdfi_dklat_2022.tif</a> - Denmark - offshore - LAT model for DKLAT(2022). ETRS89 (EPSG:4937) to DKLAT(2022) depth. Size: 1.0 MB. Last modified: 2024-05-08</li>
<li><a style="word-break: break-word" href="dk_sdfi_dklat_2023.tif">dk_sdfi_dklat_2023.tif</a> - Denmark - offshore - LAT model for DKLAT(2023). ETRS89 (EPSG:4937) to DKLAT(2023) depth. Size: 1.0 MB. Last modified: 2024-05-08</li>
<li><a style="word-break: break-word" href="dk_sdfi_dkmsl_2022.tif">dk_sdfi_dkmsl_2022.tif</a> - Denmark - offshore - MSL model for DKMSL(2022). ETRS89 (EPSG:4937) to DKMSL(2022) depth. Size: 1.0 MB. Last modified: 2024-05-08</li>
<li><a style="word-break: break-word" href="dk_sdfi_dkmsl_2023.tif">dk_sdfi_dkmsl_2023.tif</a> - Denmark - offshore - MSL model for DKMSL(2023). ETRS89 (EPSG:4937) to DKMSL(2023) depth. Size: 1.0 MB. Last modified: 2024-05-08</li>
<li><a style="word-break: break-word" href="dk_sdfi_dvr90_2002.tif">dk_sdfi_dvr90_2002.tif</a> - Denmark - onshore - Geoid model for DVR90(2002). ETRS89 (EPSG:4937) to DVR90(2002) height (EPSG:10483). . Last modified: 2024-01-04</li>
<li><a style="word-break: break-word" href="dk_sdfi_dvr90_2013.tif">dk_sdfi_dvr90_2013.tif</a> - Denmark - onshore - Geoid model for DVR90(2013). ETRS89 (EPSG:4937) to DVR90(2013) height (EPSG:10484). Last modified: 2024-01-04</li>
<li><a style="word-break: break-word" href="dk_sdfi_dvr90_2023.tif">dk_sdfi_dvr90_2023.tif</a> - Denmark - onshore - Geoid model for DVR90(2023). ETRS89 (EPSG:4937) to DVR90(2023) height (EPSG:10485). Last modified: 2024-01-04</li>
<li><a style="word-break: break-word" href="dk_sdfi_gllat_2023.tif">dk_sdfi_gllat_2023.tif</a> - Greenland - offshore - LAT model for GLLAT(2023). GR96 (EPSG:4909) to GLLAT(2023) depth (EPSG:10650). Size: 22.2 MB. Last modified: 2024-08-28</li>
<li><a style="word-break: break-word" href="dk_sdfi_gllmsl_2022.tif">dk_sdfi_gllmsl_2022.tif</a> - Greenland - onshore - Transformation grid from GLLMSL(2022) to GVR2016.. Last modified: 2024-05-08</li>
<li><a style="word-break: break-word" href="dk_sdfi_glmsl_2023.tif">dk_sdfi_glmsl_2023.tif</a> - Greenland - offshore - MSL model for GLMSL(2023). GR96 (EPSG:4909) to GLMSL(2023) depth (EPSG:10649). Size: 21.7 MB. Last modified: 2024-08-28</li>
<li><a style="word-break: break-word" href="dk_sdfi_gs_2022.tif">dk_sdfi_gs_2022.tif</a> - Denmark - onshore Jutland, Funen, Zealand and Lolland - Transformation grid from ETRS89 to the GS intermediate datum. Last modified: 2023-05-24</li>
<li><a style="word-break: break-word" href="dk_sdfi_gsb_2022.tif">dk_sdfi_gsb_2022.tif</a> - Denmark - onshore Bornholm - Transformation grid from ETRS89 to the GSB intermediate datum. Last modified: 2023-05-24</li>
<li><a style="word-break: break-word" href="dk_sdfi_kk_2022.tif">dk_sdfi_kk_2022.tif</a> - Denmark - Copenhagen - Transformation grid from ETRS89 to the KK intermediate datum. Last modified: 2023-05-24</li>
<li><a style="word-break: break-word" href="dk_sdfi_os_2022.tif">dk_sdfi_os_2022.tif</a> - Denmark - northern Schleswig - Transformation grid from ETRS89 to the OS intermediate datum. Last modified: 2023-05-24</li>
<li><a style="word-break: break-word" href="dk_sdfi_s34j_2022.tif">dk_sdfi_s34j_2022.tif</a> - Denmark - onshore Jutland and Funen - Transformation grid from ETRS89 to the S34J intermediate datum. Size: 1.0 MB. Last modified: 2023-05-24</li>
<li><a style="word-break: break-word" href="dk_sdfi_s34s_2022.tif">dk_sdfi_s34s_2022.tif</a> - Denmark - onshore Zealand and Lolland - Transformation grid from ETRS89 to the S34S intermediate datum. Last modified: 2023-05-24</li>
<li><a style="word-break: break-word" href="dk_sdfi_s45b_2022.tif">dk_sdfi_s45b_2022.tif</a> - Denmark - onshore Bornholm - Transformation grid from ETRS89 to the S45B intermediate datum. Last modified: 2023-05-24</li>
</ul><hr><h3><a href="http://www.icgc.cat/">Institut Cartogràfic i Geològic de Catalunya (ICGC)</a></h3><ul>
<li><a style="word-break: break-word" href="es_cat_icgc_README.txt">es_cat_icgc_README.txt</a>. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="es_cat_icgc_100800401.tif">es_cat_icgc_100800401.tif</a> - Spain - Catalonia - ED50 (EPSG:4230) to ETRS89 (EPSG:4258). Last modified: 2020-01-24</li>
</ul><hr><h3><a href="https://www.ign.es/">Instituto Geográfico Nacional (IGN)</a></h3><ul>
<li><a style="word-break: break-word" href="es_ign_README.txt">es_ign_README.txt</a>. Last modified: 2020-08-05</li>
<li><a style="word-break: break-word" href="es_ign_SPED2ETV2.tif">es_ign_SPED2ETV2.tif</a> - Spain - mainland and Balearic Islands - ED50 (EPSG:4230) to ETRS89 (EPSG:4258). Last modified: 2020-06-12</li>
<li><a style="word-break: break-word" href="es_ign_egm08-rednap-canarias.tif">es_ign_egm08-rednap-canarias.tif</a> - Spain - Canary Islands - REGCAN95 (EPSG:4080) to Gran Canaria height (EPSG:9397). Last modified: 2020-08-05</li>
<li><a style="word-break: break-word" href="es_ign_egm08-rednap.tif">es_ign_egm08-rednap.tif</a> - Spain - mainland and Balearic Islands - ETRS89 (EPSG:4937) to Alicante height (EPSG:5782). Last modified: 2020-06-09</li>
</ul><hr><h3><a href="http://www.nordicgeodeticcommission.com/">The Nordic Geodetic Commission</a></h3><ul>
<li><a style="word-break: break-word" href="eur_nkg_README.txt">eur_nkg_README.txt</a>. Last modified: 2020-12-21</li>
<li><a style="word-break: break-word" href="NKG">NKG</a>. Last modified: 2020-06-02</li>
<li><a style="word-break: break-word" href="eur_nkg_nkgrf03vel_realigned.tif">eur_nkg_nkgrf03vel_realigned.tif</a> - Nordic and Baltic countries - 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. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="eur_nkg_nkgrf17vel.tif">eur_nkg_nkgrf17vel.tif</a> - Nordic and Baltic countries - 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. Last modified: 2020-12-21</li>
</ul><hr><h3><a href="https://www.maanmittauslaitos.fi">National Land Survey of Finland (MML)</a></h3><ul>
<li><a style="word-break: break-word" href="fi_nls_README.txt">fi_nls_README.txt</a>. Last modified: 2024-12-16</li>
<li><a style="word-break: break-word" href="fi_nls_fin2000.tif">fi_nls_fin2000.tif</a> - Finland - EUREF-FIN (EPSG:10689) to N60 height (EPSG:5717). Last modified: 2024-12-16</li>
<li><a style="word-break: break-word" href="fi_nls_fin2005n00.tif">fi_nls_fin2005n00.tif</a> - Finland - EUREF-FIN (EPSG:10689) to N2000 height (EPSG:3900). Last modified: 2024-12-16</li>
<li><a style="word-break: break-word" href="fi_nls_fin2023n2000.tif">fi_nls_fin2023n2000.tif</a> - Finland - EUREF-FIN (EPSG:10689) to N2000 height (EPSG:3900). Size: 1.1 MB. Last modified: 2024-12-16</li>
<li><a style="word-break: break-word" href="fi_nls_n43_n60.json">fi_nls_n43_n60.json</a> - N43 height (EPSG:8675) to N60 height (EPSG:5717), with interpolation CRS being YKJ (EPSG:2393), with easting/northing order (version 1.0). Last modified: 2020-10-24</li>
<li><a style="word-break: break-word" href="fi_nls_n60_n2000.json">fi_nls_n60_n2000.json</a> - N60 height (EPSG:5717) to N2000 height(EPSG:3900), with interpolation CRS being YKJ (EPSG:2393), with easting/northing order (version 1.0). Last modified: 2020-10-24</li>
<li><a style="word-break: break-word" href="fi_nls_ykj_etrs35fin.json">fi_nls_ykj_etrs35fin.json</a> - Triangulation to transform coordinates from YKJ (EPSG:2393), with easting/northing order, to ETRS35FIN (EPSG:3067) (version 1.0). Last modified: 2020-10-24</li>
</ul><hr><h3><a href="http://www.ign.fr/">IGN France</a></h3><ul>
<li><a style="word-break: break-word" href="fr_ign_README.txt">fr_ign_README.txt</a>. Last modified: 2025-01-06</li>
<li><a style="word-break: break-word" href="fr_ign_CGVD2013RGSPM06.tif">fr_ign_CGVD2013RGSPM06.tif</a> - France - Saint-Pierre et Miquelon - RGSPM06 (EPSG:4466) to CGVD2013(CGG2013) height (EPSG:6647). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="fr_ign_RAC09.tif">fr_ign_RAC09.tif</a> - France - Corsica - RGF93 (EPSG:4965) to NGF-IGN78 height (EPSG:5721). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="fr_ign_RAC23.tif">fr_ign_RAC23.tif</a> - France - Corsica - RGF93 v2b (EPSG:9781) to NGF-IGN78 height (EPSG:5721). Last modified: 2023-11-30</li>
<li><a style="word-break: break-word" href="fr_ign_RAF09.tif">fr_ign_RAF09.tif</a> - France - RGF93 (EPSG:4965) to NGF-IGN69 height (EPSG:5720). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="fr_ign_RAF18.tif">fr_ign_RAF18.tif</a> - France - RGF93 (EPSG:4965) to NGF-IGN69 height (EPSG:5720). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="fr_ign_RAF18b.tif">fr_ign_RAF18b.tif</a> - France - RGF93 (EPSG:4965) to NGF-IGN69 height (EPSG:5720). Last modified: 2021-05-16</li>
<li><a style="word-break: break-word" href="fr_ign_RAF20.tif">fr_ign_RAF20.tif</a> - France - mainland onshore - From RGF93 v2b (EPSG:9781) to NGF-IGN69 height (EPSG:5720). Last modified: 2022-06-09</li>
<li><a style="word-break: break-word" href="fr_ign_RAGTBT2016.tif">fr_ign_RAGTBT2016.tif</a> - France - Antilles - Guadeloupe - RGAF09 (EPSG:5488) to Guadeloupe 1988 height (EPSG:5757). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="fr_ign_RALD2016.tif">fr_ign_RALD2016.tif</a> - France - Antilles - La Desirade - RGAF09 (EPSG:5488) to IGN 2008 LD height (EPSG:9130). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="fr_ign_RALDW842016.tif">fr_ign_RALDW842016.tif</a> - France - Antilles - La Desirade - RRAF 1991 (EPSG:4557) to IGN 2008 LD height (EPSG:9130). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="fr_ign_RALS2016.tif">fr_ign_RALS2016.tif</a> - France - Antilles - Les Saintes - RGAF09 (EPSG:5488) to IGN 1988 LS height (EPSG:5616). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="fr_ign_RAMART2016.tif">fr_ign_RAMART2016.tif</a> - France - Antilles - Martinique - RGAF09 (EPSG:5488) to Martinique 1987 height (EPSG:5756). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="fr_ign_RAMG2016.tif">fr_ign_RAMG2016.tif</a> - France - Antilles - Marie Galante - RGAF09 (EPSG:5488) to IGN 1988 MG height (EPSG:5617). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="fr_ign_RAR07_bl.tif">fr_ign_RAR07_bl.tif</a> - France - La Reunion - RGR92 (EPSG:4971) to Reunion 1989 height (EPSG:5758). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="fr_ign_RASPM2018.tif">fr_ign_RASPM2018.tif</a> - France - Saint-Pierre et Miquelon - RGSPM06 (EPSG:4466) to Danger 1950 height (EPSG:5792). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="fr_ign_RGM04versRGM23.tif">fr_ign_RGM04versRGM23.tif</a> - Mayotte - Geocentric translation from RGM04 (EPSG:4468) to RGM23 (EPSG:10669). Last modified: 2025-01-06</li>
<li><a style="word-break: break-word" href="fr_ign_gg10_sbv2.tif">fr_ign_gg10_sbv2.tif</a> - France - Antilles - Saint Barthelemy - RGAF09 (EPSG:5488) to IGN 1988 SB height (EPSG:5619). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="fr_ign_gg10_smv2.tif">fr_ign_gg10_smv2.tif</a> - France - Antilles - Saint Martin - RGAF09 (EPSG:5488) to IGN 1988 SM height (EPSG:5620). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="fr_ign_ggg00_lsv2.tif">fr_ign_ggg00_lsv2.tif</a> - France - Antilles - Les Saintes - RRAF 1991 (EPSG:4557) to IGN 1988 LS height (EPSG:5616). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="fr_ign_ggg00_mgv2.tif">fr_ign_ggg00_mgv2.tif</a> - France - Antilles - Marie Galante - RRAF 1991 (EPSG:4557) to IGN 1988 MG height (EPSG:5617). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="fr_ign_ggg00_sbv2.tif">fr_ign_ggg00_sbv2.tif</a> - France - Antilles - Saint Barthelemy - RRAF 1991 (EPSG:4557) to IGN 1988 SB height (EPSG:5619). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="fr_ign_ggg00_smv2.tif">fr_ign_ggg00_smv2.tif</a> - France - Antilles - Saint Martin - RRAF 1991 (EPSG:4557) to IGN 1988 SM height (EPSG:5620). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="fr_ign_ggg00v2.tif">fr_ign_ggg00v2.tif</a> - France - Antilles - Guadeloupe - RRAF 1991 (EPSG:4557) to Guadeloupe 1988 height (EPSG:5757). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="fr_ign_ggguy15.tif">fr_ign_ggguy15.tif</a> - France - Guyane - RGFG95 (EPSG:4967) to NGG1977 height (EPSG:5755). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="fr_ign_ggker08v2.tif">fr_ign_ggker08v2.tif</a> - France - Kerguelen - RGTAAF07 (EPSG:7072) to IGN 1962 (KERGUELEN) (IGNF:KERG62). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="fr_ign_ggm00v2.tif">fr_ign_ggm00v2.tif</a> - France - Antilles - Martinique - RRAF 1991 (EPSG:4557) to Martinique 1987 height (EPSG:5756). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="fr_ign_ggm04v1.tif">fr_ign_ggm04v1.tif</a> - France - Mayotte - RGM04 (EPSG:4469) to SHOM 1953 (MAYOTTE) (IGNF:MAYO53). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="fr_ign_ggpf02-Bora.tif">fr_ign_ggpf02-Bora.tif</a> - France - Polynesia - Bora bora - RGPF (EPSG:4999) to Bora Bora SAU 2001 height (EPSG:5607). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="fr_ign_ggpf02-Huahine.tif">fr_ign_ggpf02-Huahine.tif</a> - France - Polynesia - Huahine - RGPF (EPSG:4999) to Huahine SAU 2001 height (EPSG:5605). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="fr_ign_ggpf02-Maiao.tif">fr_ign_ggpf02-Maiao.tif</a> - France - Polynesia - Maiao - RGPF (EPSG:4999) to MAIAO 2001 height. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="fr_ign_ggpf02-Maupiti.tif">fr_ign_ggpf02-Maupiti.tif</a> - France - Polynesia - Maupiti - RGPF (EPSG:4999) to Maupiti SAU 2001 height (EPSG:5604). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="fr_ign_ggpf02-Raiatea.tif">fr_ign_ggpf02-Raiatea.tif</a> - France - Polynesia - Raietea - RGPF (EPSG:4999) to Raiatea SAU 2001 height (EPSG:5603). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="fr_ign_ggpf02-Tahaa.tif">fr_ign_ggpf02-Tahaa.tif</a> - France - Polynesia - Tahaa - RGPF (EPSG:4999) to Tahaa SAU 2001 height (EPSG:5606). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="fr_ign_ggpf02-Tupai.tif">fr_ign_ggpf02-Tupai.tif</a> - France - Polynesia - Tupai - RGPF (EPSG:4999) to TUPAI 2001 height. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="fr_ign_ggpf05-HivaOa.tif">fr_ign_ggpf05-HivaOa.tif</a> - France - Polynesia - Hiva Oa - RGPF (EPSG:4999) to HIVA OA height. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="fr_ign_ggpf05-Nuku.tif">fr_ign_ggpf05-Nuku.tif</a> - France - Polynesia - Nuku Hiva - RGPF (EPSG:4999) to NUKU height. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="fr_ign_ggpf08-Fakarava.tif">fr_ign_ggpf08-Fakarava.tif</a> - France - Polynesia - Fakarava - RGPF (EPSG:4999) to IGN 1966 height (EPSG:5601). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="fr_ign_ggpf08-Gambier.tif">fr_ign_ggpf08-Gambier.tif</a> - France - Polynesia - Gambier - RGPF (EPSG:4999) to GAMBIER height. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="fr_ign_ggpf08-Hao.tif">fr_ign_ggpf08-Hao.tif</a> - France - Polynesia - Hao - RGPF (EPSG:4999) to HAO height. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="fr_ign_ggpf08-Mataiva.tif">fr_ign_ggpf08-Mataiva.tif</a> - France - Polynesia - Mataiva - RGPF (EPSG:4999) to MATAIVA height. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="fr_ign_ggpf08-Raivavae.tif">fr_ign_ggpf08-Raivavae.tif</a> - France - Polynesia - Raivavae - RGPF (EPSG:4999) to Raivavae height. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="fr_ign_ggpf08-Reao.tif">fr_ign_ggpf08-Reao.tif</a> - France - Polynesia - Reao - RGPF (EPSG:4999) to Reao height. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="fr_ign_ggpf08-Rurutu.tif">fr_ign_ggpf08-Rurutu.tif</a> - France - Polynesia - Rurutu - RGPF (EPSG:4999) to Rurutu height. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="fr_ign_ggpf08-Tikehau.tif">fr_ign_ggpf08-Tikehau.tif</a> - France - Polynesia - Tikehau - RGPF (EPSG:4999) to Tikehau height. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="fr_ign_ggpf08-Tubuai.tif">fr_ign_ggpf08-Tubuai.tif</a> - France - Polynesia - Tubuai - RGPF (EPSG:4999) to Tubuai height. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="fr_ign_ggpf10-Moorea.tif">fr_ign_ggpf10-Moorea.tif</a> - France - Polynesia - Moorea - RGPF (EPSG:4999) to Moorea SAU 1981 height (EPSG:5602). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="fr_ign_ggpf10-Tahiti.tif">fr_ign_ggpf10-Tahiti.tif</a> - France - Polynesia - Tahiti - RGPF (EPSG:4999) to IGN 1966 height (EPSG:5601). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="fr_ign_ggspm06v1.tif">fr_ign_ggspm06v1.tif</a> - France - Saint-Pierre et Miquelon - RGSPM06 (EPSG:4466) to Danger 1950 height (EPSG:5792). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="fr_ign_gr3df97a.tif">fr_ign_gr3df97a.tif</a> - France - Geocentric translation from NTF (IGNF:NTF) to RGF93 (EPSG:4964). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="fr_ign_ntf_r93.tif">fr_ign_ntf_r93.tif</a> - France - NTF (EPSG:4275) to RGF93 (EPSG:4171). Last modified: 2020-01-24</li>
</ul><hr><h3><a href="https://geod.bme.hu/geod/hirek?language=en">Budapest University of Technology and Economics, Department of Geodesy and Surveying</a></h3><ul>
<li><a style="word-break: break-word" href="hu_bme_README.txt">hu_bme_README.txt</a>. Last modified: 2024-11-08</li>
<li><a style="word-break: break-word" href="hu_bme_geoid2014.tif">hu_bme_geoid2014.tif</a> - Hungary - ETRF200 (EPSG:7931) to EOMA 1980 height (EPSG:5787). Last modified: 2024-11-08</li>
<li><a style="word-break: break-word" href="hu_bme_hd72corr.tif">hu_bme_hd72corr.tif</a> - Hungary - HD72 (EPSG:4237) to ETRF2000 (EPSG:9067). Last modified: 2024-11-08</li>
</ul><hr><h3><a href="https://atlas.lmi.is/LmiData/index.php?id=626468364600">National Land Survey of Iceland</a></h3><ul>
<li><a style="word-break: break-word" href="is_lmi_README.txt">is_lmi_README.txt</a>. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="ISL">ISL</a>. Last modified: 2020-01-25</li>
<li><a style="word-break: break-word" href="is_lmi_ISN2004_ISN2016.tif">is_lmi_ISN2004_ISN2016.tif</a> - Iceland - ISN2004 (EPSG:5324) to ISN2016 (EPSG:8086). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="is_lmi_ISN93_ISN2016.tif">is_lmi_ISN93_ISN2016.tif</a> - Iceland - ISN93 (EPSG:4659) to ISN2016 (EPSG:8086). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="is_lmi_ISN_vel_beta.tif">is_lmi_ISN_vel_beta.tif</a> - Iceland - Used in transformations between ISN2016 and global reference frame realisation ITRF2014 with different epochs, also transformation between different epochs within ITRF2014 frame.. Size: 3.0 MB. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="is_lmi_Icegeoid_ISN2004.tif">is_lmi_Icegeoid_ISN2004.tif</a> - Iceland - ISN2004 (EPSG:5323) to ISH2004 height (EPSG:8089). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="is_lmi_Icegeoid_ISN2016.tif">is_lmi_Icegeoid_ISN2016.tif</a> - Iceland - ISN2016 (EPSG:8085) to ISH2004 height (EPSG:8089). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="is_lmi_Icegeoid_ISN93.tif">is_lmi_Icegeoid_ISN93.tif</a> - Iceland - ISN93 (EPSG:4945) to ISH2004 height (EPSG:8089). Last modified: 2020-01-24</li>
</ul><hr><h3><a href="https://www.gsi.go.jp/">Geospatial Information Authority of Japan</a></h3><ul>
<li><a style="word-break: break-word" href="jp_gsi_README.txt">jp_gsi_README.txt</a>. Last modified: 2020-10-28</li>
<li><a style="word-break: break-word" href="jp_gsi_gsigeo2011.tif">jp_gsi_gsigeo2011.tif</a> - Japan - onshore mainland - JDG2011 (EPSG:6667) to JGD2011 (vertical) height (EPSG:6695). Last modified: 2020-10-28</li>
</ul><hr><h3><a href="https://www.inegi.org.mx/">Instituto Nacional de Estadística, Geografía e Informática (INEGI)</a></h3><ul>
<li><a style="word-break: break-word" href="mx_inegi_README.txt">mx_inegi_README.txt</a>. Last modified: 2021-10-07</li>
<li><a style="word-break: break-word" href="mx_inegi_ggm10.tif">mx_inegi_ggm10.tif</a> - Mexico - Mexico ITRF2008 (EPSG:6364) to NAVD88 height (EPSG:5703). Last modified: 2021-10-07</li>
</ul><hr><h3><a href="https://dittt.gouv.nc/circe-pour-la-nouvelle-caledonie">Gouvernement de Nouvelle Calédonie - DITTT</a></h3><ul>
<li><a style="word-break: break-word" href="nc_dittt_README.txt">nc_dittt_README.txt</a>. Last modified: 2023-04-01</li>
<li><a style="word-break: break-word" href="nc_dittt_RANC15.tif">nc_dittt_RANC15.tif</a> - New Caledonia - RGNC15 (lon-lat) (EPSG:10311) to NGNC08 height (EPSG:9351). Last modified: 2023-04-01</li>
<li><a style="word-break: break-word" href="nc_dittt_Ranc08_Circe.tif">nc_dittt_Ranc08_Circe.tif</a> - New Caledonia - RGNC91-93 (EPSG:4907) to NGNC08 height (EPSG:9351). Size: 1.0 MB. Last modified: 2020-05-24</li>
<li><a style="word-break: break-word" href="nc_dittt_gr3dnc01b.tif">nc_dittt_gr3dnc01b.tif</a> - New Caledonia - Geocentric translation from IGN72 GRANDE TERRE (EPSG:4662) to RGNC91-93 (EPSG:4906). Last modified: 2020-03-10</li>
<li><a style="word-break: break-word" href="nc_dittt_gr3dnc02b.tif">nc_dittt_gr3dnc02b.tif</a> - New Caledonia - Geocentric translation from IGN72 GRANDE TERRE (EPSG:4662) to RGNC91-93 (EPSG:4906). Last modified: 2020-03-10</li>
<li><a style="word-break: break-word" href="nc_dittt_gr3dnc03a.tif">nc_dittt_gr3dnc03a.tif</a> - New Caledonia - Geocentric translation from NEA74 Noumea (EPSG:4644) to RGNC91-93 (EPSG:4906). Last modified: 2020-03-10</li>
<li><a style="word-break: break-word" href="nc_dittt_gr3dncI08.tif">nc_dittt_gr3dncI08.tif</a> - New Caledonia - Geocentric translation from RGNC91-93 (EPSG:4906) to RGNC15 (EPSG:10308). Last modified: 2023-04-01</li>
</ul><hr><h3><a href="https://www.nsgi.nl/">Nederlandse Samenwerking Geodetische Infrastructuur (NSGI)</a></h3><ul>
<li><a style="word-break: break-word" href="nl_nsgi_README.txt">nl_nsgi_README.txt</a>. Last modified: 2022-03-15</li>
<li><a style="word-break: break-word" href="nl_nsgi_nlgeo2018.tif">nl_nsgi_nlgeo2018.tif</a> - European Netherlands including EEZ of the North Sea - ETRF2000 (EPSG:7931) to NAP height (EPSG:5709) for RDNAPTRANS2018 implementation variant 1. Last modified: 2022-03-15</li>
<li><a style="word-break: break-word" href="nl_nsgi_rdcorr2018.tif">nl_nsgi_rdcorr2018.tif</a> - European Netherlands including EEZ of the North Sea - Amersfoort, alias RD Bessel, (EPSG:4289) to pseudo Amersfoort, alias pseudo RD Bessel, for RDNAPTRANS2018 implementation variant 1. To transform to ETRF2000 (EPSG:9067), first use rdcorr2018.tif and then the 7-parameter datum transformation with fixed height from Amersfoort, alias RD Bessel, (EPSG:4289) to ETRS89 (EPSG:4258). Last modified: 2022-03-15</li>
<li><a style="word-break: break-word" href="nl_nsgi_rdtrans2018.tif">nl_nsgi_rdtrans2018.tif</a> - European Netherlands including EEZ of the North Sea - Amersfoort, alias RD Bessel, (EPSG:4289) to ETRF2000 (EPSG:9067) for RDNAPTRANS2018 implementation variant 2. Last modified: 2022-03-15</li>
</ul><hr><h3><a href="https://www.kartverket.no/">Kartverket (SK)</a></h3><ul>
<li><a style="word-break: break-word" href="no_kv_README.txt">no_kv_README.txt</a>. Last modified: 2023-12-02</li>
<li><a style="word-break: break-word" href="no_kv_CD_above_Ell_ETRS89_v2021a.tif">no_kv_CD_above_Ell_ETRS89_v2021a.tif</a> - Norway - onshore - ETRS89 height (EPSG:4937) to CD Norway height (EPSG:9672). Size: 1.6 MB. Last modified: 2022-01-05</li>
<li><a style="word-break: break-word" href="no_kv_CD_above_Ell_ETRS89_v2023b.tif">no_kv_CD_above_Ell_ETRS89_v2023b.tif</a> - Norway - inshore and nearshore - ETRS89 height (EPSG:4937) to CD Norway height (EPSG:9672). Size: 2.8 MB. Last modified: 2023-12-02</li>
<li><a style="word-break: break-word" href="no_kv_ETRS89NO_NGO48_TIN.json">no_kv_ETRS89NO_NGO48_TIN.json</a> - Triangulation to transform coordinates from EUREF89 (EPSG:4258) to NGO1948 (EPSG:4273), with longitude/latitude order. (version 1.2). Size: 2.3 MB. Last modified: 2021-03-04</li>
<li><a style="word-break: break-word" href="no_kv_HREF2018B_NN2000_EUREF89.tif">no_kv_HREF2018B_NN2000_EUREF89.tif</a> - Norway - ETRS89 (EPSG:4937) to NN2000 height (EPSG:5941). Last modified: 2021-02-01</li>
<li><a style="word-break: break-word" href="no_kv_NKGETRF14_EPSG7922_2000.tif">no_kv_NKGETRF14_EPSG7922_2000.tif</a> - Norway - onshore - Geocentric translations from NKG:ETRF14 to EPSG:7922. Helmert parameters: Tx: -0.09936 m, Ty: 0.05528 m, Tz: 0.00208 m, Rx: 0.000079211'', Ry: 0.004968272'', Rz: -0.000401427'', Scale: 0.004542683 ppm, Rms: 0.004675 m. LSC parameters: C0: 0.00040 m2, CL: 100 km, Sn: 0.02500 m. Size: 1.9 MB. Last modified: 2022-03-09</li>
<li><a style="word-break: break-word" href="no_kv_arcgp-2006-sk.tif">no_kv_arcgp-2006-sk.tif</a> - Arctic - 81°10'N to 76°10'N, 4°W to 38°E - ETRS89 height (EPSG:4937) to SVD2006 height (EPSG:20000). Last modified: 2022-12-20</li>
<li><a style="word-break: break-word" href="no_kv_href2008a.tif">no_kv_href2008a.tif</a> - Norway - ETRS89 (EPSG:4937) to NN1954 height (EPSG:5776). Last modified: 2021-02-01</li>
</ul><hr><h3><a href="https://www.linz.govt.nz/">Land Information New Zealand</a></h3><ul>
<li><a style="word-break: break-word" href="nz_linz_README.txt">nz_linz_README.txt</a>. Last modified: 2020-05-29</li>
<li><a style="word-break: break-word" href="nz_linz_auckht1946-nzvd2016.tif">nz_linz_auckht1946-nzvd2016.tif</a> - New Zealand - Auckland - NZVD2016 height (EPSG:7839) to Auckland 1946 height (EPSG:5759). Last modified: 2020-02-02</li>
<li><a style="word-break: break-word" href="nz_linz_blufht1955-nzvd2016.tif">nz_linz_blufht1955-nzvd2016.tif</a> - New Zealand - Bluff - NZVD2016 height (EPSG:7839) to Bluff 1955 height (EPSG:5760). Last modified: 2020-02-02</li>
<li><a style="word-break: break-word" href="nz_linz_dublht1960-nzvd2016.tif">nz_linz_dublht1960-nzvd2016.tif</a> - New Zealand - Dunedin-Bluff - NZVD2016 height (EPSG:7839) to Dunedin-Bluff 1960 height (EPSG:4458). Last modified: 2020-02-02</li>
<li><a style="word-break: break-word" href="nz_linz_duneht1958-nzvd2016.tif">nz_linz_duneht1958-nzvd2016.tif</a> - New Zealand - Dunedin - NZVD2016 height (EPSG:7839) to Dunedin 1958 height (EPSG:5761). Last modified: 2020-02-02</li>
<li><a style="word-break: break-word" href="nz_linz_gisbht1926-nzvd2016.tif">nz_linz_gisbht1926-nzvd2016.tif</a> - New Zealand - Gisborne - NZVD2016 height (EPSG:7839) to Gisborne 1926 height (EPSG:5762). Last modified: 2020-02-02</li>
<li><a style="word-break: break-word" href="nz_linz_lyttht1937-nzvd2016.tif">nz_linz_lyttht1937-nzvd2016.tif</a> - New Zealand - Lyttelton - NZVD2016 height (EPSG:7839) to Lyttelton 1937 height (EPSG:5763). Last modified: 2020-02-02</li>
<li><a style="word-break: break-word" href="nz_linz_motuht1953-nzvd2016.tif">nz_linz_motuht1953-nzvd2016.tif</a> - New Zealand - Moturiki - NZVD2016 height (EPSG:7839) to Moturiki 1953 height (EPSG:5764). Last modified: 2020-02-02</li>
<li><a style="word-break: break-word" href="nz_linz_napiht1962-nzvd2016.tif">nz_linz_napiht1962-nzvd2016.tif</a> - New Zealand - Napier - NZVD2016 height (EPSG:7839) to Napier 1962 height (EPSG:5765). Last modified: 2020-02-02</li>
<li><a style="word-break: break-word" href="nz_linz_nelsht1955-nzvd2016.tif">nz_linz_nelsht1955-nzvd2016.tif</a> - New Zealand - Nelson - NZVD2016 height (EPSG:7839) to Nelson 1955 height (EPSG:5766). Last modified: 2020-02-02</li>
<li><a style="word-break: break-word" href="nz_linz_nzgd2000-20000101.json">nz_linz_nzgd2000-20000101.json</a> - New Zealand Deformation Model.
Defines the secular model (National Deformation Model)
and patches for significant deformation events since 2000.
(version 20000101). Last modified: 2020-05-29</li>
<li><a style="word-break: break-word" href="nz_linz_nzgd2000-20130801.json">nz_linz_nzgd2000-20130801.json</a> - New Zealand Deformation Model.
Defines the secular model (National Deformation Model)
and patches for significant deformation events since 2000.
(version 20130801). Last modified: 2020-05-29</li>
<li><a style="word-break: break-word" href="nz_linz_nzgd2000-20140201.json">nz_linz_nzgd2000-20140201.json</a> - New Zealand Deformation Model.
Defines the secular model (National Deformation Model)
and patches for significant deformation events since 2000.
(version 20140201). Last modified: 2020-05-29</li>
<li><a style="word-break: break-word" href="nz_linz_nzgd2000-20150101.json">nz_linz_nzgd2000-20150101.json</a> - New Zealand Deformation Model.
Defines the secular model (National Deformation Model)
and patches for significant deformation events since 2000.
(version 20150101). Last modified: 2020-05-29</li>
<li><a style="word-break: break-word" href="nz_linz_nzgd2000-20160701.json">nz_linz_nzgd2000-20160701.json</a> - New Zealand Deformation Model.
Defines the secular model (National Deformation Model)
and patches for significant deformation events since 2000.
(version 20160701). Last modified: 2020-05-29</li>
<li><a style="word-break: break-word" href="nz_linz_nzgd2000-20171201.json">nz_linz_nzgd2000-20171201.json</a> - New Zealand Deformation Model.
Defines the secular model (National Deformation Model)
and patches for significant deformation events since 2000.
(version 20171201). Last modified: 2020-05-29</li>
<li><a style="word-break: break-word" href="nz_linz_nzgd2000-20180701.json">nz_linz_nzgd2000-20180701.json</a> - New Zealand Deformation Model.
Defines the secular model (National Deformation Model)
and patches for significant deformation events since 2000.
(version 20180701). Last modified: 2020-05-29</li>
<li><a style="word-break: break-word" href="nz_linz_nzgd2000-c120100904-grid01.tif">nz_linz_nzgd2000-c120100904-grid01.tif</a> - NZGD2000 deformation model - Darfield earthquake. Last modified: 2020-05-29</li>
<li><a style="word-break: break-word" href="nz_linz_nzgd2000-c220110222-grid01.tif">nz_linz_nzgd2000-c220110222-grid01.tif</a> - NZGD2000 deformation model - Christchurch February earthquake. Last modified: 2020-05-29</li>
<li><a style="word-break: break-word" href="nz_linz_nzgd2000-c320110613-grid01.tif">nz_linz_nzgd2000-c320110613-grid01.tif</a> - NZGD2000 deformation model - Christchurch June earthquake. Last modified: 2020-05-29</li>
<li><a style="word-break: break-word" href="nz_linz_nzgd2000-c420111223-grid01.tif">nz_linz_nzgd2000-c420111223-grid01.tif</a> - NZGD2000 deformation model - Christchurch earthquake. Last modified: 2020-05-29</li>
<li><a style="word-break: break-word" href="nz_linz_nzgd2000-ch20160214-grid01.tif">nz_linz_nzgd2000-ch20160214-grid01.tif</a> - NZGD2000 deformation model - Christchurch Valentines Day earthquake. Last modified: 2020-05-29</li>
<li><a style="word-break: break-word" href="nz_linz_nzgd2000-cs20130721-grid01.tif">nz_linz_nzgd2000-cs20130721-grid01.tif</a> - NZGD2000 deformation model - Mw 6.6 Cook Strait earthquake. Last modified: 2020-05-29</li>
<li><a style="word-break: break-word" href="nz_linz_nzgd2000-cs20130721-grid02.tif">nz_linz_nzgd2000-cs20130721-grid02.tif</a> - NZGD2000 deformation model - Mw 6.6 Cook Strait earthquake. Last modified: 2020-05-29</li>
<li><a style="word-break: break-word" href="nz_linz_nzgd2000-ds20090715-grid011.tif">nz_linz_nzgd2000-ds20090715-grid011.tif</a> - NZGD2000 deformation model - Dusky Sound (Fiordland) earthquake. Last modified: 2020-05-29</li>
<li><a style="word-break: break-word" href="nz_linz_nzgd2000-ds20090715-grid012.tif">nz_linz_nzgd2000-ds20090715-grid012.tif</a> - NZGD2000 deformation model - Dusky Sound (Fiordland) earthquake. Last modified: 2020-05-29</li>
<li><a style="word-break: break-word" href="nz_linz_nzgd2000-ds20090715-grid013.tif">nz_linz_nzgd2000-ds20090715-grid013.tif</a> - NZGD2000 deformation model - Dusky Sound (Fiordland) earthquake. Last modified: 2020-05-29</li>
<li><a style="word-break: break-word" href="nz_linz_nzgd2000-ds20090715-grid014.tif">nz_linz_nzgd2000-ds20090715-grid014.tif</a> - NZGD2000 deformation model - Dusky Sound (Fiordland) earthquake. Last modified: 2020-05-29</li>
<li><a style="word-break: break-word" href="nz_linz_nzgd2000-gs20071016-grid01.tif">nz_linz_nzgd2000-gs20071016-grid01.tif</a> - NZGD2000 deformation model - Fiordland (George Sound) earthquake. Last modified: 2020-05-29</li>
<li><a style="word-break: break-word" href="nz_linz_nzgd2000-ka20161114-grid01.tif">nz_linz_nzgd2000-ka20161114-grid01.tif</a> - NZGD2000 deformation model - Event: Kaikoura earthquake, 14 November 2016. Source model: Geodetic source model, based on GPS, InSAR, and LiDAR data; elastic half-space assumption; . Version: Model 002, 23 June 2017. . Last modified: 2020-05-29</li>
<li><a style="word-break: break-word" href="nz_linz_nzgd2000-ka20161114-grid02.tif">nz_linz_nzgd2000-ka20161114-grid02.tif</a> - NZGD2000 deformation model - Event: Kaikoura earthquake, 14 November 2016. Source model: Geodetic source model, based on GPS, InSAR, and LiDAR data; elastic half-space assumption; . Version: Model 002, 23 June 2017. . Size: 1.0 MB. Last modified: 2020-05-29</li>
<li><a style="word-break: break-word" href="nz_linz_nzgd2000-ka20161114-grid03.tif">nz_linz_nzgd2000-ka20161114-grid03.tif</a> - NZGD2000 deformation model - Event: Kaikoura earthquake, 14 November 2016. Source model: Geodetic source model, based on GPS, InSAR, and LiDAR data; elastic half-space assumption; . Version: Model 002, 23 June 2017. . Last modified: 2020-05-29</li>
<li><a style="word-break: break-word" href="nz_linz_nzgd2000-ka20161114-grid04.tif">nz_linz_nzgd2000-ka20161114-grid04.tif</a> - NZGD2000 deformation model - Event: Kaikoura earthquake postearthquake month 0-1, 14 November 2016. Source model: Geodetic source model, based on GPS, InSAR, and LiDAR data; elastic half-space assumption; . Version: Model 002, 23 June 2017. . Last modified: 2020-05-29</li>
<li><a style="word-break: break-word" href="nz_linz_nzgd2000-ka20161114-grid05.tif">nz_linz_nzgd2000-ka20161114-grid05.tif</a> - NZGD2000 deformation model - Event: Kaikoura earthquake postearthquake month 0-1, 14 November 2016. Source model: Geodetic source model, based on GPS, InSAR, and LiDAR data; elastic half-space assumption; . Version: Model 002, 23 June 2017. . Last modified: 2020-05-29</li>
<li><a style="word-break: break-word" href="nz_linz_nzgd2000-ka20161114-grid06.tif">nz_linz_nzgd2000-ka20161114-grid06.tif</a> - NZGD2000 deformation model - Event: Kaikoura earthquake postearthquake month 0-1, 14 November 2016. Source model: Geodetic source model, based on GPS, InSAR, and LiDAR data; elastic half-space assumption; . Version: Model 002, 23 June 2017. . Last modified: 2020-05-29</li>
<li><a style="word-break: break-word" href="nz_linz_nzgd2000-ka20161114-grid07.tif">nz_linz_nzgd2000-ka20161114-grid07.tif</a> - NZGD2000 deformation model - Event: Kaikoura earthquake months1-3 post-earthquake, 14 November 2016. Source model: Geodetic source model, based on GPS, InSAR, and LiDAR data; elastic half-space assumption; . Version: Model 002, 23 June 2017. . Last modified: 2020-05-29</li>
<li><a style="word-break: break-word" href="nz_linz_nzgd2000-ka20161114-grid08.tif">nz_linz_nzgd2000-ka20161114-grid08.tif</a> - NZGD2000 deformation model - Event: Kaikoura earthquake months1-3 post-earthquake, 14 November 2016. Source model: Geodetic source model, based on GPS, InSAR, and LiDAR data; elastic half-space assumption; . Version: Model 002, 23 June 2017. . Last modified: 2020-05-29</li>
<li><a style="word-break: break-word" href="nz_linz_nzgd2000-ka20161114-grid09.tif">nz_linz_nzgd2000-ka20161114-grid09.tif</a> - NZGD2000 deformation model - Event: Kaikoura earthquake months1-3 post-earthquake, 14 November 2016. Source model: Geodetic source model, based on GPS, InSAR, and LiDAR data; elastic half-space assumption; . Version: Model 002, 23 June 2017. . Last modified: 2020-05-29</li>
<li><a style="word-break: break-word" href="nz_linz_nzgd2000-ka20161114-grid10.tif">nz_linz_nzgd2000-ka20161114-grid10.tif</a> - NZGD2000 deformation model - Event: Kaikoura earthquake, 14 November 2016. Refinement for horizontal difference between observations and model. Last modified: 2020-05-29</li>
<li><a style="word-break: break-word" href="nz_linz_nzgd2000-ka20161114-grid11.tif">nz_linz_nzgd2000-ka20161114-grid11.tif</a> - NZGD2000 deformation model - Kaikoura earthquake second refinement grid - horizontal. Last modified: 2020-05-29</li>
<li><a style="word-break: break-word" href="nz_linz_nzgd2000-ka20161114-grid12.tif">nz_linz_nzgd2000-ka20161114-grid12.tif</a> - NZGD2000 deformation model - Kaikoura earthquake second refinement grid -vertical. Last modified: 2020-05-29</li>
<li><a style="word-break: break-word" href="nz_linz_nzgd2000-lg20130816-grid01.tif">nz_linz_nzgd2000-lg20130816-grid01.tif</a> - NZGD2000 deformation model - Mw 6.6 Lake Grassmere earthquake. Last modified: 2020-05-29</li>
<li><a style="word-break: break-word" href="nz_linz_nzgd2000-lg20130816-grid02.tif">nz_linz_nzgd2000-lg20130816-grid02.tif</a> - NZGD2000 deformation model - Mw 6.6 Lake Grassmere earthquake. Last modified: 2020-05-29</li>
<li><a style="word-break: break-word" href="nz_linz_nzgd2000-mq20041223-grid011.tif">nz_linz_nzgd2000-mq20041223-grid011.tif</a> - NZGD2000 deformation model - Macquarie Plate earthquake. Last modified: 2020-05-29</li>
<li><a style="word-break: break-word" href="nz_linz_nzgd2000-mq20041223-grid012.tif">nz_linz_nzgd2000-mq20041223-grid012.tif</a> - NZGD2000 deformation model - Macquarie Plate earthquake. Last modified: 2020-05-29</li>
<li><a style="word-break: break-word" href="nz_linz_nzgd2000-mq20041223-grid013.tif">nz_linz_nzgd2000-mq20041223-grid013.tif</a> - NZGD2000 deformation model - Macquarie Plate earthquake. Last modified: 2020-05-29</li>
<li><a style="word-break: break-word" href="nz_linz_nzgd2000-mq20041223-grid014.tif">nz_linz_nzgd2000-mq20041223-grid014.tif</a> - NZGD2000 deformation model - Macquarie Plate earthquake. Last modified: 2020-05-29</li>
<li><a style="word-break: break-word" href="nz_linz_nzgd2000-mq20041223-grid015.tif">nz_linz_nzgd2000-mq20041223-grid015.tif</a> - NZGD2000 deformation model - Macquarie Plate earthquake. Last modified: 2020-05-29</li>
<li><a style="word-break: break-word" href="nz_linz_nzgd2000-mq20041223-grid016.tif">nz_linz_nzgd2000-mq20041223-grid016.tif</a> - NZGD2000 deformation model - Macquarie Plate earthquake. Last modified: 2020-05-29</li>
<li><a style="word-break: break-word" href="nz_linz_nzgd2000-ndm-grid01.tif">nz_linz_nzgd2000-ndm-grid01.tif</a> - NZGD2000 deformation model - Secular deformation model derived from GNS model 1998b. Last modified: 2020-05-29</li>
<li><a style="word-break: break-word" href="nz_linz_nzgd2000-ndm-grid02.tif">nz_linz_nzgd2000-ndm-grid02.tif</a> - NZGD2000 deformation model - Secular deformation model derived from NUVEL-1A rotation rates. Last modified: 2020-05-29</li>
<li><a style="word-break: break-word" href="nz_linz_nzgd2000-si20030821-grid01.tif">nz_linz_nzgd2000-si20030821-grid01.tif</a> - NZGD2000 deformation model - Secretary Island (Fiordland) earthquake. Last modified: 2020-05-29</li>
<li><a style="word-break: break-word" href="nz_linz_nzgd2kgrid0005.tif">nz_linz_nzgd2kgrid0005.tif</a> - New Zealand - NZGD49 (EPSG:4272) to NZGD2000 (EPSG:4167). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="nz_linz_nzgeoid2009.tif">nz_linz_nzgeoid2009.tif</a> - New Zealand - NZGD2000 (EPSG:4959) to NZVD2009 height (EPSG:4440). Size: 4.1 MB. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="nz_linz_nzgeoid2016.tif">nz_linz_nzgeoid2016.tif</a> - New Zealand - NZGD2000 (EPSG:4959) to NZVD2016 height (EPSG:7839). Size: 5.0 MB. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="nz_linz_ontpht1964-nzvd2016.tif">nz_linz_ontpht1964-nzvd2016.tif</a> - New Zealand - One Tree Point - NZVD2016 height (EPSG:7839) to One Tree Point 1964 height (EPSG:5767). Last modified: 2020-02-02</li>
<li><a style="word-break: break-word" href="nz_linz_stisht1977-nzvd2016.tif">nz_linz_stisht1977-nzvd2016.tif</a> - New Zealand - Stewart Island - NZVD2016 height (EPSG:7839) to Stewart Island 1977 height (EPSG:5772). Last modified: 2020-02-02</li>
<li><a style="word-break: break-word" href="nz_linz_taraht1970-nzvd2016.tif">nz_linz_taraht1970-nzvd2016.tif</a> - New Zealand - Taranaki - NZVD2016 height (EPSG:7839) to Taranaki 1970 height (EPSG:5769). Last modified: 2020-02-02</li>
<li><a style="word-break: break-word" href="nz_linz_wellht1953-nzvd2016.tif">nz_linz_wellht1953-nzvd2016.tif</a> - New Zealand - Wellington - NZVD2016 height (EPSG:7839) to Wellington 1953 height (EPSG:5770). Last modified: 2020-02-02</li>
</ul><hr><h3><a href="https://www.gov.pl/web/gugik/">Główny Urząd Geodezji i Kartografii (GUGiK)</a></h3><ul>
<li><a style="word-break: break-word" href="pl_gugik_README.txt">pl_gugik_README.txt</a>. Last modified: 2023-07-10</li>
<li><a style="word-break: break-word" href="pl_gugik_geoid2011-PL-EVRF2007-NH.tif">pl_gugik_geoid2011-PL-EVRF2007-NH.tif</a> - Poland - onshore - ETRF2000-PL (EPSG:9701) to EVRF2007-PL height (EPSG:9651). Last modified: 2021-11-20</li>
<li><a style="word-break: break-word" href="pl_gugik_geoid2011-PL-KRON86-NH.tif">pl_gugik_geoid2011-PL-KRON86-NH.tif</a> - Poland - onshore - ETRF2000-PL (EPSG:9701) to Baltic 1986 height (EPSG:9650). Last modified: 2021-11-20</li>
<li><a style="word-break: break-word" href="pl_gugik_geoid2021-PL-EVRF2007-NH.tif">pl_gugik_geoid2021-PL-EVRF2007-NH.tif</a> - Poland - onshore - ETRF2000-PL (EPSG:9701) to EVRF2007-PL height (EPSG:9651). Last modified: 2023-07-10</li>
</ul><hr><h3><a href="http://www.dgterritorio.pt/">DG Territorio</a></h3><ul>
<li><a style="word-break: break-word" href="pt_dgt_README.txt">pt_dgt_README.txt</a>. Last modified: 2024-02-25</li>
<li><a style="word-break: break-word" href="pt_dgt_D73_ETRS89_geo.tif">pt_dgt_D73_ETRS89_geo.tif</a> - Portugal - Datum 73 (EPSG:4274) to ETRS89 (EPSG:4258). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="pt_dgt_DLx_ETRS89_geo.tif">pt_dgt_DLx_ETRS89_geo.tif</a> - Portugal - Lisbon (EPSG:4207) to ETRS89 (EPSG:4258). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="pt_dgt_GeodPT08.tif">pt_dgt_GeodPT08.tif</a> - Portugal - mainland - onshore. - ETRS89 (EPSG:4937) to Cascais height (EPSG:5780). Last modified: 2024-02-25</li>
</ul><hr><h3><a href="https://www.lantmateriet.se/">Lantmäteriet</a></h3><ul>
<li><a style="word-break: break-word" href="se_lantmateriet_README.txt">se_lantmateriet_README.txt</a>. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="se_lantmateriet_SWEN17_RH2000.tif">se_lantmateriet_SWEN17_RH2000.tif</a> - Sweden - SWEREF99 (EPSG:4977) to RH2000 height (EPSG:5613). Size: 2.2 MB. Last modified: 2020-01-24</li>
</ul><hr><h3><a href="http://www.gu.gov.si">Geodetska uprava Republika Slovenija (GURS)</a></h3><ul>
<li><a style="word-break: break-word" href="si_gurs_README.txt">si_gurs_README.txt</a>. Last modified: 2023-02-06</li>
<li><a style="word-break: break-word" href="si_gurs_SLO-VRP2016-Koper.tif">si_gurs_SLO-VRP2016-Koper.tif</a> - Slovenia - onshore - Slovenia 1996 (EPSG:4883) to SVS2010 height (EPSG:8690). Last modified: 2023-02-05</li>
</ul><hr><h3><a href="https://www.geoportal.sk/en/">Geodetický a kartografický ústav Bratislava (GKU)</a></h3><ul>
<li><a style="word-break: break-word" href="sk_gku_README.txt">sk_gku_README.txt</a>. Last modified: 2020-06-06</li>
<li><a style="word-break: break-word" href="sk_gku_JTSK03_to_JTSK.tif">sk_gku_JTSK03_to_JTSK.tif</a> - Slovakia - S-JTSK [JTSK03] (EPSG:8351) to S-JTSK (EPSG:4156). Last modified: 2020-03-25</li>
<li><a style="word-break: break-word" href="sk_gku_Slovakia_ETRS89h_to_Baltic1957.tif">sk_gku_Slovakia_ETRS89h_to_Baltic1957.tif</a> - Slovakia - ETRS89 (EPSG:4937) to ETRS89 + Baltic 1957 height (EPSG:8360). Last modified: 2020-06-06</li>
<li><a style="word-break: break-word" href="sk_gku_Slovakia_ETRS89h_to_EVRF2007.tif">sk_gku_Slovakia_ETRS89h_to_EVRF2007.tif</a> - Slovakia - ETRS89 (EPSG:4937) to ETRS89 + EVRF2007 height (EPSG:7423). Last modified: 2020-06-06</li>
</ul><hr><h3><a href="https://www.ordnancesurvey.co.uk/">Ordnance Survey</a></h3><ul>
<li><a style="word-break: break-word" href="uk_os_README.txt">uk_os_README.txt</a>. Last modified: 2020-07-02</li>
<li><a style="word-break: break-word" href="uk_os_OSGM15_Belfast.tif">uk_os_OSGM15_Belfast.tif</a> - Ireland - ETRS89 (EPSG:4937) to Belfast height (EPSG:5732). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="uk_os_OSGM15_GB.tif">uk_os_OSGM15_GB.tif</a> - Great Britain mainland onshore - ETRS89 (EPSG:4937) to ODN height (EPSG:5701). Size: 1.5 MB. Last modified: 2020-06-03</li>
<li><a style="word-break: break-word" href="uk_os_OSGM15_Malin.tif">uk_os_OSGM15_Malin.tif</a> - Ireland - ETRS89 (EPSG:4937) to Malin Head height (EPSG:5731). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="uk_os_OSTN15_NTv2_OSGBtoETRS.tif">uk_os_OSTN15_NTv2_OSGBtoETRS.tif</a> - United Kingdom - OSGB 1936 (EPSG:4277) to ETRS89 (EPSG:4258). Size: 2.9 MB. Last modified: 2020-01-24</li>
</ul><hr><h3><a href="http://earth-info.nga.mil/">US National Geospatial Intelligence Agency (NGA)</a></h3><ul>
<li><a style="word-break: break-word" href="us_nga_README.txt">us_nga_README.txt</a>. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_nga_egm08_25.tif">us_nga_egm08_25.tif</a> - World - WGS 84 (EPSG:4979) to EGM2008 height (EPSG:3855). Size: 76.9 MB. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_nga_egm96_15.tif">us_nga_egm96_15.tif</a> - World - WGS 84 (EPSG:4979) to EGM96 height (EPSG:5773). Size: 2.6 MB. Last modified: 2020-01-24</li>
</ul><hr><h3><a href="https://www.ngs.noaa.gov/">US National Oceanographic and Atmospheric Administration (NOAA)</a></h3><ul>
<li><a style="word-break: break-word" href="us_noaa_README.txt">us_noaa_README.txt</a>. Last modified: 2022-12-14</li>
<li><a style="word-break: break-word" href="us_noaa_FL.tif">us_noaa_FL.tif</a> - USA - Florida - NAD83 (EPSG:4269) to NAD83(HARN) (EPSG:4152). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_MD.tif">us_noaa_MD.tif</a> - USA - Maryland - NAD83 (EPSG:4269) to NAD83(HARN) (EPSG:4152). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_TN.tif">us_noaa_TN.tif</a> - USA - Tennessee - NAD83 (EPSG:4269) to NAD83(HARN) (EPSG:4152). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_WI.tif">us_noaa_WI.tif</a> - USA - Wisconsin - NAD83 (EPSG:4269) to NAD83(HARN) (EPSG:4152). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_WO.tif">us_noaa_WO.tif</a> - USA - Washington - NAD83 (EPSG:4269) to NAD83(HARN) (EPSG:4152). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_alaska.tif">us_noaa_alaska.tif</a> - USA - Alaska - NAD27 (EPSG:4267) to NAD83 (EPSG:4269). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_alhpgn.tif">us_noaa_alhpgn.tif</a> - USA - Alabama - NAD83 (EPSG:4269) to NAD83(HARN) (EPSG:4152). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_arhpgn.tif">us_noaa_arhpgn.tif</a> - USA - Arkansas - NAD83 (EPSG:4269) to NAD83(HARN) (EPSG:4152). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_azhpgn.tif">us_noaa_azhpgn.tif</a> - USA - Arizona - NAD83 (EPSG:4269) to NAD83(HARN) (EPSG:4152). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_c1hpgn.tif">us_noaa_c1hpgn.tif</a> - USA - Guam - Saipan - Guam 1963 (EPSG:4675) to NAD83(HARN) (EPSG:4152). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_c2hpgn.tif">us_noaa_c2hpgn.tif</a> - USA - Guam - Rota - Guam 1963 (EPSG:4675) to NAD83(HARN) (EPSG:4152). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_cnhpgn.tif">us_noaa_cnhpgn.tif</a> - USA - California - North - NAD83 (EPSG:4269) to NAD83(HARN) (EPSG:4152). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_cohpgn.tif">us_noaa_cohpgn.tif</a> - USA - Colorado - NAD83 (EPSG:4269) to NAD83(HARN) (EPSG:4152). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_conus.tif">us_noaa_conus.tif</a> - USA - Conterminous - NAD27 (EPSG:4267) to NAD83 (EPSG:4269). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_cshpgn.tif">us_noaa_cshpgn.tif</a> - USA - California - South - NAD83 (EPSG:4269) to NAD83(HARN) (EPSG:4152). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_emhpgn.tif">us_noaa_emhpgn.tif</a> - USA - Idaho and Montana East - NAD83 (EPSG:4269) to NAD83(HARN) (EPSG:4152). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_eshpgn.tif">us_noaa_eshpgn.tif</a> - USA - American Samoa - Eastern Islands - American Samoa 1962 (EPSG:4169) to NAD83(HARN) (EPSG:4152). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_ethpgn.tif">us_noaa_ethpgn.tif</a> - USA - Texas - Est - NAD83 (EPSG:4269) to NAD83(HARN) (EPSG:4152). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_flhpgn.tif">us_noaa_flhpgn.tif</a> - USA - Florida - NAD83 (EPSG:4269) to NAD83(HARN) (EPSG:4152). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_g1999a01.tif">us_noaa_g1999a01.tif</a> - USA - Alaska - NAD83 (EPSG:4269) to NAVD88 height (EPSG:5703). Size: 2.8 MB. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_g1999a02.tif">us_noaa_g1999a02.tif</a> - USA - Alaska - NAD83 (EPSG:4269) to NAVD88 height (EPSG:5703). Size: 2.9 MB. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_g1999a03.tif">us_noaa_g1999a03.tif</a> - USA - Alaska - NAD83 (EPSG:4269) to NAVD88 height (EPSG:5703). Size: 2.9 MB. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_g1999a04.tif">us_noaa_g1999a04.tif</a> - USA - Alaska - NAD83 (EPSG:4269) to NAVD88 height (EPSG:5703). Size: 2.9 MB. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_g1999h01.tif">us_noaa_g1999h01.tif</a> - USA - Hawaii - NAD83 (EPSG:4269) to NAVD88 height (EPSG:5703). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_g1999p01.tif">us_noaa_g1999p01.tif</a> - USA - Puerto Rico and the Virgin Islands - NAD83 (EPSG:4269) to NAVD88 height (EPSG:5703). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_g1999u01.tif">us_noaa_g1999u01.tif</a> - USA - Conterminous - NAD83 (EPSG:4269) to NAVD88 height (EPSG:5703). Size: 2.5 MB. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_g1999u02.tif">us_noaa_g1999u02.tif</a> - USA - Conterminous - NAD83 (EPSG:4269) to NAVD88 height (EPSG:5703). Size: 2.2 MB. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_g1999u03.tif">us_noaa_g1999u03.tif</a> - USA - Conterminous - NAD83 (EPSG:4269) to NAVD88 height (EPSG:5703). Size: 2.0 MB. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_g1999u04.tif">us_noaa_g1999u04.tif</a> - USA - Conterminous - NAD83 (EPSG:4269) to NAVD88 height (EPSG:5703). Size: 2.2 MB. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_g1999u05.tif">us_noaa_g1999u05.tif</a> - USA - Conterminous - NAD83 (EPSG:4269) to NAVD88 height (EPSG:5703). Size: 2.3 MB. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_g1999u06.tif">us_noaa_g1999u06.tif</a> - USA - Conterminous - NAD83 (EPSG:4269) to NAVD88 height (EPSG:5703). Size: 2.5 MB. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_g1999u07.tif">us_noaa_g1999u07.tif</a> - USA - Conterminous - NAD83 (EPSG:4269) to NAVD88 height (EPSG:5703). Size: 2.3 MB. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_g1999u08.tif">us_noaa_g1999u08.tif</a> - USA - Conterminous - NAD83 (EPSG:4269) to NAVD88 height (EPSG:5703). Size: 2.2 MB. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_g2003a01.tif">us_noaa_g2003a01.tif</a> - USA - Alaska - NAD83 (EPSG:4269) to NAVD88 height (EPSG:5703). Size: 2.9 MB. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_g2003a02.tif">us_noaa_g2003a02.tif</a> - USA - Alaska - NAD83 (EPSG:4269) to NAVD88 height (EPSG:5703). Size: 3.0 MB. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_g2003a03.tif">us_noaa_g2003a03.tif</a> - USA - Alaska - NAD83 (EPSG:4269) to NAVD88 height (EPSG:5703). Size: 3.0 MB. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_g2003a04.tif">us_noaa_g2003a04.tif</a> - USA - Alaska - NAD83 (EPSG:4269) to NAVD88 height (EPSG:5703). Size: 2.9 MB. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_g2003h01.tif">us_noaa_g2003h01.tif</a> - USA - Hawaii - NAD83 (EPSG:4269) to NAVD88 height (EPSG:5703). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_g2003p01.tif">us_noaa_g2003p01.tif</a> - USA - Puerto Rico and the Virgin Islands - NAD83 (EPSG:4269) to NAVD88 height (EPSG:5703). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_g2009g01.tif">us_noaa_g2009g01.tif</a> - USA - Guam - NAD83 (EPSG:4269) to GUVD04 height (EPSG:6644). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_g2009h01.tif">us_noaa_g2009h01.tif</a> - USA - Hawaii - NAD83 (EPSG:4269) to NAVD88 height (EPSG:5703). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_g2009p01.tif">us_noaa_g2009p01.tif</a> - USA - Puerto Rico and the Virgin Islands - NAD83 (EPSG:4269) to PRVD02 height (EPSG:6641). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_g2009s01.tif">us_noaa_g2009s01.tif</a> - USA - American Samoa - NAD83 (EPSG:4269) to ASVD02 height (EPSG:6643). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_g2012ba0.tif">us_noaa_g2012ba0.tif</a> - USA - Alaska - NAD83(2011) (EPSG:6319) to NAVD88 height (EPSG:5703). Size: 10.8 MB. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_g2012bg0.tif">us_noaa_g2012bg0.tif</a> - USA - Guam - NAD83(PA11) (EPSG:6321) to GUVD04 height (EPSG:6644). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_g2012bh0.tif">us_noaa_g2012bh0.tif</a> - USA - Hawaii - NAD83(PA11) (EPSG:6321) to NAVD88 height (EPSG:5703). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_g2012bp0.tif">us_noaa_g2012bp0.tif</a> - USA - Puerto Rico and the Virgin Islands - NAD83(2011) (EPSG:6319) to PRVD02 height (EPSG:6641). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_g2012bs0.tif">us_noaa_g2012bs0.tif</a> - USA - American Samoa - NAD83(PA11) (EPSG:6321) to ASVD02 height (EPSG:6643). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_g2012bu0.tif">us_noaa_g2012bu0.tif</a> - USA - Conterminous - NAD83(2011) (EPSG:6319) to NAVD88 height (EPSG:5703). Size: 16.2 MB. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_g2018p0.tif">us_noaa_g2018p0.tif</a> - USA - Puerto Rico and the Virgin Islands - NAD83(2011) (EPSG:6319) to PRVD02 height (EPSG:6641). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_g2018u0.tif">us_noaa_g2018u0.tif</a> - USA - Conterminous - NAD83(2011) (EPSG:6319) to NAVD88 height (EPSG:5703). Size: 16.0 MB. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_gahpgn.tif">us_noaa_gahpgn.tif</a> - USA - Georgia - NAD83 (EPSG:4269) to NAD83(HARN) (EPSG:4152). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_geoid03_conus.tif">us_noaa_geoid03_conus.tif</a> - USA - Conterminous - NAD83 (EPSG:4269) to NAVD88 height (EPSG:5703). Size: 15.7 MB. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_geoid06_ak.tif">us_noaa_geoid06_ak.tif</a> - USA - Alaska - NAD83 (EPSG:4269) to NAVD88 height (EPSG:5703). Size: 10.9 MB. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_geoid09_ak.tif">us_noaa_geoid09_ak.tif</a> - USA - Alaska - NAD83 (EPSG:4269) to NAVD88 height (EPSG:5703). Size: 10.8 MB. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_geoid09_conus.tif">us_noaa_geoid09_conus.tif</a> - USA - Conterminous - NAD83 (EPSG:4269) to NAVD88 height (EPSG:5703). Size: 16.0 MB. Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_guhpgn.tif">us_noaa_guhpgn.tif</a> - USA - Guam - Guam 1963 (EPSG:4675) to NAD83(HARN) (EPSG:4152). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_hawaii.tif">us_noaa_hawaii.tif</a> - USA - Hawaii - Old Hawaiian (EPSG:4135) to NAD83 (EPSG:4269). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_hihpgn.tif">us_noaa_hihpgn.tif</a> - USA - Hawaii - NAD83 (EPSG:4269) to NAD83(HARN) (EPSG:4152). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_iahpgn.tif">us_noaa_iahpgn.tif</a> - USA - Iowa - NAD83 (EPSG:4269) to NAD83(HARN) (EPSG:4152). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_ilhpgn.tif">us_noaa_ilhpgn.tif</a> - USA - Illinois - NAD83 (EPSG:4269) to NAD83(HARN) (EPSG:4152). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_inhpgn.tif">us_noaa_inhpgn.tif</a> - USA - Indiana - NAD83 (EPSG:4269) to NAD83(HARN) (EPSG:4152). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_kshpgn.tif">us_noaa_kshpgn.tif</a> - USA - Kansas - NAD83 (EPSG:4269) to NAD83(HARN) (EPSG:4152). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_kyhpgn.tif">us_noaa_kyhpgn.tif</a> - USA - Kentuchky - NAD83 (EPSG:4269) to NAD83(HARN) (EPSG:4152). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_lahpgn.tif">us_noaa_lahpgn.tif</a> - USA - Louisiana - NAD83 (EPSG:4269) to NAD83(HARN) (EPSG:4152). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_mdhpgn.tif">us_noaa_mdhpgn.tif</a> - USA - Maryland and Delaware - NAD83 (EPSG:4269) to NAD83(HARN) (EPSG:4152). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_mehpgn.tif">us_noaa_mehpgn.tif</a> - USA - Maine - NAD83 (EPSG:4269) to NAD83(HARN) (EPSG:4152). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_mihpgn.tif">us_noaa_mihpgn.tif</a> - USA - Michigan - NAD83 (EPSG:4269) to NAD83(HARN) (EPSG:4152). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_mnhpgn.tif">us_noaa_mnhpgn.tif</a> - USA - Minnesota - NAD83 (EPSG:4269) to NAD83(HARN) (EPSG:4152). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_mohpgn.tif">us_noaa_mohpgn.tif</a> - USA - Missouri - NAD83 (EPSG:4269) to NAD83(HARN) (EPSG:4152). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_mshpgn.tif">us_noaa_mshpgn.tif</a> - USA - Mississippi - NAD83 (EPSG:4269) to NAD83(HARN) (EPSG:4152). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_nadcon5_as62_nad83_1993_as.tif">us_noaa_nadcon5_as62_nad83_1993_as.tif</a> - USA - American Samoa - EPSG:4169 (American Samoa 1962) to EPSG:4152 (NAD83(HARN)). Last modified: 2022-12-14</li>
<li><a style="word-break: break-word" href="us_noaa_nadcon5_gu63_nad83_1993_guamcnmi.tif">us_noaa_nadcon5_gu63_nad83_1993_guamcnmi.tif</a> - USA - Guam and the Commonwealth of the Northern Mariana Islands - EPSG:4675 (Guam 1963) to EPSG:4152 (NAD83(HARN)). Last modified: 2022-12-14</li>
<li><a style="word-break: break-word" href="us_noaa_nadcon5_nad27_nad83_1986_alaska.tif">us_noaa_nadcon5_nad27_nad83_1986_alaska.tif</a> - USA - Alaska - EPSG:4267 (NAD27) to EPSG:4269 (NAD83). Last modified: 2022-12-14</li>
<li><a style="word-break: break-word" href="us_noaa_nadcon5_nad27_nad83_1986_conus.tif">us_noaa_nadcon5_nad27_nad83_1986_conus.tif</a> - USA - Conterminous - EPSG:4267 (NAD27) to EPSG:4269 (NAD83). Last modified: 2022-12-14</li>
<li><a style="word-break: break-word" href="us_noaa_nadcon5_nad83_1986_nad83_1992_alaska.tif">us_noaa_nadcon5_nad83_1986_nad83_1992_alaska.tif</a> - USA - Alaska - EPSG:4269 (NAD83) to EPSG:4152 (NAD83(HARN)). Last modified: 2022-12-14</li>
<li><a style="word-break: break-word" href="us_noaa_nadcon5_nad83_1986_nad83_1993_hawaii.tif">us_noaa_nadcon5_nad83_1986_nad83_1993_hawaii.tif</a> - USA - Hawaii - EPSG:4269 (NAD83) to EPSG:4152 (NAD83(HARN)). Last modified: 2022-12-14</li>
<li><a style="word-break: break-word" href="us_noaa_nadcon5_nad83_1986_nad83_1993_prvi.tif">us_noaa_nadcon5_nad83_1986_nad83_1993_prvi.tif</a> - USA - Puerto Rico and the Virgin Islands - EPSG:4269 (NAD83) to EPSG:4152 (NAD83(HARN)). Last modified: 2022-12-14</li>
<li><a style="word-break: break-word" href="us_noaa_nadcon5_nad83_1986_nad83_harn_conus.tif">us_noaa_nadcon5_nad83_1986_nad83_harn_conus.tif</a> - USA - Conterminous - EPSG:4269 (NAD83) to EPSG:4152 (NAD83(HARN)). Size: 3.4 MB. Last modified: 2022-12-14</li>
<li><a style="word-break: break-word" href="us_noaa_nadcon5_nad83_1992_nad83_2007_alaska.tif">us_noaa_nadcon5_nad83_1992_nad83_2007_alaska.tif</a> - USA - Alaska - EPSG:4152 (NAD83(HARN)) to EPSG:4893 (NAD83(NSRS2007)). Last modified: 2022-12-14</li>
<li><a style="word-break: break-word" href="us_noaa_nadcon5_nad83_1993_nad83_1997_prvi.tif">us_noaa_nadcon5_nad83_1993_nad83_1997_prvi.tif</a> - USA - Puerto Rico and the Virgin Islands - EPSG:4152 (NAD83(HARN)) to EPSG:8544 (NAD83(HARN Corrected)). Last modified: 2022-12-14</li>
<li><a style="word-break: break-word" href="us_noaa_nadcon5_nad83_1993_nad83_2002_as.tif">us_noaa_nadcon5_nad83_1993_nad83_2002_as.tif</a> - USA - American Samoa - EPSG:4152 (NAD83(HARN)) to EPSG:8542 (NAD83(FBN)). Last modified: 2022-12-14</li>
<li><a style="word-break: break-word" href="us_noaa_nadcon5_nad83_1993_nad83_2002_guamcnmi.tif">us_noaa_nadcon5_nad83_1993_nad83_2002_guamcnmi.tif</a> - USA - Guam and the Commonwealth of the Northern Mariana Islands - EPSG:4152 (NAD83(HARN)) to EPSG:8542 (NAD83(FBN)). Last modified: 2022-12-14</li>
<li><a style="word-break: break-word" href="us_noaa_nadcon5_nad83_1993_nad83_pa11_hawaii.tif">us_noaa_nadcon5_nad83_1993_nad83_pa11_hawaii.tif</a> - USA - Hawaii - EPSG:4152 (NAD83(HARN)) to EPSG:6321 (NAD83(PA11)). Last modified: 2022-12-14</li>
<li><a style="word-break: break-word" href="us_noaa_nadcon5_nad83_1997_nad83_2002_prvi.tif">us_noaa_nadcon5_nad83_1997_nad83_2002_prvi.tif</a> - USA - Puerto Rico and the Virgin Islands - EPSG:8545 (NAD83(HARN Corrected)) to EPSG:8542 (NAD83(FBN)). Last modified: 2022-12-14</li>
<li><a style="word-break: break-word" href="us_noaa_nadcon5_nad83_2002_nad83_2007_prvi.tif">us_noaa_nadcon5_nad83_2002_nad83_2007_prvi.tif</a> - USA - Puerto Rico and the Virgin Islands - EPSG:8860 (NAD83(FBN)) to EPSG:4893 (NAD83(NSRS2007)). Last modified: 2022-12-14</li>
<li><a style="word-break: break-word" href="us_noaa_nadcon5_nad83_2002_nad83_ma11_guamcnmi.tif">us_noaa_nadcon5_nad83_2002_nad83_ma11_guamcnmi.tif</a> - USA - Guam and the Commonwealth of the Northern Mariana Islands - EPSG:8860 (NAD83(FBN)) to EPSG:6324 (NAD83(MA11)). Last modified: 2022-12-14</li>
<li><a style="word-break: break-word" href="us_noaa_nadcon5_nad83_2002_nad83_pa11_as.tif">us_noaa_nadcon5_nad83_2002_nad83_pa11_as.tif</a> - USA - American Samoaa - EPSG:8860 (NAD83(FBN)) to EPSG:6321 (NAD83(PA11)). Last modified: 2022-12-14</li>
<li><a style="word-break: break-word" href="us_noaa_nadcon5_nad83_2007_nad83_2011_alaska.tif">us_noaa_nadcon5_nad83_2007_nad83_2011_alaska.tif</a> - USA - Alaska - EPSG:4759 (NAD83(NSRS2007)) to EPSG:6319 (NAD83(2011)). Last modified: 2022-12-14</li>
<li><a style="word-break: break-word" href="us_noaa_nadcon5_nad83_2007_nad83_2011_conus.tif">us_noaa_nadcon5_nad83_2007_nad83_2011_conus.tif</a> - USA - Conterminous - EPSG:4759 (NAD83(NSRS2007)) to EPSG:6319 (NAD83(2011)). Size: 38.1 MB. Last modified: 2022-12-14</li>
<li><a style="word-break: break-word" href="us_noaa_nadcon5_nad83_2007_nad83_2011_prvi.tif">us_noaa_nadcon5_nad83_2007_nad83_2011_prvi.tif</a> - USA - Puerto Rico and the Virgin Islands - EPSG:4759 (NAD83(NSRS2007)) to EPSG:6319 (NAD83(2011)). Last modified: 2022-12-14</li>
<li><a style="word-break: break-word" href="us_noaa_nadcon5_nad83_fbn_nad83_2007_conus.tif">us_noaa_nadcon5_nad83_fbn_nad83_2007_conus.tif</a> - USA - Conterminous - EPSG:8860 (NAD83(FBN)) to EPSG:4893 (NAD83(NSRS2007)). Size: 40.7 MB. Last modified: 2022-12-14</li>
<li><a style="word-break: break-word" href="us_noaa_nadcon5_nad83_harn_nad83_fbn_conus.tif">us_noaa_nadcon5_nad83_harn_nad83_fbn_conus.tif</a> - USA - Conterminous - EPSG:4152 (NAD83(HARN)) to EPSG:8542 (NAD83(FBN)). Size: 8.7 MB. Last modified: 2022-12-14</li>
<li><a style="word-break: break-word" href="us_noaa_nadcon5_ohd_nad83_1986_hawaii.tif">us_noaa_nadcon5_ohd_nad83_1986_hawaii.tif</a> - USA - Hawaii - EPSG:4135 (Old Hawaiian) to EPSG:4269 (NAD83). Last modified: 2022-12-14</li>
<li><a style="word-break: break-word" href="us_noaa_nadcon5_pr40_nad83_1986_prvi.tif">us_noaa_nadcon5_pr40_nad83_1986_prvi.tif</a> - USA - Puerto Rico and the Virgin Islands - EPSG:4139 (Puerto Rico) to EPSG:4269 (NAD83). Last modified: 2022-12-14</li>
<li><a style="word-break: break-word" href="us_noaa_nadcon5_sg1952_nad83_1986_stgeorge.tif">us_noaa_nadcon5_sg1952_nad83_1986_stgeorge.tif</a> - USA - Saint George Island - EPSG:4138 (St. George Island) to EPSG:4269 (NAD83). Last modified: 2022-12-14</li>
<li><a style="word-break: break-word" href="us_noaa_nadcon5_sl1952_nad83_1986_stlawrence.tif">us_noaa_nadcon5_sl1952_nad83_1986_stlawrence.tif</a> - USA - Saint Lawrence Island - EPSG:4136 (St. Lawrence Island) to EPSG:4269 (NAD83). Last modified: 2022-12-14</li>
<li><a style="word-break: break-word" href="us_noaa_nadcon5_sp1952_nad83_1986_stpaul.tif">us_noaa_nadcon5_sp1952_nad83_1986_stpaul.tif</a> - USA - Saint Lawrence Island - EPSG:4137 (St. Paul Island) to EPSG:4269 (NAD83). Last modified: 2022-12-14</li>
<li><a style="word-break: break-word" href="us_noaa_nbhpgn.tif">us_noaa_nbhpgn.tif</a> - USA - Nebraska - NAD83 (EPSG:4269) to NAD83(HARN) (EPSG:4152). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_nchpgn.tif">us_noaa_nchpgn.tif</a> - USA - North Carolina - NAD83 (EPSG:4269) to NAD83(HARN) (EPSG:4152). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_ndhpgn.tif">us_noaa_ndhpgn.tif</a> - USA - North Dakota - NAD83 (EPSG:4269) to NAD83(HARN) (EPSG:4152). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_nehpgn.tif">us_noaa_nehpgn.tif</a> - USA - New England (CT,MA,NH,RI,VT) - NAD83 (EPSG:4269) to NAD83(HARN) (EPSG:4152). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_njhpgn.tif">us_noaa_njhpgn.tif</a> - USA - New Jersey - NAD83 (EPSG:4269) to NAD83(HARN) (EPSG:4152). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_nmhpgn.tif">us_noaa_nmhpgn.tif</a> - USA - New Mexico - NAD83 (EPSG:4269) to NAD83(HARN) (EPSG:4152). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_nvhpgn.tif">us_noaa_nvhpgn.tif</a> - USA - Nevada - NAD83 (EPSG:4269) to NAD83(HARN) (EPSG:4152). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_nyhpgn.tif">us_noaa_nyhpgn.tif</a> - USA - New York - NAD83 (EPSG:4269) to NAD83(HARN) (EPSG:4152). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_ohhpgn.tif">us_noaa_ohhpgn.tif</a> - USA - Ohio - NAD83 (EPSG:4269) to NAD83(HARN) (EPSG:4152). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_okhpgn.tif">us_noaa_okhpgn.tif</a> - USA - Oklahoma - NAD83 (EPSG:4269) to NAD83(HARN) (EPSG:4152). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_pahpgn.tif">us_noaa_pahpgn.tif</a> - USA - Pennsylvania - NAD83 (EPSG:4269) to NAD83(HARN) (EPSG:4152). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_prvi.tif">us_noaa_prvi.tif</a> - USA - Puerto Rico and the Virgin Islands - Puerto Rico (EPSG:4139) to NAD83 (EPSG:4269). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_pvhpgn.tif">us_noaa_pvhpgn.tif</a> - USA - Puerto Rico and the Virgin Islands - NAD83 (EPSG:4269) to NAD83(HARN) (EPSG:4152). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_schpgn.tif">us_noaa_schpgn.tif</a> - USA - South Carolina - NAD83 (EPSG:4269) to NAD83(HARN) (EPSG:4152). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_sdhpgn.tif">us_noaa_sdhpgn.tif</a> - USA - South Dakota - NAD83 (EPSG:4269) to NAD83(HARN) (EPSG:4152). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_stgeorge.tif">us_noaa_stgeorge.tif</a> - USA - Alaska - St. George Island - St. George Island (EPSG:4138) to NAD83 (EPSG:4269). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_stlrnc.tif">us_noaa_stlrnc.tif</a> - USA - Alaska - St. Lawrence Island - St. Lawrence Island (EPSG:4136) to NAD83 (EPSG:4269). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_stpaul.tif">us_noaa_stpaul.tif</a> - USA - Alaska - St. Paul Island - St. Paul Island (EPSG:4137) to NAD83 (EPSG:4269). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_tnhpgn.tif">us_noaa_tnhpgn.tif</a> - USA - Tennessee: - NAD83 (EPSG:4269) to NAD83(HARN) (EPSG:4152). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_uthpgn.tif">us_noaa_uthpgn.tif</a> - USA - Utah - NAD83 (EPSG:4269) to NAD83(HARN) (EPSG:4152). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_vahpgn.tif">us_noaa_vahpgn.tif</a> - USA - Virginia - NAD83 (EPSG:4269) to NAD83(HARN) (EPSG:4152). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_vertconc.tif">us_noaa_vertconc.tif</a> - USA - Conterminous - Center - NGVD29 height (m) (EPSG:7968) to NAVD88 height (EPSG:5703). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_vertcone.tif">us_noaa_vertcone.tif</a> - USA - Conterminous - East - NGVD29 height (m) (EPSG:7968) to NAVD88 height (EPSG:5703). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_vertconw.tif">us_noaa_vertconw.tif</a> - USA - Conterminous - West - NGVD29 height (m) (EPSG:7968) to NAVD88 height (EPSG:5703). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_wihpgn.tif">us_noaa_wihpgn.tif</a> - USA - Wisconsin - NAD83 (EPSG:4269) to NAD83(HARN) (EPSG:4152). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_wmhpgn.tif">us_noaa_wmhpgn.tif</a> - USA - Idaho and Montana West - NAD83 (EPSG:4269) to NAD83(HARN) (EPSG:4152). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_wohpgn.tif">us_noaa_wohpgn.tif</a> - USA - Washington and Oregon - NAD83 (EPSG:4269) to NAD83(HARN) (EPSG:4152). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_wshpgn.tif">us_noaa_wshpgn.tif</a> - USA - American Samoa - Western Islands - American Samoa 1962 (EPSG:4169) to NAD83(HARN) (EPSG:4152). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_wthpgn.tif">us_noaa_wthpgn.tif</a> - USA - Texas - West - NAD83 (EPSG:4269) to NAD83(HARN) (EPSG:4152). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_wvhpgn.tif">us_noaa_wvhpgn.tif</a> - USA - West Virginia - NAD83 (EPSG:4269) to NAD83(HARN) (EPSG:4152). Last modified: 2020-01-24</li>
<li><a style="word-break: break-word" href="us_noaa_wyhpgn.tif">us_noaa_wyhpgn.tif</a> - USA - Wyoming - NAD83 (EPSG:4269) to NAD83(HARN) (EPSG:4152). Last modified: 2020-01-24</li>
</ul><hr><h3><a href="http://www.ngi.gov.za/">Chief Directorate: National Geospatial Information (CD:NGI)</a></h3><ul>
<li><a style="word-break: break-word" href="za_cdngi_README.txt">za_cdngi_README.txt</a>. Last modified: 2021-10-18</li>