-
Notifications
You must be signed in to change notification settings - Fork 108
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
Additional changes for week 1 #123
Conversation
Closing parenthesis was not captured as part of link, breaking it.
Fixes #60. Perhaps there is a better link for Unicode tables.
Fixes #63. Removed mention of PyPI at this stage, as it's explained later on in the course.
Fixes #62. Now we're asking two questions, one for capacity and one for current occupancy, and we're similarly giving two answers.
Fixes #59. Updating a link, adding some explanatory text, making some small formatting changes.
3713d51
to
bcc2603
Compare
Build seems to be failing due to an IPython version issue, investigating... Edit: This is due to a version requirement clash for More specifically, |
Requiring |
I was trying the build on my machine and apparently set some stuff. Sorry for any confusion @jamespjh! |
Of note, the latitude and longitude are switched in the new API. Also, it returns satellite images as JPEGs instead of PNGs, which means we can't use Matplotlib's imread. More info on parameters etc: https://tech.yandex.com/maps/doc/staticapi/1.x/dg/concepts/input_pa rams-docpage/
Matplotlib's imread only handles PNG data natively. An alternative would be to install PIL (after which imread should also be able to handle JPEG) but I didn't try it.
051fb2a
to
9ed7411
Compare
The only API I could find that gives static map images without requiring a key was from Yandex. Things to note:
|
IPython 7 has a version clash with jupyter-kernel for one of their requirements, which means that the build is failing. This is a temporary workaround until the official packages are fixed.
Removing reference to UCL Marketplace. Clarify requirement for previous experience with programming. Remove requirement for own laptops, since we'll be using the Cluster Room this year.
Should cover most of the comments on the "Introduction to Python" "chapter". The changes to the Classes page will go in a separate PR, since it will almost certainly be covered in Week 2.
This is mostly:
(still to do)