-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Rename package * Make sure to require latest YAXArrays
- Loading branch information
Showing
18 changed files
with
57 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name = "ESDL" | ||
name = "EarthDataLab" | ||
uuid = "359177bc-a543-11e8-11b7-bb015dba3358" | ||
authors = ["Fabian Gans <[email protected]>"] | ||
version = "0.9.2" | ||
|
@@ -36,7 +36,7 @@ Shapefile = "0.6, 0.7" | |
StatsBase = "0.32, 0.33" | ||
Tables = "0.2, 1.0" | ||
WeightedOnlineStats = "0.5" | ||
YAXArrays = "0.2" | ||
YAXArrays = "0.2.1" | ||
Zarr = "0.6.2, 0.7" | ||
julia = "1.3" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
# ESDL.jl | ||
# EarthDataLab.jl | ||
|
||
*Julia Package for the Earth System Data Cube* | ||
|
||
| **Documentation** | **Build Status** | | ||
|:-------------------------------------------------------------------------------:|:-----------------------------------------------------------------------------------------------:| | ||
| [![](https://img.shields.io/badge/docs-latest-blue.svg)](https://juliadatacubes.github.io/ESDL.jl/latest/) | [![][ci-img]][ci-url] [![codecov][codecov-img]](https://codecov.io/github/esa-esdl/ESDL.jl?branch=master) | | ||
| [![](https://img.shields.io/badge/docs-latest-blue.svg)](https://juliadatacubes.github.io/EarthDataLab.jl/latest/) | [![][ci-img]][ci-url] [![codecov][codecov-img]](https://codecov.io/github/esa-EarthDataLab/EarthDataLab.jl?branch=master) | | ||
|
||
[codecov-img]: https://img.shields.io/codecov/c/github/esa-esdl/ESDL.jl/master.svg?label=codecov | ||
[codecov-img]: https://img.shields.io/codecov/c/github/esa-EarthDataLab/EarthDataLab.jl/master.svg?label=codecov | ||
# Installation | ||
|
||
- Add the ESDL package | ||
`Pkg.add(PackageSpec(url="https://github.com/esa-esdl/ESDL.jl"))` | ||
- Add the EarthDataLab package | ||
`Pkg.add(PackageSpec(url="https://github.com/juliadatacubes/EarthDataLab.jl"))` | ||
|
||
# Documentation | ||
|
||
The Documentation is available [here](https://juliadatacubes.github.io/ESDL.jl/latest/). | ||
The Documentation is available [here](https://juliadatacubes.github.io/EarthDataLab.jl/latest/). | ||
|
||
[ci-img]: https://github.com/esa-esdl/ESDL.jl/workflows/CI/badge.svg | ||
[ci-url]: https://github.com/esa-esdl/ESDL.jl/actions?query=workflow%3ACI | ||
[ci-img]: https://github.com/juliadatacubes/EarthDataLab.jl/workflows/CI/badge.svg | ||
[ci-url]: https://github.com/juliadatacubes/EarthDataLab.jl/actions?query=workflow%3ACI |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# Loading and saving results | ||
|
||
ESDL.ESDLTools.@loadOrGenerate | ||
EarthDataLab.EarthDataLabTools.@loadOrGenerate |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
using ESDL | ||
using EarthDataLab | ||
using Test | ||
import DataFrames: DataFrame,aggregate | ||
import Dates: year | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
using ESDL, NetCDF, YAXArrays | ||
using EarthDataLab, NetCDF, YAXArrays | ||
using Test | ||
|
||
newcubedir = mktempdir() | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
using ESDL | ||
using EarthDataLab | ||
using Test | ||
using Dates | ||
using IterTools | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1242fd2
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@JuliaRegistrator register()
1242fd2
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Registration pull request created: JuliaRegistries/General/59566
After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.
This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:
Also, note the warning: This looks like a new registration that registers version 0.9.2.
Ideally, you should register an initial release with 0.0.1, 0.1.0 or 1.0.0 version numbers
This can be safely ignored. However, if you want to fix this you can do so. Call register() again after making the fix. This will update the Pull request.