Hi Douglas,
I'd suggest to use the Offramp OSM ("Xapi-like") interface to download
and extract just the data you need.
If the input data is valid & good (??) I'd suspect any trouble loading into
QGIS would have to do with the tag-matching filters in the QGIS osm plugin.
I've seen several approaches to tagging school grounds
boundaries/building polygons/single text labeled nodes, some at the
edge of the playing fields, some at approximate property boundaries.
So I wouldn't be surprised if a brittle rule based
filter has a little trouble.
example of a full bounding box extract, including metadata:
https://trac.osgeo.org/osgeo/browser/livedvd/gisvm/trunk/bin/install_osm.sh#L115
(sorry for the mess in the script)
Overpass instructions:
http://www.overpass-api.de/
see also
http://wiki.openstreetmap.org/wiki/OSM3S/install
unix (or msys) shell commands:
CITY="Portland_OR"
BBOX="-122.8,45.4,-122.5,45.6"
XAPI_URL="
http://www.overpass-api.de/api/xapi?"
XAPI_EXTRA="[@meta]"
wget --progress=dot:mega -O "$CITY.osm" \
"${XAPI_URL}*[bbox=$BBOX]$XAPI_EXTRA"
add additional "[tag=label]" to the URL to restrict to the desired school
tags-only. That should get you a solid + specific extract to work with, and
JOSM should be happy with it.
If QGIS still doesn't like that let me know, I can probably load it in via GRASS
GIS's osm import script and convert to a format QGIS will be happy with.
I suspect shapefile format will not be ideal since it can't deal with
the multiple
polygon and point data types in a single layer.
regards,
Hamish
> --
> You received this message because you are subscribed to the Google Groups
> "nzopengis" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to
nzopengis+...@googlegroups.com.
> To post to this group, send email to
nzop...@googlegroups.com.
> Visit this group at
http://groups.google.com/group/nzopengis.
> For more options, visit
https://groups.google.com/groups/opt_out.
>