Skip to content

Commit

Permalink
Fix #64: Add docs for file formats
Browse files Browse the repository at this point in the history
Former-commit-id: 4eb2345
  • Loading branch information
juliohm committed Jun 19, 2020
1 parent 236e3a8 commit a0a261a
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 2 deletions.
5 changes: 4 additions & 1 deletion docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,10 @@ makedocs(
"Solver examples" => "devguide/examples.md"
],
"Contributing" => "contributing.md",
"Resources" => "resources.md",
"Resources" => [
"resources/education.md",
"resources/fileformats.md"
],
"About" => [
"Community" => "about/community.md",
"License" => "about/license.md",
Expand Down
2 changes: 1 addition & 1 deletion docs/src/resources.md → docs/src/resources/education.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Resources
# Education

Geostatistics is often misunderstood as "classical statistics applied to
spatial data". To correct this unfortunate misunderstanding, the best we
Expand Down
25 changes: 25 additions & 0 deletions docs/src/resources/fileformats.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# File formats

The Julia ecosystem provides various packages for reading/writing spatial data.
Below is an incomplete list of famous file formats:

## NetCDF

* [NetCDF.jl](https://github.com/JuliaGeo/NetCDF.jl) -
MATLAB-like syntax for reading/writing NetCDF files.
* [NCDatasets.jl](https://github.com/Alexander-Barth/NCDatasets.jl) -
Read/write of NetCDF files and lazy loading.

## GRIB

* [GRIB.jl](https://github.com/weech/GRIB.jl) - Read/write GRIB files in Julia.

## GDAL

* [GDAL.jl](https://github.com/JuliaGeo/GDAL.jl) - Julia wrapper for GDAL.
* [ArchGDAL.jl](https://github.com/yeesian/ArchGDAL.jl) - High-level API for GDAL.

## GSLIB

* [GslibIO.jl](https://github.com/JuliaEarth/GslibIO.jl) -
Read/write *extended* GSLIB files in Julia.

0 comments on commit a0a261a

Please sign in to comment.