├── .github └── workflows │ └── macos.yaml ├── COPYING ├── README.md ├── construct.yaml ├── environment.yaml └── extra ├── Info.plist └── Resources ├── asc.icns ├── ddf.icns ├── dem.icns ├── dt0.icns ├── dxf.icns ├── gml.icns ├── img.icns ├── jp2.icns ├── mif.icns ├── mldata.icns ├── qgis.icns ├── qgs.icns ├── qgz.icns ├── qlr.icns ├── qml.icns ├── qpt.icns ├── shp.icns ├── sqlite.icns └── tiff.icns /.github/workflows/macos.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | name: 🍎 MacOS 3 | on: 4 | push: 5 | branches: 6 | - main 7 | pull_request: 8 | branches: 9 | - main 10 | schedule: 11 | - cron: '40 7 * * *' 12 | 13 | 14 | # TODO: probably create a nightly job 15 | 16 | jobs: 17 | get-version: 18 | name: Get version 19 | runs-on: ubuntu-latest 20 | outputs: 21 | QGIS_VERSION: ${{ steps.get-version.outputs.QGIS_VERSION }} 22 | QGIS_VERSION_SHORT: ${{ steps.get-version.outputs.QGIS_VERSION_SHORT }} 23 | MICROMAMBA_PLATFORM: ${{ steps.get-version.outputs.MICROMAMBA_PLATFORM }} 24 | steps: 25 | - name: 🌾 Get latest version 26 | id: get-version 27 | shell: bash 28 | run: | 29 | QGIS_VERSION=$(conda search -c conda-forge -f qgis | grep py311 | tail -n 1 | tr -s ' ' | cut -f 2 -d ' ') 30 | QGIS_VERSION_SHORT=$(echo $QGIS_VERSION | cut -d'.' -f 1,2) 31 | echo QGIS_VERSION=$QGIS_VERSION >> $GITHUB_OUTPUT 32 | echo QGIS_VERSION_SHORT=$QGIS_VERSION_SHORT >> $GITHUB_OUTPUT 33 | echo MICROMAMBA_PLATFORM=$MICROMAMBA_PLATFORM >> $GITHUB_OUTPUT 34 | 35 | package: 36 | name: Package for macOS 37 | runs-on: macos-13 38 | needs: get-version 39 | env: 40 | QGIS_VERSION: ${{ needs.get-version.outputs.QGIS_VERSION }} 41 | QGIS_VERSION_SHORT: ${{ needs.get-version.outputs.QGIS_VERSION_SHORT }} 42 | MICROMAMBA_PLATFORM: ${{ needs.get-version.outputs.MICROMAMBA_PLATFORM }} 43 | strategy: 44 | matrix: 45 | include: 46 | - architecture: 'x86_64' 47 | conda_platform: 'osx-64' 48 | - architecture: 'arm64' 49 | conda_platform: 'osx-arm64' 50 | steps: 51 | - name: 🐣 Checkout 52 | uses: actions/checkout@v4 53 | 54 | - name: 🐣 Checkout Constructor 55 | uses: actions/checkout@v4 56 | with: 57 | fetch-depth: 0 58 | repository: opengisch/constructor 59 | ref: qgis-bundling 60 | path: constructor 61 | 62 | - name: Prepare 63 | run: | 64 | sed -i '' "s/__ver__/$QGIS_VERSION/g" construct.yaml 65 | sed -i '' "s/__shortver__/$QGIS_VERSION_SHORT/g" construct.yaml 66 | 67 | 68 | - uses: conda-incubator/setup-miniconda@v2 69 | with: 70 | miniconda-version: "latest" 71 | activate-environment: "constructor" 72 | environment-file: "environment.yaml" 73 | 74 | - name: 📦 Package 75 | shell: pwsh 76 | run: | 77 | curl -s https://api.github.com/repos/mamba-org/micromamba-releases/releases/latest 78 | curl -s https://api.github.com/repos/mamba-org/micromamba-releases/releases/latest | grep 'browser_download_url.*micromamba-${{ matrix.conda_platform }}"' | cut -d : -f 2,3 | tr -d '"' 79 | curl -s https://api.github.com/repos/mamba-org/micromamba-releases/releases/latest | grep 'browser_download_url.*micromamba-${{ matrix.conda_platform }}"' | cut -d : -f 2,3 | tr -d '"' | wget -qi - 80 | wget https://github.com/mamba-org/micromamba-releases/releases/download/1.4.9-0/micromamba-${{ matrix.conda_platform }} 81 | ls -al 82 | conda build constructor 83 | conda install /Users/runner/miniconda3/envs/constructor/conda-bld/osx-64/*.tar.bz2 84 | constructor --platform=${{ matrix.conda_platform }} --conda-exe=micromamba-${{ matrix.conda_platform }} . 85 | 86 | - name: 📦 Upload artifacts 87 | uses: actions/upload-artifact@v4 88 | with: 89 | name: QGIS-${{ env.QGIS_VERSION }}-MacOSX-${{ matrix.architecture }} 90 | path: QGIS-${{ env.QGIS_VERSION }}-MacOSX-${{ matrix.architecture }}.pkg 91 | 92 | release: 93 | name: Release 94 | runs-on: ubuntu-latest 95 | needs: 96 | - get-version 97 | - package 98 | env: 99 | QGIS_VERSION: ${{ needs.get-version.outputs.QGIS_VERSION }} 100 | QGIS_VERSION_SHORT: ${{ needs.get-version.outputs.QGIS_VERSION_SHORT }} 101 | MICROMAMBA_PLATFORM: ${{ needs.get-version.outputs.MICROMAMBA_PLATFORM }} 102 | steps: 103 | - uses: actions/download-artifact@v4 104 | with: 105 | name: QGIS-${{ env.QGIS_VERSION }}-MacOSX-x86_64 106 | - uses: actions/download-artifact@v4 107 | with: 108 | name: QGIS-${{ env.QGIS_VERSION }}-MacOSX-arm64 109 | - uses: ncipollo/release-action@v1 110 | with: 111 | name: ${{ env.QGIS_VERSION }} 112 | artifacts: "*.pkg" 113 | body: "See https://github.com/qgis/QGIS/releases" 114 | tag: ${{ env.QGIS_VERSION }} 115 | allowUpdates: True 116 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 2, June 1991 3 | 4 | Copyright (C) 1989, 1991 Free Software Foundation, Inc., 5 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 6 | Everyone is permitted to copy and distribute verbatim copies 7 | of this license document, but changing it is not allowed. 8 | 9 | Preamble 10 | 11 | The licenses for most software are designed to take away your 12 | freedom to share and change it. By contrast, the GNU General Public 13 | License is intended to guarantee your freedom to share and change free 14 | software--to make sure the software is free for all its users. This 15 | General Public License applies to most of the Free Software 16 | Foundation's software and to any other program whose authors commit to 17 | using it. (Some other Free Software Foundation software is covered by 18 | the GNU Lesser General Public License instead.) You can apply it to 19 | your programs, too. 20 | 21 | When we speak of free software, we are referring to freedom, not 22 | price. Our General Public Licenses are designed to make sure that you 23 | have the freedom to distribute copies of free software (and charge for 24 | this service if you wish), that you receive source code or can get it 25 | if you want it, that you can change the software or use pieces of it 26 | in new free programs; and that you know you can do these things. 27 | 28 | To protect your rights, we need to make restrictions that forbid 29 | anyone to deny you these rights or to ask you to surrender the rights. 30 | These restrictions translate to certain responsibilities for you if you 31 | distribute copies of the software, or if you modify it. 32 | 33 | For example, if you distribute copies of such a program, whether 34 | gratis or for a fee, you must give the recipients all the rights that 35 | you have. You must make sure that they, too, receive or can get the 36 | source code. And you must show them these terms so they know their 37 | rights. 38 | 39 | We protect your rights with two steps: (1) copyright the software, and 40 | (2) offer you this license which gives you legal permission to copy, 41 | distribute and/or modify the software. 42 | 43 | Also, for each author's protection and ours, we want to make certain 44 | that everyone understands that there is no warranty for this free 45 | software. If the software is modified by someone else and passed on, we 46 | want its recipients to know that what they have is not the original, so 47 | that any problems introduced by others will not reflect on the original 48 | authors' reputations. 49 | 50 | Finally, any free program is threatened constantly by software 51 | patents. We wish to avoid the danger that redistributors of a free 52 | program will individually obtain patent licenses, in effect making the 53 | program proprietary. To prevent this, we have made it clear that any 54 | patent must be licensed for everyone's free use or not licensed at all. 55 | 56 | The precise terms and conditions for copying, distribution and 57 | modification follow. 58 | 59 | GNU GENERAL PUBLIC LICENSE 60 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 61 | 62 | 0. This License applies to any program or other work which contains 63 | a notice placed by the copyright holder saying it may be distributed 64 | under the terms of this General Public License. The "Program", below, 65 | refers to any such program or work, and a "work based on the Program" 66 | means either the Program or any derivative work under copyright law: 67 | that is to say, a work containing the Program or a portion of it, 68 | either verbatim or with modifications and/or translated into another 69 | language. (Hereinafter, translation is included without limitation in 70 | the term "modification".) Each licensee is addressed as "you". 71 | 72 | Activities other than copying, distribution and modification are not 73 | covered by this License; they are outside its scope. The act of 74 | running the Program is not restricted, and the output from the Program 75 | is covered only if its contents constitute a work based on the 76 | Program (independent of having been made by running the Program). 77 | Whether that is true depends on what the Program does. 78 | 79 | 1. You may copy and distribute verbatim copies of the Program's 80 | source code as you receive it, in any medium, provided that you 81 | conspicuously and appropriately publish on each copy an appropriate 82 | copyright notice and disclaimer of warranty; keep intact all the 83 | notices that refer to this License and to the absence of any warranty; 84 | and give any other recipients of the Program a copy of this License 85 | along with the Program. 86 | 87 | You may charge a fee for the physical act of transferring a copy, and 88 | you may at your option offer warranty protection in exchange for a fee. 89 | 90 | 2. You may modify your copy or copies of the Program or any portion 91 | of it, thus forming a work based on the Program, and copy and 92 | distribute such modifications or work under the terms of Section 1 93 | above, provided that you also meet all of these conditions: 94 | 95 | a) You must cause the modified files to carry prominent notices 96 | stating that you changed the files and the date of any change. 97 | 98 | b) You must cause any work that you distribute or publish, that in 99 | whole or in part contains or is derived from the Program or any 100 | part thereof, to be licensed as a whole at no charge to all third 101 | parties under the terms of this License. 102 | 103 | c) If the modified program normally reads commands interactively 104 | when run, you must cause it, when started running for such 105 | interactive use in the most ordinary way, to print or display an 106 | announcement including an appropriate copyright notice and a 107 | notice that there is no warranty (or else, saying that you provide 108 | a warranty) and that users may redistribute the program under 109 | these conditions, and telling the user how to view a copy of this 110 | License. (Exception: if the Program itself is interactive but 111 | does not normally print such an announcement, your work based on 112 | the Program is not required to print an announcement.) 113 | 114 | These requirements apply to the modified work as a whole. If 115 | identifiable sections of that work are not derived from the Program, 116 | and can be reasonably considered independent and separate works in 117 | themselves, then this License, and its terms, do not apply to those 118 | sections when you distribute them as separate works. But when you 119 | distribute the same sections as part of a whole which is a work based 120 | on the Program, the distribution of the whole must be on the terms of 121 | this License, whose permissions for other licensees extend to the 122 | entire whole, and thus to each and every part regardless of who wrote it. 123 | 124 | Thus, it is not the intent of this section to claim rights or contest 125 | your rights to work written entirely by you; rather, the intent is to 126 | exercise the right to control the distribution of derivative or 127 | collective works based on the Program. 128 | 129 | In addition, mere aggregation of another work not based on the Program 130 | with the Program (or with a work based on the Program) on a volume of 131 | a storage or distribution medium does not bring the other work under 132 | the scope of this License. 133 | 134 | 3. You may copy and distribute the Program (or a work based on it, 135 | under Section 2) in object code or executable form under the terms of 136 | Sections 1 and 2 above provided that you also do one of the following: 137 | 138 | a) Accompany it with the complete corresponding machine-readable 139 | source code, which must be distributed under the terms of Sections 140 | 1 and 2 above on a medium customarily used for software interchange; or, 141 | 142 | b) Accompany it with a written offer, valid for at least three 143 | years, to give any third party, for a charge no more than your 144 | cost of physically performing source distribution, a complete 145 | machine-readable copy of the corresponding source code, to be 146 | distributed under the terms of Sections 1 and 2 above on a medium 147 | customarily used for software interchange; or, 148 | 149 | c) Accompany it with the information you received as to the offer 150 | to distribute corresponding source code. (This alternative is 151 | allowed only for noncommercial distribution and only if you 152 | received the program in object code or executable form with such 153 | an offer, in accord with Subsection b above.) 154 | 155 | The source code for a work means the preferred form of the work for 156 | making modifications to it. For an executable work, complete source 157 | code means all the source code for all modules it contains, plus any 158 | associated interface definition files, plus the scripts used to 159 | control compilation and installation of the executable. However, as a 160 | special exception, the source code distributed need not include 161 | anything that is normally distributed (in either source or binary 162 | form) with the major components (compiler, kernel, and so on) of the 163 | operating system on which the executable runs, unless that component 164 | itself accompanies the executable. 165 | 166 | If distribution of executable or object code is made by offering 167 | access to copy from a designated place, then offering equivalent 168 | access to copy the source code from the same place counts as 169 | distribution of the source code, even though third parties are not 170 | compelled to copy the source along with the object code. 171 | 172 | 4. You may not copy, modify, sublicense, or distribute the Program 173 | except as expressly provided under this License. Any attempt 174 | otherwise to copy, modify, sublicense or distribute the Program is 175 | void, and will automatically terminate your rights under this License. 176 | However, parties who have received copies, or rights, from you under 177 | this License will not have their licenses terminated so long as such 178 | parties remain in full compliance. 179 | 180 | 5. You are not required to accept this License, since you have not 181 | signed it. However, nothing else grants you permission to modify or 182 | distribute the Program or its derivative works. These actions are 183 | prohibited by law if you do not accept this License. Therefore, by 184 | modifying or distributing the Program (or any work based on the 185 | Program), you indicate your acceptance of this License to do so, and 186 | all its terms and conditions for copying, distributing or modifying 187 | the Program or works based on it. 188 | 189 | 6. Each time you redistribute the Program (or any work based on the 190 | Program), the recipient automatically receives a license from the 191 | original licensor to copy, distribute or modify the Program subject to 192 | these terms and conditions. You may not impose any further 193 | restrictions on the recipients' exercise of the rights granted herein. 194 | You are not responsible for enforcing compliance by third parties to 195 | this License. 196 | 197 | 7. If, as a consequence of a court judgment or allegation of patent 198 | infringement or for any other reason (not limited to patent issues), 199 | conditions are imposed on you (whether by court order, agreement or 200 | otherwise) that contradict the conditions of this License, they do not 201 | excuse you from the conditions of this License. If you cannot 202 | distribute so as to satisfy simultaneously your obligations under this 203 | License and any other pertinent obligations, then as a consequence you 204 | may not distribute the Program at all. For example, if a patent 205 | license would not permit royalty-free redistribution of the Program by 206 | all those who receive copies directly or indirectly through you, then 207 | the only way you could satisfy both it and this License would be to 208 | refrain entirely from distribution of the Program. 209 | 210 | If any portion of this section is held invalid or unenforceable under 211 | any particular circumstance, the balance of the section is intended to 212 | apply and the section as a whole is intended to apply in other 213 | circumstances. 214 | 215 | It is not the purpose of this section to induce you to infringe any 216 | patents or other property right claims or to contest validity of any 217 | such claims; this section has the sole purpose of protecting the 218 | integrity of the free software distribution system, which is 219 | implemented by public license practices. Many people have made 220 | generous contributions to the wide range of software distributed 221 | through that system in reliance on consistent application of that 222 | system; it is up to the author/donor to decide if he or she is willing 223 | to distribute software through any other system and a licensee cannot 224 | impose that choice. 225 | 226 | This section is intended to make thoroughly clear what is believed to 227 | be a consequence of the rest of this License. 228 | 229 | 8. If the distribution and/or use of the Program is restricted in 230 | certain countries either by patents or by copyrighted interfaces, the 231 | original copyright holder who places the Program under this License 232 | may add an explicit geographical distribution limitation excluding 233 | those countries, so that distribution is permitted only in or among 234 | countries not thus excluded. In such case, this License incorporates 235 | the limitation as if written in the body of this License. 236 | 237 | 9. The Free Software Foundation may publish revised and/or new versions 238 | of the General Public License from time to time. Such new versions will 239 | be similar in spirit to the present version, but may differ in detail to 240 | address new problems or concerns. 241 | 242 | Each version is given a distinguishing version number. If the Program 243 | specifies a version number of this License which applies to it and "any 244 | later version", you have the option of following the terms and conditions 245 | either of that version or of any later version published by the Free 246 | Software Foundation. If the Program does not specify a version number of 247 | this License, you may choose any version ever published by the Free Software 248 | Foundation. 249 | 250 | 10. If you wish to incorporate parts of the Program into other free 251 | programs whose distribution conditions are different, write to the author 252 | to ask for permission. For software which is copyrighted by the Free 253 | Software Foundation, write to the Free Software Foundation; we sometimes 254 | make exceptions for this. Our decision will be guided by the two goals 255 | of preserving the free status of all derivatives of our free software and 256 | of promoting the sharing and reuse of software generally. 257 | 258 | NO WARRANTY 259 | 260 | 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY 261 | FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN 262 | OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES 263 | PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED 264 | OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 265 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS 266 | TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE 267 | PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, 268 | REPAIR OR CORRECTION. 269 | 270 | 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 271 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR 272 | REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, 273 | INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING 274 | OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED 275 | TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY 276 | YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER 277 | PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE 278 | POSSIBILITY OF SUCH DAMAGES. 279 | 280 | END OF TERMS AND CONDITIONS 281 | 282 | In addition, as a special exception, the QGIS Development Team gives 283 | permission to link the code of this program with the Qt library, 284 | including but not limited to the following versions (both free and 285 | commercial): Qt/Non-commercial Windows, Qt/Windows, Qt/X11, Qt/Mac, and 286 | Qt/Embedded (or with modified versions of Qt that use the same license 287 | as Qt), and distribute linked combinations including the two. You must 288 | obey the GNU General Public License in all respects for all of the code 289 | used other than Qt. If you modify this file, you may extend this 290 | exception to your version of the file, but you are not obligated to do 291 | so. If you do not wish to do so, delete this exception statement from 292 | your version. 293 | 294 | 295 | How to Apply These Terms to Your New Programs 296 | 297 | If you develop a new program, and you want it to be of the greatest 298 | possible use to the public, the best way to achieve this is to make it 299 | free software which everyone can redistribute and change under these terms. 300 | 301 | To do so, attach the following notices to the program. It is safest 302 | to attach them to the start of each source file to most effectively 303 | convey the exclusion of warranty; and each file should have at least 304 | the "copyright" line and a pointer to where the full notice is found. 305 | 306 | 307 | Copyright (C) 308 | 309 | This program is free software; you can redistribute it and/or modify 310 | it under the terms of the GNU General Public License as published by 311 | the Free Software Foundation; either version 2 of the License, or 312 | (at your option) any later version. 313 | 314 | This program is distributed in the hope that it will be useful, 315 | but WITHOUT ANY WARRANTY; without even the implied warranty of 316 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 317 | GNU General Public License for more details. 318 | 319 | You should have received a copy of the GNU General Public License along 320 | with this program; if not, write to the Free Software Foundation, Inc., 321 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 322 | 323 | Also add information on how to contact you by electronic and paper mail. 324 | 325 | If the program is interactive, make it output a short notice like this 326 | when it starts in an interactive mode: 327 | 328 | Gnomovision version 69, Copyright (C) year name of author 329 | Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 330 | This is free software, and you are welcome to redistribute it 331 | under certain conditions; type `show c' for details. 332 | 333 | The hypothetical commands `show w' and `show c' should show the appropriate 334 | parts of the General Public License. Of course, the commands you use may 335 | be called something other than `show w' and `show c'; they could even be 336 | mouse-clicks or menu items--whatever suits your program. 337 | 338 | You should also get your employer (if you work as a programmer) or your 339 | school, if any, to sign a "copyright disclaimer" for the program, if 340 | necessary. Here is a sample; alter the names: 341 | 342 | Yoyodyne, Inc., hereby disclaims all copyright interest in the program 343 | `Gnomovision' (which makes passes at compilers) written by James Hacker. 344 | 345 | , 1 April 1989 346 | Ty Coon, President of Vice 347 | 348 | This General Public License does not permit incorporating your program into 349 | proprietary programs. If your program is a subroutine library, you may 350 | consider it more useful to permit linking proprietary applications with the 351 | library. If this is what you want to do, use the GNU Lesser General 352 | Public License instead of this License. 353 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # QGIS installer packages from conda 2 | 3 | This repository produces QGIS installers based on [conda packages](https://anaconda.org/conda-forge/qgis). 4 | 5 | Packages can be found on the [release](https://github.com/opengisch/qgis-conda-builder/releases) page. 6 | 7 | Within the installer, you can choose a path on your system in which the packages will be installed. A new conda environment will be created at the target location. 8 | -------------------------------------------------------------------------------- /construct.yaml: -------------------------------------------------------------------------------- 1 | name: QGIS 2 | version: "__ver__" 3 | channels: 4 | - "conda-forge" 5 | specs: 6 | - qgis=__ver__ 7 | - python=3.11 8 | - libgdal-arrow-parquet 9 | license_file: COPYING 10 | # welcome_image: photo.png # [win] 11 | installer_type: pkg 12 | pkg_name: QGIS-__shortver__.app 13 | default_location_pkg: /Applications 14 | reverse_domain_identifier: org.qgis.QGIS 15 | readme_text: | 16 | Welcome to the QGIS __ver__ Installer! 17 | 18 | QGIS is a powerful and user-friendly open-source Geographic Information System (GIS). Whether you're a cartographer, geographer, environmental scientist, or simply someone interested in spatial data, QGIS provides you with the tools to create, edit, analyze, and visualize geospatial information. 19 | 20 | Before you proceed with the installation, please take a moment to review the following information: 21 | 22 | 1. **License Agreement:** By installing QGIS, you agree to abide by the terms of the GNU General Public License. This means that QGIS is free to use, modify, and distribute, fostering collaboration and community-driven development. 23 | 24 | 2. **Documentation and Support:** QGIS offers extensive documentation, tutorials, and a vibrant user community that can help you get started and address any questions you might have. 25 | 26 | 3. **Security:** The QGIS project takes security seriously. Be sure to download the installer from the official QGIS website to avoid potential security risks. 27 | 28 | 4. **Contributions:** QGIS thrives on contributions from users like you. If you have coding skills, cartographic expertise, or a passion for spatial data, consider getting involved in the development and enhancement of the software. 29 | 30 | Thank you for choosing QGIS for your geospatial needs. Let's get started with the installation process. If you have any questions or encounter any issues, our community is here to help. 31 | 32 | Click "Next" to begin the installation journey! 33 | conclusion_text: | 34 | Congratulations, QGIS __ver__ is now successfully installed on your system! 35 | 36 | You've taken the first step towards unlocking the power of spatial data analysis, cartography, and geographic information systems. QGIS empowers you to explore, visualize, and interpret data in ways that can lead to new insights and discoveries. 37 | 38 | As you embark on your QGIS journey, here are a few things to keep in mind: 39 | 40 | 1. **Exploration:** Dive into the intuitive interface and start exploring the tools and functionalities QGIS offers. From simple map creation to advanced spatial analysis, the possibilities are endless. 41 | 42 | 2. **Learning:** Familiarize yourself with the documentation and tutorials available on the QGIS website. They will guide you through various features and help you make the most of the software's capabilities. 43 | 44 | 3. **Community:** Join the thriving QGIS community. Connect with fellow users, seek advice, share your work, and learn from others' experiences. The community's collaborative spirit is at the heart of QGIS's success. 45 | 46 | 4. **Plugins:** QGIS's extensibility is one of its strengths. Explore the plugin repository to find and install additional tools and features that align with your specific needs. 47 | 48 | 5. **Data Integration:** QGIS supports a wide range of data formats and sources. Import your own datasets or connect to external data sources to enrich your analyses. 49 | 50 | 6. **Feedback:** Your experience matters. If you encounter any issues, have suggestions for improvement, or want to contribute, don't hesitate to get in touch with the QGIS development team. 51 | 52 | Remember, QGIS is a powerful tool that grows with your skills and aspirations. Whether you're creating maps for presentations, conducting complex spatial analysis, or working on environmental studies, QGIS is here to support you every step of the way. 53 | 54 | Thank you for choosing QGIS. Now go ahead, start mapping, and let your geospatial journey unfold! 55 | mac_bundle: 56 | name: QGIS-__shortver__ 57 | info_plist: extra/Info.plist 58 | resources: extra/Resources 59 | executable: bin/qgis 60 | -------------------------------------------------------------------------------- /environment.yaml: -------------------------------------------------------------------------------- 1 | name: anaconda-client-env 2 | channels: 3 | - conda-forge 4 | - defaults 5 | dependencies: 6 | - conda-build 7 | - conda-standalone 8 | - pillow >=3.1 9 | -------------------------------------------------------------------------------- /extra/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleDocumentTypes 8 | 9 | 10 | CFBundleTypeExtensions 11 | 12 | qgs 13 | 14 | CFBundleTypeIconFile 15 | qgs.icns 16 | CFBundleTypeName 17 | QGIS Project document 18 | CFBundleTypeOSTypes 19 | 20 | QGIS 21 | 22 | CFBundleTypeRole 23 | Editor 24 | 25 | 26 | CFBundleTypeExtensions 27 | 28 | qgz 29 | 30 | CFBundleTypeIconFile 31 | qgz.icns 32 | CFBundleTypeName 33 | QGIS Project zipped container 34 | CFBundleTypeRole 35 | Editor 36 | 37 | 38 | CFBundleTypeExtensions 39 | 40 | shp 41 | 42 | CFBundleTypeIconFile 43 | shp.icns 44 | CFBundleTypeName 45 | ESRI Shape document 46 | CFBundleTypeRole 47 | Editor 48 | 49 | 50 | CFBundleTypeExtensions 51 | 52 | ddf 53 | 54 | CFBundleTypeIconFile 55 | ddf.icns 56 | CFBundleTypeName 57 | SDTS document 58 | CFBundleTypeRole 59 | Viewer 60 | 61 | 62 | CFBundleTypeExtensions 63 | 64 | mif 65 | 66 | CFBundleTypeIconFile 67 | mif.icns 68 | CFBundleTypeName 69 | MapInfo document 70 | CFBundleTypeRole 71 | Viewer 72 | 73 | 74 | CFBundleTypeExtensions 75 | 76 | gml 77 | 78 | CFBundleTypeIconFile 79 | gml.icns 80 | CFBundleTypeName 81 | GML document 82 | CFBundleTypeRole 83 | Viewer 84 | 85 | 86 | CFBundleTypeExtensions 87 | 88 | tiff 89 | tif 90 | 91 | CFBundleTypeIconFile 92 | tiff.icns 93 | CFBundleTypeMIMETypes 94 | 95 | image/tiff 96 | 97 | CFBundleTypeName 98 | GeoTIFF image 99 | CFBundleTypeOSTypes 100 | 101 | TIFF 102 | 103 | CFBundleTypeRole 104 | Viewer 105 | 106 | 107 | CFBundleTypeExtensions 108 | 109 | img 110 | 111 | CFBundleTypeIconFile 112 | img.icns 113 | CFBundleTypeName 114 | ERDAS IMAGINE document 115 | CFBundleTypeRole 116 | Viewer 117 | 118 | 119 | CFBundleTypeExtensions 120 | 121 | asc 122 | 123 | CFBundleTypeIconFile 124 | asc.icns 125 | CFBundleTypeName 126 | Arc/Info ASCII Grid document 127 | CFBundleTypeRole 128 | Viewer 129 | 130 | 131 | CFBundleTypeExtensions 132 | 133 | dt0 134 | 135 | CFBundleTypeIconFile 136 | dt0.icns 137 | CFBundleTypeName 138 | DTED document 139 | CFBundleTypeRole 140 | Viewer 141 | 142 | 143 | CFBundleTypeExtensions 144 | 145 | jp2 146 | 147 | CFBundleTypeIconFile 148 | jp2.icns 149 | CFBundleTypeMIMETypes 150 | 151 | image/jp2 152 | 153 | CFBundleTypeName 154 | JPEG 2000 image 155 | CFBundleTypeOSTypes 156 | 157 | jp2 158 | 159 | CFBundleTypeRole 160 | Viewer 161 | 162 | 163 | CFBundleTypeExtensions 164 | 165 | dem 166 | 167 | CFBundleTypeIconFile 168 | dem.icns 169 | CFBundleTypeName 170 | DEM document 171 | CFBundleTypeRole 172 | Viewer 173 | 174 | 175 | CFBundleTypeExtensions 176 | 177 | qml 178 | 179 | CFBundleTypeIconFile 180 | qml.icns 181 | CFBundleTypeName 182 | QGIS style document 183 | CFBundleTypeRole 184 | Editor 185 | 186 | 187 | CFBundleTypeExtensions 188 | 189 | mldata 190 | 191 | CFBundleTypeIconFile 192 | mldata.icns 193 | CFBundleTypeName 194 | Memory layer document 195 | CFBundleTypeRole 196 | Editor 197 | 198 | 199 | CFBundleTypeExtensions 200 | 201 | qpt 202 | 203 | CFBundleTypeIconFile 204 | qpt.icns 205 | CFBundleTypeName 206 | QGIS composer template 207 | CFBundleTypeRole 208 | Editor 209 | 210 | 211 | CFBundleTypeExtensions 212 | 213 | qlr 214 | 215 | CFBundleTypeIconFile 216 | qlr.icns 217 | CFBundleTypeName 218 | QGIS layer definition document 219 | CFBundleTypeRole 220 | Editor 221 | 222 | 223 | CFBundleTypeExtensions 224 | 225 | dxf 226 | 227 | CFBundleTypeIconFile 228 | dxf.icns 229 | CFBundleTypeName 230 | DXF document 231 | CFBundleTypeRole 232 | Viewer 233 | 234 | 235 | CFBundleTypeExtensions 236 | 237 | sqlite 238 | 239 | CFBundleTypeIconFile 240 | sqlite.icns 241 | CFBundleTypeName 242 | SQLite database 243 | CFBundleTypeRole 244 | Editor 245 | 246 | 247 | CFBundleExecutable 248 | QGIS 249 | CFBundleGetInfoString 250 | QGIS 3.22.7-Białowieża (), © 2002-2019 QGIS Development Team 251 | CFBundleIconFile 252 | qgis.icns 253 | CFBundleIdentifier 254 | org.qgis.qgis3 255 | CFBundleInfoDictionaryVersion 256 | 6.0 257 | CFBundleLocalizations 258 | 259 | en 260 | af 261 | ar 262 | bg 263 | ca_ES 264 | cs_CZ 265 | da_DK 266 | de 267 | el_GR 268 | es 269 | fa 270 | fi 271 | fr 272 | gl_ES 273 | he 274 | hr_HR 275 | hu 276 | id 277 | is 278 | it 279 | ja 280 | ka_GE 281 | ko_KR 282 | lo 283 | lt 284 | lv 285 | mn 286 | nl 287 | no 288 | pl_PL 289 | pt_BR 290 | pt_PT 291 | ro 292 | ru 293 | sk 294 | sl_SI 295 | sq_AL 296 | sr_CS-Latn 297 | sv 298 | ta 299 | th 300 | tr 301 | uk 302 | vi 303 | xh 304 | zh_CN 305 | zh_TW 306 | 307 | CFBundleName 308 | QGIS 309 | CFBundlePackageType 310 | APPL 311 | CFBundleShortVersionString 312 | 3.22.7 313 | CFBundleSignature 314 | QGIS 315 | CFBundleVersion 316 | 3.22.7 () 317 | CSResourcesFileMapped 318 | 319 | LSEnvironment 320 | 321 | PYQGIS_STARTUP 322 | pyqgis-startup.py 323 | QT_AUTO_SCREEN_SCALE_FACTOR 324 | 1 325 | 326 | LSFileQuarantineEnabled 327 | 328 | LSMinimumSystemVersion 329 | 10.13.0 330 | NSHighResolutionCapable 331 | True 332 | NSPrincipalClass 333 | NSApplication 334 | 335 | 336 | -------------------------------------------------------------------------------- /extra/Resources/asc.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/qgis-conda-builder/1af37b6655d3912b0071ab6c59284b714a54e56b/extra/Resources/asc.icns -------------------------------------------------------------------------------- /extra/Resources/ddf.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/qgis-conda-builder/1af37b6655d3912b0071ab6c59284b714a54e56b/extra/Resources/ddf.icns -------------------------------------------------------------------------------- /extra/Resources/dem.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/qgis-conda-builder/1af37b6655d3912b0071ab6c59284b714a54e56b/extra/Resources/dem.icns -------------------------------------------------------------------------------- /extra/Resources/dt0.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/qgis-conda-builder/1af37b6655d3912b0071ab6c59284b714a54e56b/extra/Resources/dt0.icns -------------------------------------------------------------------------------- /extra/Resources/dxf.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/qgis-conda-builder/1af37b6655d3912b0071ab6c59284b714a54e56b/extra/Resources/dxf.icns -------------------------------------------------------------------------------- /extra/Resources/gml.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/qgis-conda-builder/1af37b6655d3912b0071ab6c59284b714a54e56b/extra/Resources/gml.icns -------------------------------------------------------------------------------- /extra/Resources/img.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/qgis-conda-builder/1af37b6655d3912b0071ab6c59284b714a54e56b/extra/Resources/img.icns -------------------------------------------------------------------------------- /extra/Resources/jp2.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/qgis-conda-builder/1af37b6655d3912b0071ab6c59284b714a54e56b/extra/Resources/jp2.icns -------------------------------------------------------------------------------- /extra/Resources/mif.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/qgis-conda-builder/1af37b6655d3912b0071ab6c59284b714a54e56b/extra/Resources/mif.icns -------------------------------------------------------------------------------- /extra/Resources/mldata.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/qgis-conda-builder/1af37b6655d3912b0071ab6c59284b714a54e56b/extra/Resources/mldata.icns -------------------------------------------------------------------------------- /extra/Resources/qgis.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/qgis-conda-builder/1af37b6655d3912b0071ab6c59284b714a54e56b/extra/Resources/qgis.icns -------------------------------------------------------------------------------- /extra/Resources/qgs.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/qgis-conda-builder/1af37b6655d3912b0071ab6c59284b714a54e56b/extra/Resources/qgs.icns -------------------------------------------------------------------------------- /extra/Resources/qgz.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/qgis-conda-builder/1af37b6655d3912b0071ab6c59284b714a54e56b/extra/Resources/qgz.icns -------------------------------------------------------------------------------- /extra/Resources/qlr.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/qgis-conda-builder/1af37b6655d3912b0071ab6c59284b714a54e56b/extra/Resources/qlr.icns -------------------------------------------------------------------------------- /extra/Resources/qml.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/qgis-conda-builder/1af37b6655d3912b0071ab6c59284b714a54e56b/extra/Resources/qml.icns -------------------------------------------------------------------------------- /extra/Resources/qpt.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/qgis-conda-builder/1af37b6655d3912b0071ab6c59284b714a54e56b/extra/Resources/qpt.icns -------------------------------------------------------------------------------- /extra/Resources/shp.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/qgis-conda-builder/1af37b6655d3912b0071ab6c59284b714a54e56b/extra/Resources/shp.icns -------------------------------------------------------------------------------- /extra/Resources/sqlite.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/qgis-conda-builder/1af37b6655d3912b0071ab6c59284b714a54e56b/extra/Resources/sqlite.icns -------------------------------------------------------------------------------- /extra/Resources/tiff.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opengisch/qgis-conda-builder/1af37b6655d3912b0071ab6c59284b714a54e56b/extra/Resources/tiff.icns --------------------------------------------------------------------------------