You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+11-1Lines changed: 11 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,6 @@
1
1
# Overture to ArcGIS
2
2
3
+
<!--start-->
3
4
Utility for easily getting data from Overture into ArcGIS Pro.
4
5
5
6
## Getting Started
@@ -14,10 +15,19 @@ Utility for easily getting data from Overture into ArcGIS Pro.
14
15
15
16
3 - Try it out!
16
17
18
+
There is a toolbox file for use within ArcGIS Pro at `./arcgis/overture_to_arcgis.pyt`. Use the `Make Overture Feature Class` tool to create a feature class from Overture data.
19
+
20
+
You can also use this utility directly from Python. Here is an example of getting a spatially enabled dataframe for places within a given extent.
21
+
17
22
```python
18
23
from arcgis_overture import get_spatially_enabled_dataframe
from docstrings in the Python package built with your project. This is configured to use Google docstring conventions.
32
-
-[MkDocs-Jupyter](https://mkdocs-jupyter.danielfrg.com/) - Extension enabling inclusion of Notebooks directly in the
33
-
documentation.
34
-
-[MkDocs-Material](https://squidfunk.github.io/mkdocs-material/) - Theme used for the documentation. Useful
35
-
information for customizing the theme if you want.
36
-
-[Admonitions](https://squidfunk.github.io/mkdocs-material/reference/admonitions/) - How to add Notes, etc.
37
-
38
-
39
-
## Commands
40
-
41
-
Here are a few commonly used commands for efficient project configuration and use.
42
-
43
-
*`make env` - creates a Conda environment in the project directory in `./env` with resources needed for project development
44
-
*`make jupyter` - run Jupyter notebook with options enabling connecting from another computer on the same network if desired
45
-
*`make data` - build data using the file `./scripts/make_data.py` using the Conda environment `./env` created with the command
46
-
`make env`
47
-
*`make docs` - builds documentation in `./docs` from resources in `./docsrc`.
48
-
*`make docserve` - runs live server on http://127.0.0.1:8000/ to see updates to docs in real
49
-
time. This is extremely useful when building the documentation to see how it will look.
50
-
51
-
!!! note
52
-
53
-
These commands are defined in `./make.cmd` if you want to examine, modify or extend this capability.
54
-
55
-
## Documentation layout
56
-
57
-
Files in the `./docsrc` directory are used to build the documentation. The following files are included by
58
-
default.
59
-
60
-
mkdocs.yml # MkDocs configuration file. This is where navigation is set up.
61
-
mkdocs/
62
-
index.md # Documentation homepage.
63
-
api.md # API (Python package) documentation generated from docstrings using MkDocStrings
64
-
notebooks/ # Directory to put Jupyter Notebooks
65
-
... # Other markdown pages, images and files.
66
-
67
-
!!! note
68
-
69
-
The structure of the documentation pages is derived directly from the way files are organized in this directory. This is well explained in the [MkDocs: File Layout](https://www.mkdocs.org/user-guide/writing-your-docs/#file-layout) documentation.
0 commit comments