Skip to content

Commit e34fe0b

Browse files
update links
1 parent af50f74 commit e34fe0b

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

docs/make.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ makedocs(
1717
doctest = false,
1818
format = Documenter.HTML(
1919
prettyurls = get(ENV, "CI", nothing) == "true",
20-
canonical = "https://alexander-barth.github.io/NCDatasets.jl",
20+
canonical = "https://juliageo.github.io/NCDatasets.jl",
2121
),
2222
pages = [
2323
"Introduction" => "index.md",
@@ -33,4 +33,4 @@ makedocs(
3333
checkdocs = :none,
3434
)
3535

36-
deploydocs(repo = "github.com/Alexander-Barth/NCDatasets.jl.git")
36+
deploydocs(repo = "github.com/JuliaGeo/NCDatasets.jl.git")

docs/src/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# NCDatasets.jl
22

3-
Documentation for [NCDatasets.jl](https://github.com/Alexander-Barth/NCDatasets.jl), a Julia package for loading and writing NetCDF ([Network Common Data Form](https://www.unidata.ucar.edu/software/netcdf/)) files.
3+
Documentation for [NCDatasets.jl](https://github.com/JuliaGeo/NCDatasets.jl), a Julia package for loading and writing NetCDF ([Network Common Data Form](https://www.unidata.ucar.edu/software/netcdf/)) files.
44
NCDatasets.jl implements the for the NetCDF format the interface defined
55
in [CommonDataModel.jl](https://github.com/JuliaGeo/CommonDataModel.jl).
66
All functions defined by CommonDataModel.jl are also available for NetCDF data, including:
@@ -215,7 +215,7 @@ close(ds);
215215

216216
### Create a netCDF file using the metadata of an existing netCDF file as template
217217

218-
The utility function [`ncgen`](https://alexander-barth.github.io/NCDatasets.jl/stable/#NCDatasets.ncgen)
218+
The utility function [`ncgen`](https://juliageo.org/NCDatasets.jl/stable/#NCDatasets.ncgen)
219219
generates the Julia code that would produce a netCDF file with the same metadata as a template netCDF file.
220220
It is thus similar to the [command line tool `ncgen`](https://www.unidata.ucar.edu/software/netcdf/netcdf/ncgen.html)
221221
which can generate C or Fortran code from the output of [`ncdump`](https://www.unidata.ucar.edu/software/netcdf/netcdf/ncdump.html).

src/NCDatasets.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ unit = v.attrib["units"]
1414
close(ds)
1515
```
1616
17-
More information is available at https://github.com/Alexander-Barth/NCDatasets.jl .
17+
More information is available at https://github.com/JuliaGeo/NCDatasets.jl .
1818
"""
1919
module NCDatasets
2020

src/netcdf_c.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2232,7 +2232,7 @@ function init_certificate_authority()
22322232

22332233
if err != NC_NOERR
22342234
@warn "setting HTTP.SSL.CAINFO using NC_rcfile_insert " *
2235-
"failed with error $err. See https://github.com/Alexander-Barth/NCDatasets.jl/issues/173 for more information. "
2235+
"failed with error $err. See https://github.com/JuliaGeo/NCDatasets.jl/issues/173 for more information. "
22362236

22372237
@debug begin
22382238
lookup = @ccall(libnetcdf.NC_rclookup(key::Cstring, hostport::Cstring, path::Cstring)::Cstring)

0 commit comments

Comments
 (0)