Downloads:
1,717
Downloads of v 1.14.5.1:
1,310
Last Update:
21 Apr 2016
Package Maintainer(s):
Software Author(s):
- European Centre for Medium-Range Weather Forecasts (ECMWF)
Tags:
geospatial geo gis grib weather forecast meteorology- Software Specific:
- Software Site
- Software License
- Software Docs
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
grib-tools
- 1
- 2
- 3
1.14.5.1 | Updated: 21 Apr 2016
- Software Specific:
- Software Site
- Software License
- Software Docs
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
1,717
Downloads of v 1.14.5.1:
1,310
Maintainer(s):
Software Author(s):
- European Centre for Medium-Range Weather Forecasts (ECMWF)
grib-tools 1.14.5.1
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by European Centre for Medium-Range Weather Forecasts (ECMWF). The inclusion of European Centre for Medium-Range Weather Forecasts (ECMWF) trademark(s), if any, upon this webpage is solely to identify European Centre for Medium-Range Weather Forecasts (ECMWF) goods or services and not for commercial purposes.
- 1
- 2
- 3
Some Checks Have Failed or Are Not Yet Complete
Not All Tests Have Passed
Validation Testing Passed
Verification Testing Passed
DetailsScan Testing Resulted in Flagged:
This package was submitted (and approved) prior to automated virus scanning integration into the package moderation processs.
We recommend clicking the "Details" link to make your own decision on installing this package.
Deployment Method: Individual Install, Upgrade, & Uninstall
To install grib-tools, run the following command from the command line or from PowerShell:
To upgrade grib-tools, run the following command from the command line or from PowerShell:
To uninstall grib-tools, run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download grib-tools --internalize --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade grib-tools -y --source="'INTERNAL REPO URL'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade grib-tools -y --source="'INTERNAL REPO URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install grib-tools
win_chocolatey:
name: grib-tools
version: '1.14.5.1'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'grib-tools' do
action :install
source 'INTERNAL REPO URL'
version '1.14.5.1'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller grib-tools
{
Name = "grib-tools"
Version = "1.14.5.1"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'grib-tools':
ensure => '1.14.5.1',
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...
This package was approved by moderator ferventcoder on 21 Apr 2016.
Command line tools use GRIB API for interactive and batch processing of GRIB data. These tools provide a ready and tested solution for many situations and their use will speed up your work by obviating the need for new code. Use with an enhanced terminal such as ConEmu or Cmder is recommended.
This distribution includes:
$packageName = 'grib-tools'
$toolsPath = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$unPath = Join-Path $toolsPath 'Uninstall-ChocolateyPath.psm1'
$installPath = "$env:ChocolateyInstall\bin\grib-tools"
# remove from path
Import-Module $unPath
Uninstall-ChocolateyPath $installPath "User"
if (Test-Path $installPath) {
Remove-Item -Path $installPath -Recurse -Force
}
function Uninstall-ChocolateyPath {
param(
[string] $pathToUninstall,
[System.EnvironmentVariableTarget] $pathType = [System.EnvironmentVariableTarget]::User
)
Write-Debug "Running 'Uninstall-ChocolateyPath' with pathToUninstall:`'$pathToUninstall`'";
#get the PATH variable
$envPath = $env:PATH
#$envPath = [Environment]::GetEnvironmentVariable('Path', $pathType)
if (!$envPath.ToLower().Contains($pathToUninstall.ToLower())) {
Write-Host "PATH environment variable does not have $pathToUninstall in it."
return
}
Write-Host "PATH environment variable has $pathToUninstall in it. Removing..."
$actualPath = [Environment]::GetEnvironmentVariable('Path', $pathType)
# escape regex metachars, match possible backslash and item separator at eol
$pathToUninstallRegex = ($pathToUninstall -replace '([\\().])', '\$1') + '\\?(;|$)'
# remove pathToUninstall from actualPath
$actualPath = $actualPath -replace "$pathToUninstallRegex", ''
if ($pathType -eq [System.EnvironmentVariableTarget]::Machine) {
$psArgs = "[Environment]::SetEnvironmentVariable('Path',`'$actualPath`', `'$pathType`')"
Start-ChocolateyProcessAsAdmin "$psArgs"
} else {
[Environment]::SetEnvironmentVariable('Path', $actualPath, $pathType)
}
# remove from path of current powershell session
$envPSPath = $env:PATH
$env:Path = $envPSPath -replace "$pathToUninstallRegex", ''
}
Log in or click on link to see number of positives.
- grib-tools.1.14.5.1.nupkg (6fa3c0d916dc) - ## / 57
- grib_compare.exe (ad47105dfabd) - ## / 57
- grib_copy.exe (636e203f0ffd) - ## / 57
- grib_dump.exe (be6b49128900) - ## / 57
- grib_filter.exe (d053371a1fab) - ## / 57
- grib_get.exe (7cdfbd494760) - ## / 57
- grib_get_data.exe (3a2c436e24a7) - ## / 57
- grib_ls.exe (61190b0fb7e9) - ## / 57
- grib_set.exe (abd21a158f69) - ## / 57
- grib_compare.exe (c8d32e9a8ee0) - ## / 57
- grib_copy.exe (ce50ecd5f56d) - ## / 57
- grib_dump.exe (eefb628f98df) - ## / 57
- grib_filter.exe (d7c29dad7eb7) - ## / 57
- grib_get.exe (ab118c6edfca) - ## / 57
- grib_get_data.exe (58f5210ab83a) - ## / 57
- grib_ls.exe (7a9121317eb0) - ## / 57
- grib_set.exe (5c6123b19b3a) - ## / 57
- grib-tools-1.14.5.1-x64.7z (2c62e339b128) - ## / 57
- grib-tools-1.14.5.1-x86.7z (3a486cde4ea9) - ## / 56
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
grib-tools 1.14.5.1 | 1310 | Thursday, April 21, 2016 | Approved | |
grib-tools 1.14.5 | 407 | Saturday, April 2, 2016 | Approved |
-
- vcredist2013 (≥ 12.0.30501.0)
Ground Rules:
- This discussion is only about grib-tools and the grib-tools package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or grib-tools, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.