Home
last modified time | relevance | path

Searched refs:station_ids (Results 1 – 11 of 11) sorted by relevance

/dports/audio/pianod2/pianod2-329/src/mediaunits/pandora/
H A Dpandorashuffle.cpp75 …SetShuffleStations (Source *src, const std::vector<std::string> &station_ids, bool everything = fa… in SetShuffleStations() argument
77 shuffle_list = station_ids; in SetShuffleStations()
97 std::vector<std::string> station_ids; in pushMixToServers() local
100 station_ids.push_back (station.second->playlistId()); in pushMixToServers()
104 SetShuffleStations request (this, station_ids); in pushMixToServers()
113 std::vector<std::string> station_ids; in setMixAllOnServers() local
115 station_ids.push_back (station.second->playlistId()); in setMixAllOnServers()
118 SetShuffleStations request (this, station_ids, true); in setMixAllOnServers()
/dports/astro/oskar/OSKAR-2.8.0/oskar/beam_pattern/src/
H A Doskar_beam_pattern_accessors.c296 h->station_ids = (int*) realloc(h->station_ids, num_stations * sizeof(int)); in oskar_beam_pattern_set_station_ids()
297 for (i = 0; i < num_stations; ++i) h->station_ids[i] = ids[i]; in oskar_beam_pattern_set_station_ids()
345 h->station_ids = (int*) in oskar_beam_pattern_set_telescope_model()
346 realloc(h->station_ids, num_stations * sizeof(int)); in oskar_beam_pattern_set_telescope_model()
347 for (i = 0; i < num_stations; ++i) h->station_ids[i] = i; in oskar_beam_pattern_set_telescope_model()
H A Doskar_beam_pattern_free.c52 free(h->station_ids); in oskar_beam_pattern_free()
H A Doskar_beam_pattern_check_init.c481 h->station_ids[i_station]); in construct_filename()
570 h->station_ids[i_station]); in new_text_file()
H A Doskar_beam_pattern_run.c323 oskar_telescope_station_const(d->tel, h->station_ids[i]); in sim_chunks()
340 const int station_model_type = type_map[h->station_ids[i]]; in sim_chunks()
/dports/devel/py-gtfslib/gtfslib-1.0.0/gtfsplugins/
H A Dexport.py62 station_ids = set()
67 station_ids.add((stop.feed_id, stop.parent_station_id))
72 station_ids -= stop_ids
73 for feed_id, st_ids in group_pairs(station_ids, 1000):
80 stop_ids |= station_ids
/dports/devel/py-gtfslib/gtfslib-1.0.0/gtfslib/
H A Dconverter.py244 def import_stop(stop, stoptype, zone_ids, item_ids, station_ids=None): argument
271 if parent_id and station_ids and parent_id not in station_ids:
284 station_ids = set()
289 n_stations += import_stop(station, Stop.TYPE_STATION, zone_ids, station_ids)
291 n_stops += import_stop(stop, Stop.TYPE_STOP, zone_ids, stop_ids, station_ids)
302 if stop_id not in station_ids and stop_id not in stop_ids:
/dports/astro/oskar/OSKAR-2.8.0/oskar/apps/src/
H A Doskar_settings_to_beam_pattern.cpp89 const int* station_ids = s->to_int_list("station_ids", &size, status); in oskar_settings_to_beam_pattern() local
90 oskar_beam_pattern_set_station_ids(h, size, station_ids); in oskar_settings_to_beam_pattern()
/dports/astro/oskar/OSKAR-2.8.0/oskar/beam_pattern/
H A Dprivate_beam_pattern.h71 int num_active_stations, *station_ids; member
/dports/astro/oskar/OSKAR-2.8.0/apps/test/
H A Drun_test_beam_pattern.sh37 set_setting $app $ini $group/station_ids 0,1,2
/dports/science/py-obspy/obspy-1.2.2/obspy/clients/fdsn/mass_downloader/
H A Ddownload_helpers.py1067 station_ids = []
1069 station_ids.extend(helper.stations.keys())
1071 for station_id in station_ids: