-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Check variable with Custom Sensor Metadata reader (#62)
* Fix when reading np.int64 integers * Update changelog * Fix no station within selected dist with new pygeogrids version * Derive station name from fname in header format * Check variable with custom sensor metadata reader * Update changelog
- Loading branch information
Showing
5 changed files
with
104 additions
and
23 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
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,5 +1,5 @@ | ||
myvar1;myvar1_depth_from;myvar1_depth_to;myvar2;myvar3;myvar3_depth_to;network;station;instrument;depth_from;depth_to | ||
lorem;0;1;1.1;2022-01-01;1;FR_Aqui;fraye;ThetaProbe-ML2X;0.05;0.05 | ||
NOT_USED;0.1;0.2;1.2;2022-01-02;2;FR_Aqui;fraye;ThetaProbe-ML2X;0.1;0.1 | ||
NOT_USED;0.1;1.1;1.3;2022-01-03;3;FR_Aqui;fraye;ThetaProbe-ML2X;99;9999 | ||
NOT_USED;0.1;1.1;1.4;2022-01-04;4;FR_Aqui;grandcal;ThetaProbe-ML2X;0.05;0.05 | ||
myvar1;myvar1_depth_from;myvar1_depth_to;myvar2;myvar3;myvar3_depth_to;network;station;instrument;variable;depth_from;depth_to | ||
lorem;0;1;1.1;2022-01-01;1;FR_Aqui;fraye;ThetaProbe-ML2X;soil_moisture;0.05;0.05 | ||
NOT_USED;0.1;0.2;1.2;2022-01-02;2;FR_Aqui;fraye;ThetaProbe-ML2X;soil_moisture;0.1;0.1 | ||
NOT_USED;0.1;1.1;1.3;2022-01-03;3;FR_Aqui;fraye;ThetaProbe-ML2X;soil_moisture;99;9999 | ||
NOT_USED;0.1;1.1;1.4;2022-01-04;4;FR_Aqui;grandcal;ThetaProbe-ML2X;soil_moisture;0.05;0.05 |