Skip to content
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

Tile Service Support #11

Open
dhodcz2 opened this issue Apr 17, 2023 · 5 comments
Open

Tile Service Support #11

dhodcz2 opened this issue Apr 17, 2023 · 5 comments
Labels
enhancement New feature or request stay-open

Comments

@dhodcz2
Copy link
Collaborator

dhodcz2 commented Apr 17, 2023

If you have access to cached tiles of high-resolution orthorectified imagery for your region, you can request to have your region added to our supported region catalogue. This will enable Tile2Net to automatically download and process the tiles. To make a request, please follow these steps:

  1. Add a post to this thread with a link to the publicly available hosted tiles.
  2. Ensure that the tiles follow the same XYZ tiling convention currently supported by Tile2Net.
  3. Wait for us to review your request and add support for your region (depending on the number of requests).

Thank you for helping us expand the reach of Tile2Net!

@dhodcz2 dhodcz2 pinned this issue Apr 17, 2023
@dhodcz2 dhodcz2 added the enhancement New feature or request label Apr 17, 2023
@sylvan-sh
Copy link

Would greatly appreciate having Oregon added to the supported region catalogue. Imagery from 2017/2018 is currently publicly available, and splits between:

@lyoungblood14
Copy link

lyoungblood14 commented Apr 25, 2023

We in Munich would love to see our city in the supported region catalogue! 20cm resolution is available at https://opendata.muenchen.de/dataset/luftbild_opendata_20cm.

munich

@AlexNaviB
Copy link

It would be great having Denmark in the supported region catalogue. 10cm resolution orthophotography imagery is freely available here (requires registration): https://dataforsyningen.dk/data/981

@Russellexplore
Copy link

How can I put the above map of Munich and Denmark into tile2net to work?

@dhodcz2
Copy link
Collaborator Author

dhodcz2 commented Jun 20, 2023

Thank you for your interest in helping expand tile2net. Unfortunately I am backed up and will not be getting to adding new tile services for a while. If you are interested in helping you can make changes to source.py and create a pull request with your changes. If the Source follows the ArcGis specification it should be as simple as following this pattern:

class NewYork(ArcGis):
    server = 'https://orthos.its.ny.gov/arcgis/rest/services/wms/2020/MapServer'
    name = 'ny'
    keyword = 'New York City'

class Massachusetts(ArcGis):
    server = 'https://tiles.arcgis.com/tiles/hGdibHYSPO59RG1h/arcgis/rest/services/USGS_Orthos_2019/MapServer'
    name = 'ma'
    keyword = 'Massachusetts'

Otherwise you should implement a Source subclass that defines these attributes:

    name: str = None
    coverage: GeoSeries = None
    zoom: int = None
    extension = 'png'
    tiles: str = None
    tilesize: int = 256
    keyword: str

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request stay-open
Projects
None yet
Development

No branches or pull requests

6 participants