Skip to content

Commit f908aeb

Browse files
committed
Add Tools to Toolbar
Begin Updates for adding curve edits and bulk shift into matplotlib toolbar. This process works on windows. Note: Currently an issue in macOS when using virtualenv causing crash. Fix before final update to 0.1.7.
1 parent 3d3f2f9 commit f908aeb

File tree

7 files changed

+168
-98
lines changed

7 files changed

+168
-98
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,3 +99,6 @@ ENV/
9999

100100
# mypy
101101
.mypy_cache/
102+
103+
# vscode
104+
.vscode/

changelog.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,49 +3,57 @@
33
All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
6-
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
6+
and this project generally adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

8-
## [0.1.7] - 2018-
8+
## [0.1.7] - 2019-
99

1010
### Added
11+
1112
- Use TkAgg backend in matplotlib for consistent performance
12-
- Download 2017 logs in [kgs_download](https://toddheitmann.github.io/PetroPy/function/download.html#petropy.kgs_download) function
13+
- Download 2017 and 2018 logs in [kgs_download](https://toddheitmann.github.io/PetroPy/function/download.html#petropy.kgs_download) function
1314
- Facies and pay flag input for statistics export.
1415

1516
### Fixed
17+
1618
- [Issue 1](https://github.com/toddheitmann/PetroPy/issues/1) calling newer methods from old versions of required packages. Versions added to requirements.txt.
1719
- Issue returning empty depth array when trying to find next_formation_depth
1820

1921
## [0.1.6] - 2018-02-15
2022

2123
### Fixed
24+
2225
- Issue with show method for LogViewer class using different back ends of matplotlib
2326

2427
## [0.1.5] - 2017-10-24
2528

2629
### Added
30+
2731
- Gradients for filled curves
2832
- Inventory las files from given folders
2933
- Wolfcamp examples
3034
- autodetect_encoding to LASFile requiring cchardet on install
3135

3236
### Fixed
37+
3338
- Downloading las data from KGS and University Lands
3439
- Electrofacies calculations
3540

3641
## [0.1.4] - 2017-10-04
3742

3843
### Fixed
44+
3945
- Graphs error with window location
4046

4147
## [0.1.3] - 2017-10-04
4248

4349
### Fixed
50+
4451
- Data included in distribution
4552

4653
## [0.1.2] - 2017-10-04
4754

4855
### Fixed
56+
4957
- Wheel source distribution
5058

5159
## [0.1.0] - 2017-10-04

petropy/data/images/bulk.png

3.49 KB
Loading

petropy/data/images/draw.png

1.27 KB
Loading

petropy/data/images/save.png

2.24 KB
Loading

petropy/download.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,7 @@ def ul_lands_download(save_dir = None):
131131

132132
return df
133133

134+
134135
def kgs_download(save_dir = None):
135136
"""
136137
Downloads las files from Kansas Geologic Society
@@ -171,6 +172,7 @@ def kgs_download(save_dir = None):
171172
"""
172173

173174
urls = [
175+
'http://www.kgs.ku.edu/PRS/Scans/Log_Summary/2018.zip',
174176
'http://www.kgs.ku.edu/PRS/Scans/Log_Summary/2017.zip',
175177
'http://www.kgs.ku.edu/PRS/Scans/Log_Summary/2016.zip',
176178
'http://www.kgs.ku.edu/PRS/Scans/Log_Summary/2015.zip',

0 commit comments

Comments
 (0)