fastkml
fastkml copied to clipboard
Fast 🌍️ KML processing for python
This PR suggests changing file opening in KML file reading example from `open(kml_file, 'rt', encoding="utf-8")` to opening file in binary mode `open(kml_file, 'rb')`. Otherwise the latest version of fastkml throws...
Hi, still a bit of work to be done (and some useless functions I probably created in the heat of the moment), but I decided to open the PR to...
Pull Request #158 refactored by [Sourcery](https://sourcery.ai/github/). Since the original Pull Request was opened as a fork in a contributor's repository, we are unable to create a Pull Request branching from...
Pull Request #158 refactored by [Sourcery](https://sourcery.ai/github/). Since the original Pull Request was opened as a fork in a contributor's repository, we are unable to create a Pull Request branching from...
Pull Request #154 refactored by [Sourcery](https://sourcery.ai/github/). If you're happy with these changes, merge this Pull Request using the *Squash and merge* strategy. **NOTE**: As code is pushed to the original...
Pull Request #151 refactored by [Sourcery](https://sourcery.ai/github/). If you're happy with these changes, merge this Pull Request using the *Squash and merge* strategy. **NOTE**: As code is pushed to the original...
``` @abstractmethod def from_element(self, element, subelements): # subelements = ["altitude", "altitudeMode", {LatLonBox: ["north", "south", "east", "west", "rotation"]}] super().from_element(element) for subelement in subelements: if isinstance(subelement, dict): self.from_element(element, subelement.values()[0]) else: value =...
How can I add LookAt I think it should be added to Document d = kml.Document(ns, 'docid', 'doc name', 'doc description') there should be something like 14.0 44.0 0 0...