Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Argentinian geoid model #104

Merged
merged 7 commits into from
Jun 23, 2023

run regenerate_index_html.py

48dd6e8
Select commit
Loading
Failed to load commit list.
Merged

Add Argentinian geoid model #104

run regenerate_index_html.py
48dd6e8
Select commit
Loading
Failed to load commit list.
This check has been archived and is scheduled for deletion. Learn more about checks retention
Travis CI / Travis CI - Pull Request succeeded Jun 23, 2023 in 3m 0s

Build Passed

The build passed, just like the previous build.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #104 Add Argentinian geoid model.
Any changes that have been made to the master branch before the build ran are also included.

Jobs and Stages

This build only has a single job.
You can use jobs to test against multiple versions of your runtime or dependencies, or to speed up your build.

Build Configuration

Build Option Setting
Language Ruby
Operating System Linux (Focal)
Build Configuration
{
  "language": "ruby",
  "os": [
    "linux"
  ],
  "dist": "focal",
  "sudo": true,
  "git": {
    "lfs_skip_smudge": true
  },
  "services": [
    "docker"
  ],
  "before_install": [
    "sudo apt-get update",
    "sudo apt-get install cmake make zip unzip pyflakes3 wget"
  ],
  "install": [
    "./travis/check_new_grids.sh",
    "cd grid_tools",
    "pyflakes3 *.py",
    "wget https://github.com/OSGeo/proj-datumgrid/raw/master/north-america/ntv2_0.gsb",
    "docker run --rm -v /home:/home ghcr.io/osgeo/gdal:alpine-normal-latest python3 $PWD/ntv2_to_gtiff.py --copyright \"Derived from work by Natural Resources Canada. Open Government Licence - Canada\" --source-crs EPSG:4267 --target-crs EPSG:4269 $PWD/ntv2_0.gsb $PWD/ca_nrc_ntv2_0.tif",
    "docker run --rm -v /home:/home ghcr.io/osgeo/gdal:alpine-normal-latest python3 $PWD/check_gtiff_grid.py $PWD/ca_nrc_ntv2_0.tif",
    "wget https://github.com/OSGeo/proj-datumgrid/raw/master/egm96_15.gtx",
    "docker run --rm -v /home:/home ghcr.io/osgeo/gdal:alpine-normal-latest python3 $PWD/vertoffset_grid_to_gtiff.py --type GEOGRAPHIC_TO_VERTICAL --parameter-name geoid_undulation --source-crs EPSG:4326 --target-crs EPSG:5773 --copyright \"Public Domain. Derived from work from NGA\" $PWD/egm96_15.gtx $PWD/us_nga_egm96_15.tif",
    "docker run --rm -v /home:/home ghcr.io/osgeo/gdal:alpine-normal-latest python3 $PWD/check_gtiff_grid.py $PWD/us_nga_egm96_15.tif",
    "cd ..",
    "(cd ..; mv PROJ-data /tmp)",
    "(cd /tmp/PROJ-data && ./travis/test.sh)"
  ],
  "script": [
    "echo \"done\""
  ],
  "after_success": [
    "echo \"done\""
  ]
}