search for: map_id

Displaying 4 results from an estimated 4 matches for "map_id".

Did you mean: map_uid
2012 Aug 04
1
Getting unknown error trying to plot spatial data
...ortify(sf_map) *Using OBJECTID to define regions.* > pds$OBJECTID <- as.integer(pds$OBJECTID) *Error in `$<-.data.frame`(`*tmp*`, "OBJECTID", value = integer(0)) : replacement has 0 rows, data has 16249* > > > ## Make the map > > p1 <- ggplot(my_data, aes(map_id = zip)) > p1 <- p1 + geom_map(aes(fill=vol, map_id = zip), map = pds) > p1 <- p1 + expand_limits(x = pds$lon, y = pds$lat) + coord_equal() > p1 + xlab("Basic Map with Default Elements") *Error in unit(x, default.units) : 'x' and 'units' must have length >...
2010 Mar 30
0
How to deal with array of checkbox values in Ruby 1.9.1?
....1 strings are no longer enumerable and string.each is undefined. This causes a problem when parsing values for an array of generated checkboxes since the field value, when submitted, becomes an array of strings. For example: <% for map in Map.find(:all) %> <%= check_box_tag "listing[map_ids][]", map.id, @listing.maps.include? (map) %> <%= map.title %> <% end %> This will result in an error, undefined method `each'' for "1":String, in process_parameter_filter because map_ids is being passed as "map_ids"=>["1","2"]...
2009 Dec 13
0
r65 committed - Use the GeoCommons addOverlay method
...F1.Maker.finder_host=''http://localhost:4001''; - F1.Maker.core_host=''http://localhost:4000''; - this.loaded[this.api] = false; // Loading will take a little bit. - - url = "1"; - new F1.Maker.Map({map_id:url, dom_id:this.element.id, - flashvars: {"map_id":url}, - onload: function(map){ - me.maps[me.api] = map; - // f1_swfobject21.getObjectById(this.element.id); + F1.Maker.core_host = f1_core_host; +...
2018 Mar 19
1
Labelling a fortified GADM map plotted with ggplot and geom_map
...<- aggregate(.~Province, data = kids_province_data, sum) # join the data to the map names(tract)[6] <- "region" names(kids_province_sums)[1] <- "region" by_province <- left_join(tract, kids_province_sums) # create the data map kids_map <- ggplot(by_province, aes(map_id = region)) + #plots the map in by_province separating by region geom_map(aes(fill = Number), #generates aestheticsa for the plot map = tract, #takes the data from tract...