-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.cursorrules
More file actions
93 lines (88 loc) · 3.47 KB
/
Copy path.cursorrules
File metadata and controls
93 lines (88 loc) · 3.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
You are building a QGIS plugin to interact with CARTO
Every time you choose to apply a rule(s),explicitely state the rule(s) in the output. You can abbreviate he rule description a single word or phrase.
# Existing Project structure
.
├── CONTRIBUTING.md
├── LICENSE
├── README.md
├── carto
│ ├── TODO.txt
│ ├── __init__.py
│ ├── __pycache__
│ │ ├── __init__.cpython-39.pyc
│ │ └── plugin.cpython-39.pyc
│ ├── core
│ │ ├── __init__.py
│ │ ├── __pycache__
│ │ │ ├── __init__.cpython-39.pyc
│ │ │ ├── api.cpython-39.pyc
│ │ │ ├── auth.cpython-39.pyc
│ │ │ ├── connection.cpython-39.pyc
│ │ │ ├── downloadtabletask.cpython-39.pyc
│ │ │ ├── enums.cpython-39.pyc
│ │ │ ├── importlayertask.cpython-39.pyc
│ │ │ ├── layers.cpython-39.pyc
│ │ │ ├── logging.cpython-39.pyc
│ │ │ └── utils.cpython-39.pyc
│ │ ├── api.py
│ │ ├── auth.py
│ │ ├── connection.py
│ │ ├── downloadtabletask.py
│ │ ├── enums.py
│ │ ├── importlayertask.py
│ │ ├── layers.py
│ │ ├── logging.py
│ │ └── utils.py
│ ├── gui
│ │ ├── __init__.py
│ │ ├── __pycache__
│ │ │ ├── __init__.cpython-39.pyc
│ │ │ ├── authorization_manager.cpython-39.pyc
│ │ │ ├── authorizationsuccessdialog.cpython-39.pyc
│ │ │ ├── authorizedialog.cpython-39.pyc
│ │ │ ├── dataitemprovider.cpython-39.pyc
│ │ │ ├── downloadfilteredlayerdialog.cpython-39.pyc
│ │ │ ├── extentselectionpanel.cpython-39.pyc
│ │ │ ├── importdialog.cpython-39.pyc
│ │ │ ├── selectprimarykeydialog.cpython-39.pyc
│ │ │ └── utils.cpython-39.pyc
│ │ ├── authorization_manager.py
│ │ ├── authorizationsuccessdialog.py
│ │ ├── authorizationsuccessdialog.ui
│ │ ├── authorizedialog.py
│ │ ├── authorizedialog.ui
│ │ ├── dataitemprovider.py
│ │ ├── downloadfilteredlayerdialog.py
│ │ ├── downloadfilteredlayerdialog.ui
│ │ ├── extentselectionpanel.py
│ │ ├── extentselectionpanel.ui
│ │ ├── img
│ │ │ ├── Data.svg
│ │ ├── importdialog.py
│ │ ├── importdialog.ui
│ │ ├── selectprimarykeydialog.py
│ │ ├── selectprimarykeydialog.ui
│ │ ├── settingsdialog.py
│ │ ├── settingsdialog.ui
│ │ ├── utils.py
│ │ └── webpages
│ │ ├── authorized.html
│ │ ├── bg-image.png
│ │ └── carto-logo.png
│ ├── libs
│ │ └── json2html
│ │ ├── __init__.py
│ │ ├── __pycache__
│ │ │ ├── __init__.cpython-39.pyc
│ │ │ └── jsonconv.cpython-39.pyc
│ │ └── jsonconv.py
│ ├── metadata.txt
│ └── plugin.py
├── helper.py
├── requirements.txt
├── requirements_test.txt
└── setup.cfg
# Tech stack
- QGIS
- CARTO
- Python