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

Towers #29

Open
milovanderlinden opened this issue Jul 19, 2013 · 1 comment
Open

Towers #29

milovanderlinden opened this issue Jul 19, 2013 · 1 comment

Comments

@milovanderlinden
Copy link

Hi,

In our imposm configuration for basemaps I am currently adding a layer for towers since they are such dominant landmarks that they can be used for orientation.

For this I have added the following definition that I will also use in basemaps. Can these be made available in defaultmapping.py?

class Towers(Points):
    fields = (
        ('man_made', String()),
        ('height', String()),
        ('tower:type', String()),
        ('tower:construction', String()),
        ('ref', String()),
        ('ele', String()),
        ('access', String()),
        ('source', String()),
    )

towers = Towers(
    name='towers',
    mapping = {
        'man_made': (
            'lighthouse',
            'mast',
            'tower',
            'water_tower',
        )
    ),
})
@milovanderlinden
Copy link
Author

Plus one minor tweak:

towers = Towers(
    name='towers',
    mapping = {
        'man_made': (
            'lighthouse',
            'mast',
            'tower',
            'water_tower',
            'communications_tower',
        )
    ),
})

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant