Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add logarithmic and power projections #742

Merged
merged 21 commits into from
Dec 23, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
1e3a5a6
Change name of cartesian.py to cartesian_linear.py and relab title
willschlitzer Dec 17, 2020
f02384b
Add cartesian_logarithmic.py
willschlitzer Dec 17, 2020
57f34b8
Change depiction of optional parameters in docstring
willschlitzer Dec 17, 2020
bd9b1e8
Add cartesian_power.py
willschlitzer Dec 17, 2020
2d9a201
Merge branch 'master' into log-power-proj
willschlitzer Dec 18, 2020
212785a
Update docstring format on cartesian_power.py
willschlitzer Dec 19, 2020
852224c
Format doctstring
willschlitzer Dec 19, 2020
38c0a7c
Remove code formatting in doctsring of cartesian_power.py
willschlitzer Dec 19, 2020
157ff48
Format docstring in cartesian_power.py
willschlitzer Dec 19, 2020
3fa6f27
Update cartesian_power.py and cartesian_logarithmic.py to use map wid…
willschlitzer Dec 20, 2020
d3a4f38
Merge branch 'master' into log-power-proj
willschlitzer Dec 20, 2020
51c521b
Merge branch 'master' into log-power-proj
willschlitzer Dec 20, 2020
6c3679b
Merge branch 'master' into log-power-proj
willschlitzer Dec 22, 2020
bf912e7
Merge branch 'master' into log-power-proj
willschlitzer Dec 22, 2020
e72a2cd
Merge branch 'master' into log-power-proj
willschlitzer Dec 22, 2020
55baf7f
Update examples/projections/nongeo/cartesian_power.py
willschlitzer Dec 23, 2020
325f881
Update examples/projections/nongeo/cartesian_logarithmic.py
willschlitzer Dec 23, 2020
9f24bfb
Update examples/projections/nongeo/cartesian_power.py
willschlitzer Dec 23, 2020
1c72c6b
Merge branch 'master' into log-power-proj
willschlitzer Dec 23, 2020
80780ea
[format-command] fixes
actions-bot Dec 23, 2020
384462e
Apply suggestions from code review
seisman Dec 23, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Apply suggestions from code review
  • Loading branch information
seisman committed Dec 23, 2020
commit 384462edcaf759256bf2c7518caa023fc09c5dd2
2 changes: 1 addition & 1 deletion examples/projections/nongeo/cartesian_logarithmic.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@
)
# Plot square root values as points on the line
# Style of points is 0.3 cm square, color is *red* with a *black* outline
# Points are set to clip if they go off the figure
# Points are not clipped if they go off the figure
fig.plot(x=xpoints, y=ypoints, style="s0.3c", color="red", no_clip=True, pen="black")
fig.show()
2 changes: 1 addition & 1 deletion examples/projections/nongeo/cartesian_power.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@
)
# Plot x,y values as points on the line
# Style of points is 0.2 cm circles, color is *green* with a *black* outline
# Points are set to clip if they go off the figure
# Points are not clipped if they go off the figure
fig.plot(x=xvalues, y=yvalues, style="c0.2c", color="green", no_clip=True, pen="black")
fig.show()